diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json deleted file mode 100644 index e747974..0000000 --- a/.config/dotnet-tools.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "version": 1, - "isRoot": true, - "tools": { - "csharpier": { - "version": "1.3.0", - "commands": [ - "csharpier" - ], - "rollForward": false - }, - "husky": { - "version": "0.9.1", - "commands": [ - "husky" - ], - "rollForward": false - }, - "dotnet-outdated-tool": { - "version": "4.8.1", - "commands": [ - "dotnet-outdated" - ], - "rollForward": false - } - } -} \ No newline at end of file diff --git a/.editorconfig b/.editorconfig deleted file mode 100644 index 8f8789e..0000000 --- a/.editorconfig +++ /dev/null @@ -1,237 +0,0 @@ -# https://editorconfig.org - -# https://learn.microsoft.com/en-us/dotnet/csharp/fundamentals/coding-style/identifier-names -# https://learn.microsoft.com/en-us/dotnet/csharp/fundamentals/coding-style/coding-conventions -# https://learn.microsoft.com/en-us/dotnet/fundamentals/code-analysis/overview - -# https://github.com/dotnet/runtime/blob/main/docs/coding-guidelines/coding-style.md -# https://github.com/dotnet/runtime/blob/main/.editorconfig - -# https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-format -# dotnet format style --verify-no-changes --severity=info --verbosity=detailed - -# Root config -root = true - -# Defaults -[*] -charset = utf-8 -end_of_line = crlf -indent_size = 4 -indent_style = space -insert_final_newline = true -trim_trailing_whitespace = true - -# Markdown files -[*.md] -end_of_line = crlf -trim_trailing_whitespace = false - -# Xml files -[*.{xml,csproj,props,targets}] -end_of_line = crlf -indent_size = 2 - -# Yaml files -[*.{yml,yaml}] -end_of_line = crlf -indent_size = 2 - -# Workflow YAML is LF: Dependabot and Actions rewrite it with LF, so declaring LF keeps it consistent instead of -# mixed. git still leaves endings alone (`* -text`); this and CI (editorconfig-checker) enforce it. Other YAML is CRLF. -[.github/workflows/*.{yml,yaml}] -end_of_line = lf - -# JSON and JSONC files -[*.{json,jsonc}] -end_of_line = crlf - -# Linux scripts -[*.sh] -end_of_line = lf - -# Husky git hook is an extensionless shell script - LF like other scripts (matches the .gitattributes pin) -[.husky/pre-commit] -end_of_line = lf - -# Dockerfiles - CRLF breaks RUN heredocs and line continuations -[{Dockerfile,*.Dockerfile}] -end_of_line = lf - -# Windows scripts -[*.{cmd,bat,ps1}] -end_of_line = crlf - -# Downloaded language data - preserve the source bytes exactly; enforce no editor normalization -[LanguageData/**] -charset = unset -end_of_line = unset -insert_final_newline = false -trim_trailing_whitespace = false - -# --- .NET-only below: C# and ReSharper style. Everything above is line-ending governance. --- - -# C# files -[*.cs] -end_of_line = crlf -# Suppressions follow CODESTYLE.md "Analyzer Diagnostics and Suppressions": prefer a -# [SuppressMessage] attribute or the owning project's .editorconfig, and relax a rule -# repo-wide here only when it applies to every project, never as a batch. -dotnet_diagnostic.IDE0055.severity = none -dotnet_analyzer_diagnostic.severity = suggestion -csharp_indent_block_contents = true -csharp_indent_braces = false -csharp_indent_case_contents = true -csharp_indent_case_contents_when_block = false -csharp_indent_labels = one_less_than_current -csharp_indent_switch_labels = true -csharp_new_line_before_catch = true -csharp_new_line_before_else = true -csharp_new_line_before_finally = true -csharp_new_line_before_members_in_anonymous_types = true -csharp_new_line_before_members_in_object_initializers = true -csharp_new_line_before_open_brace = all -csharp_new_line_between_query_expression_clauses = true -csharp_prefer_braces = true -csharp_prefer_simple_default_expression = true -csharp_prefer_simple_using_statement = true -csharp_prefer_static_anonymous_function = true -csharp_prefer_static_local_function = true -csharp_prefer_system_threading_lock = true -csharp_preferred_modifier_order = public,private,protected,internal,file,static,abstract,sealed,virtual,override,readonly,unsafe,volatile,async,extern,new,partial:warning -csharp_preserve_single_line_blocks = true -csharp_preserve_single_line_statements = false -csharp_space_after_cast = false -csharp_space_after_colon_in_inheritance_clause = true -csharp_space_after_comma = true -csharp_space_after_dot = false -csharp_space_after_keywords_in_control_flow_statements = true -csharp_space_after_semicolon_in_for_statement = true -csharp_space_around_binary_operators = before_and_after -csharp_space_around_declaration_statements = false -csharp_space_before_colon_in_inheritance_clause = true -csharp_space_before_comma = false -csharp_space_before_dot = false -csharp_space_before_open_square_brackets = false -csharp_space_before_semicolon_in_for_statement = false -csharp_space_between_empty_square_brackets = false -csharp_space_between_method_call_empty_parameter_list_parentheses = false -csharp_space_between_method_call_name_and_opening_parenthesis = false -csharp_space_between_method_call_parameter_list_parentheses = false -csharp_space_between_method_declaration_empty_parameter_list_parentheses = false -csharp_space_between_method_declaration_name_and_open_parenthesis = false -csharp_space_between_method_declaration_parameter_list_parentheses = false -csharp_space_between_parentheses = false -csharp_space_between_square_brackets = false -csharp_style_allow_blank_line_after_colon_in_constructor_initializer_experimental = true -csharp_style_allow_blank_line_after_token_in_arrow_expression_clause_experimental = true -csharp_style_allow_blank_line_after_token_in_conditional_expression_experimental = true -csharp_style_allow_blank_lines_between_consecutive_braces_experimental = true -csharp_style_allow_embedded_statements_on_same_line_experimental = true -csharp_style_conditional_delegate_call = true -csharp_style_deconstructed_variable_declaration = true -csharp_style_expression_bodied_accessors = true -csharp_style_expression_bodied_constructors = true -csharp_style_expression_bodied_indexers = true -csharp_style_expression_bodied_lambdas = true -csharp_style_expression_bodied_local_functions = true -csharp_style_expression_bodied_methods = true -csharp_style_expression_bodied_operators = true -csharp_style_expression_bodied_properties = true -csharp_style_implicit_object_creation_when_type_is_apparent = true -csharp_style_inlined_variable_declaration = true -csharp_style_namespace_declarations = file_scoped -csharp_style_pattern_matching_over_as_with_null_check = true -csharp_style_pattern_matching_over_is_with_cast_check = true -csharp_style_prefer_extended_property_pattern = true -csharp_style_prefer_implicitly_typed_lambda_expression = true -csharp_style_prefer_index_operator = true -csharp_style_prefer_local_over_anonymous_function = true -csharp_style_prefer_method_group_conversion = true -csharp_style_prefer_not_pattern = true -csharp_style_prefer_null_check_over_type_check = true -csharp_style_prefer_pattern_matching = true -csharp_style_prefer_primary_constructors = true -csharp_style_prefer_range_operator = true -csharp_style_prefer_readonly_struct = true -csharp_style_prefer_readonly_struct_member = true -csharp_style_prefer_switch_expression = true -csharp_style_prefer_top_level_statements = true -csharp_style_prefer_tuple_swap = true -csharp_style_prefer_unbound_generic_type_in_nameof = true -csharp_style_prefer_utf8_string_literals = true -csharp_style_throw_expression = true -csharp_style_unused_value_assignment_preference = discard_variable -csharp_style_unused_value_expression_statement_preference = discard_variable -csharp_style_var_elsewhere = false -csharp_style_var_for_built_in_types = false -csharp_style_var_when_type_is_apparent = false -csharp_using_directive_placement = outside_namespace -dotnet_code_quality_unused_parameters = all -dotnet_hide_advanced_members = false -dotnet_member_insertion_location = with_other_members_of_the_same_kind -dotnet_naming_rule.camel_case_for_private_internal_fields.severity = suggestion -dotnet_naming_rule.camel_case_for_private_internal_fields.style = camel_case_underscore_style -dotnet_naming_rule.camel_case_for_private_internal_fields.symbols = private_internal_fields -dotnet_naming_rule.constant_fields_should_be_pascal_case.severity = suggestion -dotnet_naming_rule.constant_fields_should_be_pascal_case.style = pascal_case_style -dotnet_naming_rule.constant_fields_should_be_pascal_case.symbols = constant_fields -dotnet_naming_rule.static_fields_should_have_prefix.severity = suggestion -dotnet_naming_rule.static_fields_should_have_prefix.style = static_prefix_style -dotnet_naming_rule.static_fields_should_have_prefix.symbols = static_fields -dotnet_naming_style.camel_case_underscore_style.capitalization = camel_case -dotnet_naming_style.camel_case_underscore_style.required_prefix = _ -dotnet_naming_style.pascal_case_style.capitalization = pascal_case -dotnet_naming_style.static_prefix_style.capitalization = camel_case -dotnet_naming_style.static_prefix_style.required_prefix = s_ -dotnet_naming_symbols.constant_fields.applicable_kinds = field -dotnet_naming_symbols.constant_fields.required_modifiers = const -dotnet_naming_symbols.private_internal_fields.applicable_accessibilities = private, internal -dotnet_naming_symbols.private_internal_fields.applicable_kinds = field -dotnet_naming_symbols.static_fields.applicable_accessibilities = private, internal, private_protected -dotnet_naming_symbols.static_fields.applicable_kinds = field -dotnet_naming_symbols.static_fields.required_modifiers = static -dotnet_prefer_system_hash_code = true -dotnet_property_generation_behavior = prefer_throwing_properties -dotnet_remove_unnecessary_suppression_exclusions = none -dotnet_search_reference_assemblies = true -dotnet_separate_import_directive_groups = false -dotnet_sort_system_directives_first = true -dotnet_style_allow_multiple_blank_lines_experimental = true -dotnet_style_allow_statement_immediately_after_block_experimental = true -dotnet_style_coalesce_expression = true -dotnet_style_collection_initializer = true -dotnet_style_explicit_tuple_names = true -dotnet_style_namespace_match_folder = true -dotnet_style_null_propagation = true -dotnet_style_object_initializer = true -dotnet_style_operator_placement_when_wrapping = beginning_of_line -dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity -dotnet_style_parentheses_in_other_binary_operators = always_for_clarity -dotnet_style_parentheses_in_other_operators = never_if_unnecessary -dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity -dotnet_style_predefined_type_for_locals_parameters_members = true -dotnet_style_predefined_type_for_member_access = true -dotnet_style_prefer_auto_properties = true -dotnet_style_prefer_collection_expression = when_types_loosely_match -dotnet_style_prefer_compound_assignment = true -dotnet_style_prefer_conditional_expression_over_assignment = true -dotnet_style_prefer_conditional_expression_over_return = true -dotnet_style_prefer_foreach_explicit_cast_in_source = when_strongly_typed -dotnet_style_prefer_inferred_anonymous_type_member_names = true -dotnet_style_prefer_inferred_tuple_names = true -dotnet_style_prefer_is_null_check_over_reference_equality_method = true -dotnet_style_prefer_simplified_boolean_expressions = true -dotnet_style_prefer_simplified_interpolation = true -dotnet_style_qualification_for_event = false -dotnet_style_qualification_for_field = false -dotnet_style_qualification_for_method = false -dotnet_style_qualification_for_property = false -dotnet_style_readonly_field = true -dotnet_style_require_accessibility_modifiers = for_non_interface_members - -# ReSharper settings -resharper_csharp_trailing_comma_in_multiline_lists = true -resharper_csharp_var_for_built_in_types = false -resharper_csharp_var_when_type_is_apparent = false -resharper_csharp_var_when_type_is_not_apparent = false diff --git a/.editorconfig-checker.json b/.editorconfig-checker.json deleted file mode 100644 index e019960..0000000 --- a/.editorconfig-checker.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "Disable": { - "Charset": true, - "Indentation": true, - "IndentSize": true, - "TrimTrailingWhitespace": true, - "InsertFinalNewline": true, - "MaxLineLength": true - } -} diff --git a/.gitattributes b/.gitattributes deleted file mode 100644 index 8c74438..0000000 --- a/.gitattributes +++ /dev/null @@ -1,22 +0,0 @@ -# Default: do not normalize line endings (`* -text`); .editorconfig end_of_line rules guide what the editor writes. -# The exception pins below are git's own enforcement - they force LF for execution-sensitive classes regardless of editor. -# git config --global core.autocrlf false -# git add --renormalize . -# git ls-files --eol -* -text - -# Exception: scripts must stay LF regardless of the `* -text` default - a CRLF shebang breaks execution. `.editorconfig` -# covers `*.sh`, but extensionless executables (s6 service scripts, hooks) match no extension rule, so pin them here so -# git enforces LF on checkout and `--renormalize`. A repo shipping extensionless scripts adds an explicit path rule, -# e.g. for s6-overlay init: `Docker/s6-overlay/** text eol=lf`. -*.sh text eol=lf - -# Dockerfiles must be LF - a CRLF breaks RUN heredocs and line continuations. -Dockerfile text eol=lf -*.Dockerfile text eol=lf - -# Extensionless executables must stay LF - a CRLF shebang breaks execution. The Husky.Net git hook matches no extension rule. -.husky/pre-commit text eol=lf - -# LanguageData/ holds downloaded source data the parser reads byte-for-byte; never normalize it. The `* -text` default -# above preserves it exactly as downloaded - do NOT add a `text`/`eol=` rule here. diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md deleted file mode 100644 index 21f110c..0000000 --- a/.github/copilot-instructions.md +++ /dev/null @@ -1,154 +0,0 @@ -# Copilot Instructions - -Repository conventions for GitHub Copilot (and any other AI agent reading this file). - -The **canonical guide is [AGENTS.md](../AGENTS.md)** at the repo root - read it first, including the [PR Review Etiquette](../AGENTS.md#pr-review-etiquette) review-loop contract this file's runbook implements. This file is intentionally narrow: commit/PR-title conventions (summarized inline so VS Code's commit-message and PR-title generators have them) plus the GitHub Copilot Review Runbook. - -For code-style rules, see [`CODESTYLE.md`](../CODESTYLE.md) at the repo root - one guide with a General section and the .NET section. - -Do not duplicate language-specific rules here. **Project-specific conventions and API/behavioral contracts also belong in [AGENTS.md](../AGENTS.md), not here** - this file is intentionally limited to the inline commit/PR-title summary and the GitHub Copilot Review Runbook. Non-Copilot agents (Claude Code, Codex, Cursor, ...) are not directed to this file and don't read it by default, so any rule a reviewer must honor has to live in `AGENTS.md` to be provider-independent. - -## Commit Messages and Pull Request Titles - -Summarized for VS Code's generators; the full rules, rationale, and examples are in [AGENTS.md "Pull Request Title and Commit Message Conventions"](../AGENTS.md#pull-request-title-and-commit-message-conventions). - -- Imperative subject, <= 72 characters, no trailing period; optional blank-line-separated body for the non-obvious *why*. -- US English, title case with lowercase short bind words; no vague titles, no `Co-Authored-By:` unless asked, no release-bump magnitude (NBGV handles versioning). Dependabot's `Bump X from Y to Z` titles are fine. -- develop PRs squash-merge (`gh pr merge --squash`), main PRs merge-commit (`--merge`); a mismatched flag is rejected by branch protection. - -## GitHub Copilot Review Runbook - -> This runbook implements the [AGENTS.md "PR Review Etiquette"](../AGENTS.md#pr-review-etiquette) review-loop contract for GitHub Copilot. Without it in-repo, an agent has no pointer to the reliable Copilot mechanics and falls back to known-broken paths (the no-op `POST /requested_reviewers`, the wrong bot-login filter). In the API snippets below, `` is the PR number. - -Use this section for provider-specific mechanics. The expected review loop *contract* (request review on every push, verify head-SHA coverage, triage findings, reply + resolve, escalate when stuck) is defined in [AGENTS.md -> PR Review Etiquette](../AGENTS.md#pr-review-etiquette). This section only describes how to make GitHub Copilot reliably execute it. - -### Triggering and Polling - -Auto-review on push is configured (via the branch ruleset's `copilot_code_review` rule with `review_on_push: true`) but fires inconsistently in practice - treat it as best-effort, not guaranteed. After every push, **re-request a review programmatically** via the GraphQL `requestReviews` mutation, passing the Copilot reviewer's bot node id in `botIds`. This drives the loop end-to-end without a UI hand-off. - -**A review with no inline comments is still a completed review - not a failure, and not a reason to ask the maintainer to re-trigger.** Copilot very often posts a single formal review (GraphQL `state: COMMENTED`) whose body ends with "...reviewed N of N changed files ... and generated no comments" and adds **zero** inline threads. That review carries the head `commit.oid` and fully satisfies the loop - it is the clean-pass success case. Never read "no inline comments" as "the review didn't run," and never re-request or escalate to the maintainer because comments are absent. - -**Round 1 is normally auto-seeded - poll for it before trying to self-trigger.** Auto-review-on-open supplies the first review with no `botIds` call needed, but it can lag one to three minutes. After opening a PR (or the first push), **poll** for a Copilot review on the head SHA (see [Verify Review Covered Current Head](#verify-review-covered-current-head)) before concluding none ran. The `requestReviews` mutation below is for **re-requesting on later pushes** (a new head SHA); by then a prior review exists, so its bot node id is readable. A missing bot node id on round 1 therefore means "the auto-review has not landed yet - wait and poll," **not** "ask the maintainer to kick it off." - -> **The reviewer login differs by API.** In **GraphQL** (`gh api graphql` and `gh pr view --json reviews`, which is GraphQL-backed) the `Bot.login` is `copilot-pull-request-reviewer` - **no `[bot]` suffix**. In the **REST** API (`gh api repos/.../issues|pulls/...`) the same account's `user.login` is `copilot-pull-request-reviewer[bot]` - **with** the suffix. Each query below uses the correct form for its API; match the API, not a single spelling, when adapting them. - -```sh -# 1. PR node id + the Copilot reviewer's bot node id (read from any existing -# Copilot review; the reviewer login is `copilot-pull-request-reviewer`). -PR_NODE=$(gh pr view --json id --jq '.id') -BOT_ID=$(gh api graphql -f query=' -{ - repository(owner: "ptr727", name: "LanguageTags") { - pullRequest(number: ) { - reviews(first: 50) { nodes { author { __typename login ... on Bot { id } } } } - } - } -}' --jq '[.data.repository.pullRequest.reviews.nodes[] - | select(.author.login == "copilot-pull-request-reviewer") - | .author.id] | first') - -# 2. Re-request a Copilot review on the current head. -gh api graphql -f query=' -mutation($pr: ID!, $bot: ID!) { - requestReviews(input: { pullRequestId: $pr, botIds: [$bot], union: true }) { - pullRequest { id } - } -}' -F pr="$PR_NODE" -F bot="$BOT_ID" -``` - -The bot node id is read from an existing Copilot **formal** review (`pullRequest.reviews`), so step 1 needs at least one prior formal review on the PR - the auto-review-on-open normally supplies the first one (it may have **no inline comments**; that still counts, and its bot node id is still readable). Poll for it (give auto-review-on-open a few minutes) before deciding it is missing. If Copilot posted **only an issue comment** and no formal review, the head is covered but `reviews` yields no bot node id - read the id from the Copilot issue comment's author by querying the PR's issue comments in GraphQL (`pullRequest.comments` -> author `... on Bot { id }`), or request `Copilot` once through the GitHub PR UI to produce a formal review. Manual UI seeding is the fallback specifically when no formal review exists to read the id from; then use the mutation for every subsequent re-request. - -**Do NOT post `@Copilot review` as a PR comment.** That comment triggers the Copilot *coding agent* (`copilot-swe-agent[bot]`), which makes code changes rather than posting a review. - -Known non-working request paths (don't rely on them - use the `requestReviews` mutation above instead): - -- `POST /requested_reviewers` with `reviewers=[Copilot]` can return 200 but no-op. -- `copilot-pull-request-reviewer` as a requested reviewer slug returns 422. - -### Verify Review Covered Current Head - -Before merging, confirm Copilot reviewed the current PR head SHA. Copilot may respond as either a formal review (carries an exact commit SHA) or an issue comment (no SHA - use the most recent Copilot comment for manual confirmation). Check both. - -```sh -PR_HEAD=$(gh pr view --json headRefOid --jq '.headRefOid') - -# 1. Formal review - exact SHA match. -gh pr view --json reviews --jq \ - '.reviews[] | select(.author.login=="copilot-pull-request-reviewer") | .commit.oid' \ - | grep -q "$PR_HEAD" && echo "covered via formal review" - -# 2. Issue comment - show the most recent Copilot comment for manual -# confirmation. This is the REST API, so the login carries the `[bot]` suffix. -gh api repos/ptr727/LanguageTags/issues//comments --jq \ - '[.[] | select(.user.login=="copilot-pull-request-reviewer[bot]")] | last | {created_at, body: .body[:200]}' -``` - -Coverage is confirmed when (1) exits 0 - **a formal review with no inline comments still satisfies path (1)**, because coverage is about the head SHA, not the comment count. For issue comments (path 2), body content is the only reliable signal - `created_at` is not: `git log -1 --format=%cI` is the **commit** timestamp, not the push timestamp, so amended or rebased commits can have an earlier timestamp and an older Copilot comment could satisfy a time check even though Copilot never saw the current head. Treat path (2) as confirmed only when the comment body explicitly refers to the current changes. - -### Bounded Retry Workflow - -This path is only for a **genuinely missing** review - no Copilot review (formal *or* issue comment) covers the current head SHA after polling. A review that covered the head but produced no comments is a clean pass, not a missing review; do not enter this retry path for it. - -If a review did not run on the current head, retry: - -1. Wait briefly and check head-SHA coverage (see above). -1. Re-request the review via the `requestReviews` mutation (see "Triggering and Polling"); fall back to the GitHub PR UI only if the mutation no-ops. -1. Retry up to two more times (three total). -1. If still missing, mark review as blocked and escalate to the user/maintainer with what was attempted. - -### Reply and Thread Resolution Workflow - -List unresolved threads. Use `first: 100` with cursor-based pagination; if `hasNextPage` is true, re-run with `after: ""` to retrieve the next page: - -```sh -gh api graphql -f query=' -{ - repository(owner: "ptr727", name: "LanguageTags") { - pullRequest(number: ) { - reviewThreads(first: 100) { - nodes { - id isResolved path - comments(first: 1) { nodes { author { login } body } } - } - pageInfo { hasNextPage endCursor } - } - } - } -}' | jq ' - .data.repository.pullRequest.reviewThreads | - (.pageInfo | "hasNextPage=\(.hasNextPage) endCursor=\(.endCursor)"), - (.nodes[] | select(.isResolved == false)) -' -``` - -Reply on a thread, then resolve it: - -```sh -gh api graphql -f query=' -mutation($threadId: ID!, $body: String!) { - addPullRequestReviewThreadReply(input: { pullRequestReviewThreadId: $threadId, body: $body }) { - comment { id } - } -}' -F threadId="PRRT_..." -F body="Fixed in : ." - -gh api graphql -f query=' -mutation($threadId: ID!) { - resolveReviewThread(input: { threadId: $threadId }) { thread { id isResolved } } -}' -F threadId="PRRT_..." -``` - -Issue-level Copilot comments (those in `issues//comments`) have no resolution action - GitHub provides no API or UI to resolve them. Reply if the finding warrants it; no resolution step is needed or possible. - -Reply-body conventions: - -- Accepted bug/style fix: include fixing commit SHA and a one-line summary. -- Declined style comment: cite the rule (AGENTS.md or the CODESTYLE.md .NET section) and the existing-tree precedent. -- Declined architecture proposal: one-sentence rationale. - -After the final push, sweep-resolve stale older threads for removed code paths. - -## When in Doubt - -Read [AGENTS.md](../AGENTS.md) for this repo's conventions. For code-style rules, [`CODESTYLE.md`](../CODESTYLE.md) (its General and .NET sections) is authoritative. Don't restate any of these files' rules in commit bodies or PR descriptions - keep those focused on the change itself. - -**In a derived repo:** if you find a discrepancy that should be fixed in the template itself (this file or AGENTS.md is out of date, a rule is missing, something bit this repo and would bite the next), open an issue upstream in [`ptr727/ProjectTemplate`](https://github.com/ptr727/ProjectTemplate) rather than only fixing it locally - see the template's [AGENTS.md "Staying in Sync and Reporting Drift Upstream"](https://github.com/ptr727/ProjectTemplate/blob/main/AGENTS.md#staying-in-sync-and-reporting-drift-upstream). diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 77f2185..0000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,57 +0,0 @@ -# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file -# -# Every ecosystem is listed twice, target-branch main and develop, so Dependabot opens parallel PRs that keep -# both branches current independently. main is listed because consumers (NuGet.org, GitHub releases) pull from -# it directly, and the develop -> main release gap can be long, so main must not wait for a promotion to get its -# dependency bumps. The codegen workflow takes the same dual-target shape for the same reason. -# -# The merge-bot (.github/workflows/merge-bot-pull-request.yml) picks the merge method per base (squash on -# develop, merge on main) and auto-merges both. develop is forward-only: no main -> develop back-merges, each -# branch absorbs its own bot PRs. Dependabot opens CVE security PRs against the default branch (main) whatever -# the target-branch, and the merge-bot handles them in the same path. -version: 2 -updates: - - # ----- nuget ----- - - - package-ecosystem: "nuget" - target-branch: "main" - directory: "/" - schedule: - interval: "daily" - groups: - nuget-deps: - patterns: - - "*" - - - package-ecosystem: "nuget" - target-branch: "develop" - directory: "/" - schedule: - interval: "daily" - groups: - nuget-deps: - patterns: - - "*" - - # ----- github-actions ----- - - - package-ecosystem: "github-actions" - target-branch: "main" - directory: "/" - schedule: - interval: "daily" - groups: - actions-deps: - patterns: - - "*" - - - package-ecosystem: "github-actions" - target-branch: "develop" - directory: "/" - schedule: - interval: "daily" - groups: - actions-deps: - patterns: - - "*" diff --git a/.github/workflows/build-release-task.yml b/.github/workflows/build-release-task.yml deleted file mode 100644 index b7609b5..0000000 --- a/.github/workflows/build-release-task.yml +++ /dev/null @@ -1,238 +0,0 @@ -name: Build project release task - -# The single build/version/release task, called by publish-release (real publish) and test-pull-request -# (smoke). NBGV runs once in get-version and threads the version to every consumer. github.ref_name -# decides everything: main builds Release and a stable version, every other branch Debug and a prerelease. -# On a real publish the build job pushes to NuGet via OIDC trusted publishing (no API key) and hands the -# package to the github-release job. Permissions are granted by the caller (this task declares none) so -# the smoke caller, which grants only read, does not startup-fail on a write-scoped job. - -env: - PROJECT_FILE: ./LanguageTags/LanguageTags.csproj - -on: - workflow_call: - inputs: - # Create the GitHub release and push to NuGet. Off for smoke. - publish: - required: false - type: boolean - default: false - # Build and test only, never publish or upload. Forces every publish step off regardless of publish. - smoke: - required: false - type: boolean - default: false - secrets: - # nuget.org profile name for OIDC trusted publishing. Not needed for smoke. - NUGET_USERNAME: - required: false - -jobs: - - get-version: - name: Get version information job - runs-on: ubuntu-latest - outputs: - SemVer2: ${{ steps.nbgv.outputs.SemVer2 }} - AssemblyVersion: ${{ steps.nbgv.outputs.AssemblyVersion }} - AssemblyFileVersion: ${{ steps.nbgv.outputs.AssemblyFileVersion }} - AssemblyInformationalVersion: ${{ steps.nbgv.outputs.AssemblyInformationalVersion }} - GitCommitId: ${{ steps.nbgv.outputs.GitCommitId }} - - steps: - - - name: Setup .NET SDK step - uses: actions/setup-dotnet@26b0ec14cb23fa6904739307f278c14f94c95bf1 # v5.4.0 - with: - dotnet-version: 10.x - - # Default checkout: the triggering commit on its real branch. NBGV classifies from GITHUB_REF - # directly. fetch-depth: 0 gives NBGV the full history for the version height. - - name: Checkout code step - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 - with: - fetch-depth: 0 - - # Float nbgv on `master`, not SHA-pinned: its tag stream lags `master`, so Dependabot - # tag-tracking would only propose downgrades to stale tags (WORKFLOW.md D9.1). - - name: Run Nerdbank.GitVersioning tool step - id: nbgv - uses: dotnet/nbgv@master - - # Entry gate: assert branch and version classification agree before any build, so a misclassification - # fails fast. main must be a public release (no prerelease '-'), and every other branch must carry one. - validate-release: - name: Validate release version job - needs: [get-version] - runs-on: ubuntu-latest - steps: - - name: Validate branch and version consistency step - env: - SEMVER2: ${{ needs.get-version.outputs.SemVer2 }} - REF_NAME: ${{ github.ref_name }} - SMOKE: ${{ inputs.smoke }} - run: | - set -euo pipefail - # Smoke never publishes, so the publish-time branch/version gate does not apply. Smoke also runs - # on branches whose classification will not match an eventual publish target (a feature-branch - # smoke reads prerelease and would trip the main arm of a main-base PR), so skip it on smoke. - if [[ "$SMOKE" == "true" ]]; then - echo "Smoke build; skipping release version validation." - exit 0 - fi - # Strip +buildmetadata. Only a '-' in the core/prerelease segment marks a prerelease. - CORE_AND_PRE="${SEMVER2%%+*}" - if [[ "$REF_NAME" == "main" ]]; then - if [[ "$CORE_AND_PRE" == *-* ]]; then - echo "::error::Public (main) version '$SEMVER2' carries a prerelease suffix; refusing to publish." - exit 1 - fi - elif [[ "$CORE_AND_PRE" != *-* ]]; then - echo "::error::Prerelease ($REF_NAME) version '$SEMVER2' has no prerelease suffix; refusing to publish." - exit 1 - fi - - build: - name: Build NuGet library job - needs: [get-version, validate-release] - runs-on: ubuntu-latest - - steps: - - - name: Setup .NET SDK step - uses: actions/setup-dotnet@26b0ec14cb23fa6904739307f278c14f94c95bf1 # v5.4.0 - with: - dotnet-version: 10.x - - # Pin to the versioned commit so the package and the release tag match even if the branch advances - # mid-run. This is a compile checkout only, NBGV already ran in get-version. - - name: Checkout code step - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 - with: - ref: ${{ needs.get-version.outputs.GitCommitId }} - - # Build the library and its packages into publish/ (both output paths) so they archive together. - - name: Build library step - run: | - set -euo pipefail - dotnet build ${{ env.PROJECT_FILE }} \ - --configuration ${{ github.ref_name == 'main' && 'Release' || 'Debug' }} \ - -property:OutputPath=${{ runner.temp }}/publish/ \ - -property:PackageOutputPath=${{ runner.temp }}/publish/ \ - -property:Version=${{ needs.get-version.outputs.SemVer2 }} \ - -property:FileVersion=${{ needs.get-version.outputs.AssemblyFileVersion }} \ - -property:AssemblyVersion=${{ needs.get-version.outputs.AssemblyVersion }} \ - -property:InformationalVersion=${{ needs.get-version.outputs.AssemblyInformationalVersion }} \ - -property:PackageVersion=${{ needs.get-version.outputs.SemVer2 }} - - # OIDC trusted publishing: trade the GitHub OIDC token for a short-lived (1-hour) NuGet key, so there - # is no stored API key. Needs id-token: write from the caller. - - name: NuGet login step - if: ${{ inputs.publish && !inputs.smoke }} - id: nuget-login - uses: NuGet/login@8d196754b4036150537f80ac539e15c2f1028841 # v1.2.0 - with: - user: ${{ secrets.NUGET_USERNAME }} - - # Pushing the .nupkg also pushes the co-located .snupkg to nuget.org's symbol server (no --no-symbols). - - name: Push to NuGet.org step - if: ${{ inputs.publish && !inputs.smoke }} - run: | - set -euo pipefail - dotnet nuget push ${{ runner.temp }}/publish/*.nupkg \ - --source https://api.nuget.org/v3/index.json \ - --api-key ${{ steps.nuget-login.outputs.NUGET_API_KEY }} \ - --skip-duplicate - - # Bundle the build output and packages into a flat LanguageTags.7z (cd in so the paths are relative). - - name: Compress release asset step - if: ${{ inputs.publish && !inputs.smoke }} - run: | - set -euo pipefail - if ! command -v 7z >/dev/null 2>&1; then - sudo apt-get update - sudo apt-get install -y --no-install-recommends p7zip-full - fi - cd ${{ runner.temp }}/publish - 7z a -t7z ${{ runner.temp }}/LanguageTags.7z ./* - - # Hand the archive to the github-release job. Plain name (single target). Consumed within this run, - # so retention-days: 1 is the failure-path backstop. - - name: Upload release asset step - if: ${{ inputs.publish && !inputs.smoke }} - uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 - with: - name: release-asset - path: ${{ runner.temp }}/LanguageTags.7z - retention-days: 1 - - github-release: - name: Publish GitHub release job - if: ${{ inputs.publish && !inputs.smoke }} - needs: [get-version, validate-release, build] - runs-on: ubuntu-latest - - steps: - - # Same versioned commit (GitCommitId) the build used, so the release tag and files match it. - - name: Checkout code step - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 - with: - ref: ${{ needs.get-version.outputs.GitCommitId }} - - - name: Download release asset step - uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 - with: - name: release-asset - path: ${{ runner.temp }}/publish - - # A re-run may target an already-released tag. Skip release creation when the tag exists, but let a - # manual dispatch through to refresh it. - - name: Check for existing release step - id: release-exists - env: - GH_TOKEN: ${{ github.token }} - TAG: ${{ needs.get-version.outputs.SemVer2 }} - run: | - set -euo pipefail - if gh release view "$TAG" --repo "$GITHUB_REPOSITORY" >/dev/null 2>&1; then - echo "exists=true" >> "$GITHUB_OUTPUT" - else - echo "exists=false" >> "$GITHUB_OUTPUT" - fi - - # target_commitish must be the built commit, or GitHub tags the release on the default branch. - - name: Create GitHub release step - if: ${{ steps.release-exists.outputs.exists == 'false' || github.event_name == 'workflow_dispatch' }} - uses: softprops/action-gh-release@718ea10b132b3b2eba29c1007bb80653f286566b # v3.0.1 - with: - generate_release_notes: true - tag_name: ${{ needs.get-version.outputs.SemVer2 }} - target_commitish: ${{ needs.get-version.outputs.GitCommitId }} - prerelease: ${{ github.ref_name != 'main' }} - fail_on_unmatched_files: true - files: | - LICENSE - README.md - ${{ runner.temp }}/publish/LanguageTags.7z - - # Reclaim the transfer artifact now the release holds durable copies. Same gate as the create step - # (exists == false || dispatch), so a no-op re-run keeps its artifact for the retention backstop. - # Best-effort: a delete hiccup never fails a successful publish. Needs actions: write from the caller. - - name: Delete consumed release asset step - if: ${{ steps.release-exists.outputs.exists == 'false' || github.event_name == 'workflow_dispatch' }} - continue-on-error: true - env: - GH_TOKEN: ${{ github.token }} - run: | - set -euo pipefail - if ! ids=$(gh api "repos/$GITHUB_REPOSITORY/actions/runs/${{ github.run_id }}/artifacts" --paginate \ - --jq '.artifacts[] | select(.name == "release-asset") | .id'); then - echo "::warning::Could not list run artifacts; retention-days backstop will reap them." - ids="" - fi - for id in $ids; do - gh api --method DELETE "repos/$GITHUB_REPOSITORY/actions/artifacts/$id" \ - || echo "::warning::Failed to delete artifact $id; retention-days backstop will reap it." - done diff --git a/.github/workflows/merge-bot-pull-request.yml b/.github/workflows/merge-bot-pull-request.yml deleted file mode 100644 index d2ffcc5..0000000 --- a/.github/workflows/merge-bot-pull-request.yml +++ /dev/null @@ -1,129 +0,0 @@ -name: Merge bot pull request action - -# Enables auto-merge on bot pull requests (Dependabot and codegen) and disables it when a maintainer -# pushes to a bot branch. Auto-merge completes only once the required checks pass, so a breaking update -# blocks itself. Merge method follows the base: squash for develop, merge commit for main. -# -# Every job mints an App token. The built-in GITHUB_TOKEN will not do: its merge commits do not trigger -# downstream workflows (GitHub's recursion guard), and on a Dependabot pull request it is read-only. -# -# Trigger is pull_request_target, not pull_request, so action SHAs resolve from the base branch while the -# jobs hold the App key. Safe because this workflow never checks out PR code, it only runs `gh pr merge` -# against the PR URL. -on: - pull_request_target: - types: [opened, reopened, synchronize] - -# Key on the PR number, not github.ref (the base branch under pull_request_target, which would serialize -# every bot PR). cancel-in-progress: false so a synchronize does not cancel an in-flight opened run before -# it enables auto-merge. -concurrency: - group: ${{ github.workflow }}-${{ github.event.pull_request.number }} - cancel-in-progress: false - -jobs: - - merge-dependabot: - name: Merge dependabot pull request job - runs-on: ubuntu-latest - # In-repo Dependabot PRs only, on opened/reopened so the disable job stays sticky. Every tier - # auto-merges, semver-major included: the required checks are the gate, not the version bump. - if: >- - (github.event.action == 'opened' || github.event.action == 'reopened') && - github.event.pull_request.user.login == 'dependabot[bot]' && - github.event.pull_request.head.repo.full_name == github.repository - permissions: - contents: write - pull-requests: write - - steps: - - - name: Generate GitHub App token step - id: app-token - uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0 - with: - client-id: ${{ secrets.CODEGEN_APP_CLIENT_ID }} - private-key: ${{ secrets.CODEGEN_APP_PRIVATE_KEY }} - - - name: Merge pull request step - run: | - set -euo pipefail - case "${{ github.event.pull_request.base.ref }}" in - develop) method=--squash ;; - main) method=--merge ;; - *) echo "::error::Unsupported base branch: ${{ github.event.pull_request.base.ref }}"; exit 1 ;; - esac - gh pr merge --auto --delete-branch "$method" "$PR_URL" - env: - PR_URL: ${{ github.event.pull_request.html_url }} - GH_TOKEN: ${{ steps.app-token.outputs.token }} - - merge-codegen: - name: Merge codegen pull request job - runs-on: ubuntu-latest - # In-repo codegen PRs, on opened/reopened, with the head/base pairing pinned - # (codegen-main -> main, codegen-develop -> develop). - if: >- - (github.event.action == 'opened' || github.event.action == 'reopened') && - github.event.pull_request.user.login == 'ptr727-codegen[bot]' && - github.event.pull_request.head.repo.full_name == github.repository && - ( - (github.event.pull_request.head.ref == 'codegen-main' && github.event.pull_request.base.ref == 'main') || - (github.event.pull_request.head.ref == 'codegen-develop' && github.event.pull_request.base.ref == 'develop') - ) - permissions: - contents: write - pull-requests: write - - steps: - - - name: Generate GitHub App token step - id: app-token - uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0 - with: - client-id: ${{ secrets.CODEGEN_APP_CLIENT_ID }} - private-key: ${{ secrets.CODEGEN_APP_PRIVATE_KEY }} - - - name: Merge pull request step - run: | - set -euo pipefail - case "${{ github.event.pull_request.base.ref }}" in - develop) method=--squash ;; - main) method=--merge ;; - *) echo "::error::Unsupported base branch: ${{ github.event.pull_request.base.ref }}"; exit 1 ;; - esac - gh pr merge --auto --delete-branch "$method" "$PR_URL" - env: - PR_URL: ${{ github.event.pull_request.html_url }} - GH_TOKEN: ${{ steps.app-token.outputs.token }} - - disable-auto-merge-on-maintainer-push: - name: Disable auto-merge on maintainer push job - runs-on: ubuntu-latest - # A maintainer push to a bot branch (synchronize, actor is not the bot) disables auto-merge so the - # maintainer's commits do not merge with the bot's. Re-enable manually. The disable call is idempotent. - if: >- - github.event.action == 'synchronize' && - github.event.pull_request.head.repo.full_name == github.repository && - ( - github.event.pull_request.user.login == 'dependabot[bot]' || - github.event.pull_request.user.login == 'ptr727-codegen[bot]' - ) && - github.actor != github.event.pull_request.user.login - permissions: - pull-requests: write - - steps: - - - name: Generate GitHub App token step - id: app-token - uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0 - with: - client-id: ${{ secrets.CODEGEN_APP_CLIENT_ID }} - private-key: ${{ secrets.CODEGEN_APP_PRIVATE_KEY }} - - - name: Disable auto-merge step - run: gh pr merge --disable-auto "$PR_URL" - env: - PR_URL: ${{ github.event.pull_request.html_url }} - GH_TOKEN: ${{ steps.app-token.outputs.token }} diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml deleted file mode 100644 index 2a0737c..0000000 --- a/.github/workflows/publish-release.yml +++ /dev/null @@ -1,59 +0,0 @@ -name: Publish project release action - -# Branch-scoped self-publisher: a push to main or develop, or a manual dispatch, publishes that branch. -# -# - Trigger: a push that changes a shipped input (the on.push.paths inclusion list below - library source, -# embedded data, version floor, build configuration, or package versions), or a workflow_dispatch. -# - Inclusion-only: add a path to that list when a new input starts affecting the shipped package. Package versions -# (Directory.Packages.props) ARE listed: a NuGet package cannot be rebuilt on a cadence (a version can't be -# re-pushed), so a dependency bump must republish to keep the package's declared dependencies current - this -# closes the stale/vulnerable-dependency window. GitHub Actions bumps are not listed (they do not ship in -# the package), so an Actions Dependabot bump does not republish (a package-version bump does). -# - Output: main publishes a stable release, develop a prerelease. A dispatch force-publishes its branch. -# - Gate: the publish job needs the same validate-task the PR runs, so nothing publishes that would fail -# validation, on any path (push, dispatch, or force-push). -# - The merge-bot merges with an App token, so its merge commits reach this push trigger. -on: - push: - branches: [main, develop] - paths: - - 'LanguageTags/**' - - 'LanguageData/**' - - 'version.json' - - 'Directory.Build.props' - - 'Directory.Packages.props' - workflow_dispatch: - -# Ref-independent group so concurrent publishes serialize, and cancel-in-progress: false so a publish is -# never cancelled mid-release (a half-created GitHub release or partial NuGet push). -concurrency: - group: ${{ github.workflow }} - cancel-in-progress: false - -jobs: - - # The same unit-test + lint gate the PR runs. The publish job needs it, so a failing test or lint blocks - # the release. - validate: - name: Validate job - uses: ./.github/workflows/validate-task.yml - # Thread CODECOV_TOKEN through so the unit-test job can upload coverage. - secrets: inherit - - # Build, version, validate, push, and release the triggering branch. Grants the write scopes - # build-release-task needs (it declares none, so the read-only smoke caller is not forced to over-grant). - # The push trigger is already limited to main/develop, and the if-guard covers a workflow_dispatch, which - # can target any branch. - publish: - name: Publish project release job - needs: validate - if: ${{ github.event_name == 'push' || github.ref_name == 'main' || github.ref_name == 'develop' }} - uses: ./.github/workflows/build-release-task.yml - secrets: inherit - permissions: - contents: write - id-token: write - actions: write - with: - publish: true - smoke: false diff --git a/.github/workflows/run-codegen-pull-request-task.yml b/.github/workflows/run-codegen-pull-request-task.yml deleted file mode 100644 index cdf9790..0000000 --- a/.github/workflows/run-codegen-pull-request-task.yml +++ /dev/null @@ -1,82 +0,0 @@ -name: Run codegen and pull request task - -# Regenerates the embedded LanguageData and opens a PR per branch when it changed. Dual-target, the -# workflow analog of Dependabot's per-target-branch config: the matrix runs main and develop -# independently, each leg checking out its own branch and opening its own PR (codegen-main -> main, -# codegen-develop -> develop) that the merge-bot auto-merges. Landing the data directly in each branch -# keeps it conflict-free regardless of the feature -> develop -> main flow. Do not collapse to one branch -# and merge back. Output must be deterministic from the upstream registries (no per-run timestamps or GUIDs). -on: - workflow_call: - secrets: - CODEGEN_APP_CLIENT_ID: - required: true - CODEGEN_APP_PRIVATE_KEY: - required: true - -jobs: - - codegen: - name: Run ${{ matrix.target.ref }} codegen and pull request job - runs-on: ubuntu-latest - permissions: - contents: write - pull-requests: write - strategy: - # Each branch is independent: one leg's failure does not affect the other. - fail-fast: false - matrix: - target: - - ref: main - branch: codegen-main - - ref: develop - branch: codegen-develop - - steps: - - - name: Generate GitHub App token step - # App token so the PR open fires pull_request workflow events (a GITHUB_TOKEN open does not). - id: app-token - uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0 - with: - client-id: ${{ secrets.CODEGEN_APP_CLIENT_ID }} - private-key: ${{ secrets.CODEGEN_APP_PRIVATE_KEY }} - - - name: Setup .NET SDK step - uses: actions/setup-dotnet@26b0ec14cb23fa6904739307f278c14f94c95bf1 # v5.4.0 - with: - dotnet-version: 10.x - - - name: Checkout code step - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 - with: - ref: ${{ matrix.target.ref }} - token: ${{ steps.app-token.outputs.token }} - - - name: Run codegen step - run: | - set -euo pipefail - dotnet run --project ./LanguageTagsCreate/LanguageTagsCreate.csproj -- \ - --codepath . - - - name: Format code step - run: | - set -euo pipefail - dotnet tool restore - dotnet husky install - dotnet csharpier format --log-level=debug . - git status - - - name: Create pull request step - # App token: fires pull_request workflow events and signs commits as the app. - id: cpr - uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1 - with: - token: ${{ steps.app-token.outputs.token }} - base: ${{ matrix.target.ref }} - branch: ${{ matrix.target.branch }} - title: 'Update codegen files' - body: 'This PR updates the codegen files.' - commit-message: 'Update codegen files' - delete-branch: true - sign-commits: true diff --git a/.github/workflows/run-periodic-codegen-pull-request.yml b/.github/workflows/run-periodic-codegen-pull-request.yml deleted file mode 100644 index 025e1b8..0000000 --- a/.github/workflows/run-periodic-codegen-pull-request.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Run daily codegen and pull request action - -# Daily check for upstream language-data changes. The task regenerates LanguageData and opens a PR per -# branch only when the data changed (see run-codegen-pull-request-task.yml). The merge-bot auto-merges it, -# and the changed data is a shipped input, so the publisher then releases it. -on: - workflow_dispatch: - schedule: - - cron: '0 4 * * *' - -# Workflow-only group (no -${{ github.ref }}): the task writes to the fixed codegen-main/codegen-develop -# branches regardless of the triggering ref, so a dispatch and the scheduled run must not race on them. -concurrency: - group: ${{ github.workflow }} - cancel-in-progress: true - -jobs: - - run-codegen: - name: Run codegen and pull request job - uses: ./.github/workflows/run-codegen-pull-request-task.yml - secrets: inherit - permissions: - contents: write - pull-requests: write diff --git a/.github/workflows/test-pull-request.yml b/.github/workflows/test-pull-request.yml deleted file mode 100644 index df5e561..0000000 --- a/.github/workflows/test-pull-request.yml +++ /dev/null @@ -1,62 +0,0 @@ -name: Test pull request action - -# CI for every branch. Runs on push so the reusable tasks resolve from the pushed head: a PR that edits a -# workflow or the build task tests its own copy. validate-task (unit tests + lint) and smoke-build run on -# every push with no paths filter, so a reusable-workflow change is always exercised. The aggregator below -# is the ruleset required-status-check, produced here on the head SHA. validate-task is the same gate the -# publisher runs, so nothing merges or publishes that would fail it. -# -# There is deliberately no pull_request trigger: a fork PR cannot push to this repo, so it produces no run -# and cannot satisfy the required check. A maintainer lands such a contribution on an in-repo branch (which -# does push, and so validates) before merging. This is the documented exception (see WORKFLOW.md). -on: - # All branches, but not tags: release tags must not re-run CI. - push: - branches: ['**'] - workflow_dispatch: - -concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true - -jobs: - - # `!github.event.deleted` skips a branch-deletion push (github.sha is all-zeros, so checkout/build fails). - validate: - name: Validate job - if: ${{ !github.event.deleted }} - uses: ./.github/workflows/validate-task.yml - # Thread CODECOV_TOKEN through so the unit-test job can upload coverage. - secrets: inherit - - # Build and pack the library in its branch configuration to prove it ships, publishing nothing. Runs on - # every push, so a change to build-release-task is exercised head-resolved in the PR that makes it. - smoke-build: - name: Smoke build job - if: ${{ !github.event.deleted }} - uses: ./.github/workflows/build-release-task.yml - permissions: - contents: read - with: - smoke: true - publish: false - - # Single required status check. Its name is the ruleset-bound context in repo-config/ruleset-*.json. Do - # not rename it without updating those in lockstep. Must succeed, not merely not-fail. - check-workflow-status: - name: Check pull request workflow status job - runs-on: ubuntu-latest - needs: [validate, smoke-build] - if: ${{ always() && !github.event.deleted }} - steps: - - name: Check workflow results step - run: | - set -euo pipefail - for result in "validate:${{ needs.validate.result }}" "smoke-build:${{ needs.smoke-build.result }}"; do - name="${result%%:*}" - value="${result#*:}" - if [[ "$value" != "success" ]]; then - echo "::error::Job '$name' did not succeed ($value)." - exit 1 - fi - done diff --git a/.github/workflows/validate-task.yml b/.github/workflows/validate-task.yml deleted file mode 100644 index 151cbfb..0000000 --- a/.github/workflows/validate-task.yml +++ /dev/null @@ -1,85 +0,0 @@ -name: Validate task - -# The single validation gate: unit tests plus the full lint set (the editor's checks enforced in CI from -# the same config files). Reused by test-pull-request (which produces the required status check) and by -# publish-release (whose publish job needs it), so the PR gate and the publish gate run the identical -# validation from one definition, and nothing publishes that would fail the PR. -on: - workflow_call: - -jobs: - - unit-test: - name: Run unit tests job - runs-on: ubuntu-latest - - steps: - - - name: Setup .NET SDK step - uses: actions/setup-dotnet@26b0ec14cb23fa6904739307f278c14f94c95bf1 # v5.4.0 - with: - dotnet-version: 10.x - - - name: Checkout code step - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 - - # Builds with TreatWarningsAsErrors, so analyzer and code-style warnings fail here. - # --collect drives coverlet.collector to emit Cobertura XML into ./coverage//. - - name: Run unit tests step - run: dotnet test --collect:"XPlat Code Coverage" --results-directory ./coverage - - # Report-only: fail_ci_if_error is false so a Codecov hiccup or an absent token never fails the gate. - - name: Upload coverage to Codecov step - uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0 - with: - directory: ./coverage - fail_ci_if_error: false - env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} - - # The same checks the editor runs interactively, enforced in CI from the same config files: CSharpier - # formatting, dotnet format style (EditorConfig), markdownlint, cspell on the user-facing docs, and - # actionlint (which shellchecks every run: block). - lint: - name: Lint job - runs-on: ubuntu-latest - - steps: - - - name: Setup .NET SDK step - uses: actions/setup-dotnet@26b0ec14cb23fa6904739307f278c14f94c95bf1 # v5.4.0 - with: - dotnet-version: 10.x - - - name: Checkout code step - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 - - - name: Check C# formatting step - run: | - set -euo pipefail - dotnet tool restore - dotnet csharpier check . - - - name: Check C# style step - run: dotnet format style --verify-no-changes --severity=info --verbosity=detailed - - - name: Lint markdown step - uses: DavidAnson/markdownlint-cli2-action@8de2aa07cae85fd17c0b35642db70cf5495f1d25 # v24.0.0 - with: - globs: '**/*.md' - - # Spell check the user-facing docs. The word list and exclusions live in cspell.json, shared with the - # editor's Code Spell Checker. - - name: Spell check step - uses: streetsidesoftware/cspell-action@de2a73e963e7443969755b648a1008f77033c5b2 # v8.4.0 - with: - files: | - README.md - HISTORY.md - incremental_files_only: false - - - name: Lint workflows step - uses: raven-actions/actionlint@3d39aea434753780c3b3d4a1a31c854b4dbf49d7 # v2.2.0 - - - name: Check line endings step - run: docker run --rm -v "$PWD":/check --workdir /check mstruebing/editorconfig-checker@sha256:67b9e9b16a674e36f7c05919da789f03a01d343ca8423eb8797179399af07c00 # editorconfig-checker v3.4.0 diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 193ff24..0000000 --- a/.gitignore +++ /dev/null @@ -1,10 +0,0 @@ -[Dd]ebug/ -[Rr]elease/ -[Bb]in/ -[Oo]bj/ - -.idea -.vs -.artifacts -.DS_Store -*.user diff --git a/.husky/pre-commit b/.husky/pre-commit deleted file mode 100755 index 818853f..0000000 --- a/.husky/pre-commit +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh -. "$(dirname "$0")/_/husky.sh" - -dotnet husky run diff --git a/.husky/task-runner.json b/.husky/task-runner.json deleted file mode 100644 index dbcd960..0000000 --- a/.husky/task-runner.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "$schema": "https://alirezanet.github.io/Husky.Net/schema.json", - "tasks": [ - { - "name": "CSharpier Format", - "command": "dotnet", - "args": [ - "csharpier", - "format", - "--log-level=debug", - "${staged}" - ], - "include": [ - "**/*.cs" - ] - }, - { - "name": ".NET Format", - "command": "dotnet", - "args": [ - "format", - "style", - "--verify-no-changes", - "--severity=info", - "--verbosity=detailed" - ], - "include": [ - "**/*.cs" - ] - } - ] -} diff --git a/.markdownlint-cli2.jsonc b/.markdownlint-cli2.jsonc deleted file mode 100644 index 4afb100..0000000 --- a/.markdownlint-cli2.jsonc +++ /dev/null @@ -1,15 +0,0 @@ -{ - "config": { - // Prose paragraphs and data-heavy tables/URLs are intentionally long; - // reflowing at 80 cols hurts readability and churns diffs. - "MD013": false, - // Inline HTML is used for reference-link section dividers. - "MD033": false, - // Require fenced code blocks over the legacy 4-space-indented style. - "MD046": { "style": "fenced" }, - // MD060 (table column style) is not enforced - allow both compact - // (`|a|b|`) and padded (`| a | b |`) table pipe spacing. - "MD060": false - }, - "gitignore": true -} diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 0047099..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "version": "0.2.0", - "configurations": [ - { - "name": "LanguageTagsCreate", - "type": "coreclr", - "request": "launch", - "preLaunchTask": ".NET Build", - "program": "${workspaceFolder}/.artifacts/bin/LanguageTagsCreate/debug/LanguageTagsCreate.dll", - "args": [ - "--codepath", - "${workspaceFolder}", - ], - "cwd": "${workspaceFolder}/.artifacts/bin/LanguageTagsCreate/debug", - "console": "internalConsole", - "stopAtEntry": false - } - ] -} diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index 10e227c..0000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,147 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - // The first three tasks are the .NET clean-compile set (see CODESTYLE.md). The rest are convenience. - { - "label": ".NET Build", - "type": "process", - "command": "dotnet", - "args": [ - "build", - "${workspaceFolder}", - "--verbosity=diagnostic" - ], - "group": "build", - "problemMatcher": [ - "$msCompile" - ], - "presentation": { - "showReuseMessage": false, - "clear": false - } - }, - { - "label": ".NET Format", - "type": "process", - "command": "dotnet", - "args": [ - "format", - "style", - "--verify-no-changes", - "--severity=info", - "--verbosity=detailed" - ], - "problemMatcher": [ - "$msCompile" - ], - "presentation": { - "showReuseMessage": false, - "clear": false - }, - "dependsOrder": "sequence", - "dependsOn": [ - "CSharpier Format", - ".NET Build" - ] - }, - { - "label": "CSharpier Format", - "type": "process", - "command": "dotnet", - "args": [ - "csharpier", - "format", - "--log-level=debug", - "." - ], - "problemMatcher": [ - "$msCompile" - ], - "presentation": { - "showReuseMessage": false, - "clear": false - } - }, - // Convenience tasks. - { - "label": ".NET Tool Update", - "type": "process", - "command": "dotnet", - "args": [ - "tool", - "update", - "--all" - ], - "problemMatcher": [ - "$msCompile" - ], - "presentation": { - "showReuseMessage": false, - "clear": false - } - }, - { - "label": "Husky.Net Run", - "type": "process", - "command": "dotnet", - "args": [ - "husky", - "run" - ], - "problemMatcher": [ - "$msCompile" - ], - "presentation": { - "showReuseMessage": false, - "clear": false - } - }, - { - "label": ".NET Outdated Upgrade", - "type": "process", - "command": "dotnet", - "args": [ - "outdated", - "--upgrade:prompt" - ], - "problemMatcher": [ - "$msCompile" - ], - "presentation": { - "showReuseMessage": false, - "clear": false - } - }, - { - "label": "Run Codegen", - "type": "process", - "command": "dotnet", - "args": [ - "run", - "--project", - "${workspaceFolder}/LanguageTagsCreate/LanguageTagsCreate.csproj", - "--", - "--codepath", - "${workspaceFolder}" - ], - "problemMatcher": [ - "$msCompile" - ], - "presentation": { - "showReuseMessage": false, - "clear": false - } - }, - // Regenerate the embedded data, then CSharpier-format it. Codegen line lengths follow the source - // data text, so the generated C# is not always CSharpier-aligned. - { - "label": "Codegen and Format", - "dependsOrder": "sequence", - "dependsOn": [ - "Run Codegen", - "CSharpier Format" - ], - "problemMatcher": [] - } - ] -} diff --git a/AGENTS.md b/AGENTS.md deleted file mode 100644 index e9ef32b..0000000 --- a/AGENTS.md +++ /dev/null @@ -1,206 +0,0 @@ -# Instructions for AI Coding Agents - -**LanguageTags** is a C# .NET library for handling ISO 639-2, ISO 639-3, and RFC 5646 / BCP 47 language tags. The library ships as the NuGet package `ptr727.LanguageTags` and is consumed directly from `main`. The repo also contains a CLI codegen tool (`LanguageTagsCreate/`) that refreshes embedded language data from upstream registries, and an xUnit test project (`LanguageTagsTests/`). - -This file is the canonical reference for cross-cutting AI-agent rules. The CI/CD workflow contract and conventions live in [`WORKFLOW.md`](./WORKFLOW.md); C# code-style conventions live in [`CODESTYLE.md`](./CODESTYLE.md). Copilot review *mechanics* are owned by [`.github/copilot-instructions.md`](./.github/copilot-instructions.md) - this file delegates them there explicitly (see "PR Review Etiquette" below). High-level summaries in other docs (e.g. README's Contributing section) are allowed when they link back here; don't duplicate the rules themselves. The library's **project-specific conventions and public-API/behavioral contracts** also live here (the [Library API Conventions](#library-api-conventions) section), **not** in `.github/copilot-instructions.md` - that file targets GitHub Copilot / VS Code specifically, while this file is the agent-agnostic one every coding agent reads, so any rule a reviewer must honor has to live here to be provider-independent. - -## Git and Commit Rules - -- **Default to staging, not committing.** Stage changes with `git add` and leave `git commit` to the developer unless the developer has explicitly authorized the agent to commit for the current ask ("commit this", "open a PR", etc.). Authorization is scope-bound - it covers the commits needed for that specific task, not a blanket commit license for the rest of the session. -- **All commits must be cryptographically signed (SSH or GPG).** Branch protection enforces this on both branches; unsigned commits are rejected on push. Signing depends on environment configuration - `git config commit.gpgsign true`, a configured `user.signingkey`, and a working signing agent (loaded `ssh-agent` for SSH, or `gpg-agent` for GPG). If signing is not configured in the environment, **do not commit** - surface the missing config to the developer and stop at `git add`. Verify before any agent-authored commit (`git config --get commit.gpgsign && ssh-add -L` or the GPG equivalent). **Signing must be live before the *first* commit, not retrofitted.** Turning on `Require signed commits` against a branch that already has unsigned commits forces a rewrite of that entire history to re-sign it - changing every commit SHA and making whoever does the rewrite the committer and signer of every commit (a rebase preserves the `author` field but not the original signatures; you cannot sign another contributor's commits for them). During new-repo setup, never create commits until signing is verified. -- **Never force push.** Do not run `git push --force` or `git push --force-with-lease` under any circumstances. Force pushing rewrites shared history and can cause data loss. -- **Never run destructive git commands** (`git reset --hard`, `git checkout .`, `git restore .`, `git clean -f`) without explicit developer instruction. - -## Branching Model - -This is the developer-facing git policy. The branch rulesets that enforce it (merge methods, required check, strict-status settings, and the reasons), and the merge-bot and codegen workflow behavior, are specified in [`WORKFLOW.md`](./WORKFLOW.md) (rulesets in section 6, bots in D8) and codified in [`repo-config/`](./repo-config/). Do not restate them here. - -- `develop` is the integration branch. Feature branches merge to `develop` **squash-only**, keeping develop linear. `develop` merges to `main` **merge-commit only** (no squash, no rebase), so `main` keeps a real reference to the develop commits a release came from. -- **`develop` is forward-only**: no `main -> develop` back-merges. Historical back-merge commits in `git log` predate this rule and must not be repeated. -- All commits on both branches are cryptographically signed (see Git and Commit Rules). Squash and merge commits created in the GitHub UI are signed by GitHub's web-flow key. -- **Bots target both `main` and `develop` directly.** Dependabot and codegen open PRs against each branch independently. This is deliberate: running a bot on one branch and merging its changes across to the other causes endless conflicts as the feature -> develop -> main flow moves underneath it, whereas landing the same dependency or data update directly in each branch keeps bot changes conflict-free regardless of what else is in flight, and keeps the `main` package fresh without waiting on a promotion. Dependabot security PRs open against `main`. The mechanics (Dependabot's per-target-branch config, codegen's per-branch matrix) are in [`WORKFLOW.md`](./WORKFLOW.md) D8. -- **Mirror to `develop` any change that lands on `main` outside the feature -> develop -> main flow.** "Mirror" means landing the same fix directly on `develop` via a follow-up PR targeting `develop` - never a `main -> develop` back-merge, which the forward-only rule forbids. A reconciliation-branch fix made to resolve a `develop -> main` promotion conflict, or a security PR that merges only to `main`, leaves `develop` behind on that content - and forward-only `develop` never back-merges to catch up (the same parallel-target principle as the bots). Before basing new work on `develop`, or diagnosing a defect from it, compare content and not commit history: run `git diff origin/main origin/develop` and inspect its `-` lines - the `main`-side of each difference, to check for staleness. A `-`/`+` pair within one hunk is usually just `develop` modifying that code as normal unpromoted work (occasionally `develop` is reworking a `main`-side fix differently - worth a glance). The stronger staleness signal is a deletion-only hunk (`-` lines, no `+` lines): content on `main` that `develop` lacks entirely, i.e. a `main`-only fix `develop` never received, so the defect may already be fixed on `main`. Prefer this over a commit-log check like `git log origin/develop..origin/main`, which is noisy here because it also lists routine promotion merges and the `main`-direct bot commits whose content `develop` already carries via its own parallel bot PRs. -- **Put issue-closing keywords (`Closes #N`) where they fire on merge to the default branch (`main`).** GitHub closes an issue from a *PR description* only when that PR merges to `main`, so a `Closes #N` in a PR that targets `develop` never fires - put it in the `develop -> main` promotion PR instead. A closing keyword in a *commit message* does close the issue once that commit reaches `main` via promotion, but that is fragile across squash-merges, so prefer the promotion PR's description or close the issue manually once the fix lands on `main`. - -## Release Model - -The release and publish behavior - branch-scoped versioning (`main` = stable, `develop` = prerelease), the self-sufficient publish model (each shipped change auto-publishes; a maintainer dispatches to force a release), the pull-request smoke gate, and Dependabot/codegen auto-merge - is specified in [`WORKFLOW.md`](./WORKFLOW.md), the canonical CI/CD guide. Do not duplicate those rules here. - -Versioning is the one release rule that is a **human process**, not a workflow outcome, so it lives here ([`WORKFLOW.md`](./WORKFLOW.md) D3.3 defers to this): - -- The `version` (major.minor) in [`version.json`](./version.json) is the version floor; NBGV appends the git height (the SemVer patch position). `main` builds a stable `X.Y.`; `develop` builds a prerelease `X.Y.-g`. The maintainer edits `version.json`; dependency bumps, codegen refreshes, CI/workflow fixes, and doc edits leave it untouched. -- **Bump `version.json` only for functional changes, by maintainer instruction.** Raise the major/minor when the work warrants a new semantic version - a new feature, a behavior or API change, a breaking change - in the PR that introduces it (typically on `develop`). Do not bump on a fixed cadence or mechanically after a release. -- **No post-release bump; no develop-ahead requirement.** NBGV advances the patch (git height) on every commit, so a release always gets a fresh build version with no `version.json` edit and there is no `bump-version-X.Y` PR after a release. A `develop -> main` promotion carries whatever `version.json` is current: a promotion with a functional bump releases that new version on `main`; a maintenance-only promotion (dependency/codegen bumps, CI/doc fixes) carries the unchanged `version.json` and `main` advances only its NBGV height. -- **`dotnet/nbgv` is consumed via `@master`, never SHA-pinned.** Its tag stream lags `master` such that Dependabot tag-tracking would only propose downgrades to stale tags; this is the sole WORKFLOW.md D9.1 exception (rationale inline in the workflow). Do not SHA-pin it. - -## Pull Request Title and Commit Message Conventions - -### Format - -- Imperative subject summarizing the change, <=72 characters, no trailing period. ("Add 24-hour PM2.5 average sensor", not "Added X" or "Adds X".) -- Optional body, blank-line separated, explaining *why* the change is being made when that's non-obvious. The diff shows *what*. - -### Rules - -- Don't write `update stuff`, `wip`, or other vague titles. (Dependabot's default `Bump X from Y to Z` titles are fine - keep them.) -- Don't add `Co-Authored-By:` lines unless the developer explicitly asks. -- Don't put release-bump magnitude in the title - no "minor", "patch", "release v0.2.0", etc. Nerdbank.GitVersioning computes the next release version from `version.json` + git history. Dependency versions in dependency-bump titles are fine and expected. -- Use US English spelling and match the existing heading style of the file you're editing: title case with lowercase short bind words (a, an, the, and, but, or, of, in, on, at, to, by, for, from); hyphenated compounds capitalize both parts unless the second is a short preposition (*Built-in*, *EPA-Corrected*, *24-Hour*). - -### Examples - -```text -Add structured logging extensions to LanguageTag -Pin softprops/action-gh-release to commit SHA -Refresh ISO 639-3 data table from SIL -Bump xunit.v3 from 3.2.2 to 3.3.0 -Clarify LanguageTagBuilder usage in README -``` - -## Documentation Style Conventions - -### Characters and voice - -- **No em-dashes (`U+2014`), ever.** They are the clearest tell of machine-written prose and are not how this repo is written. Use a spaced hyphen ` - `, a comma, a colon, parentheses, or two sentences instead. Avoid the matching tell of long semicolon-chained sentences. Prefer plain, short sentences. -- **Default to ASCII.** Non-ASCII is allowed only where the character carries real visual or semantic meaning ASCII cannot - a warning or info icon in a README callout, or a unit symbol (ohm, micro, degree). Never use non-ASCII decoratively: no fancy quotes, no Unicode arrows (write `->`), no ellipsis character (write `...`), no en-dash (write `-`). -- Spell in US English, not UK English (see the PR-title rules). - -### Markdown - -- Use reference-style links for any URL referenced more than once or appearing in lists; alphabetize the reference definitions block. -- Inline single-use relative links (e.g. `[CODESTYLE.md](./CODESTYLE.md)`) are fine. -- One logical paragraph per line; no hard-wrap line-length limit. For an intentional hard line break within a block - stacked badges, status, or license lines - end the line with a trailing backslash (`\`); this explicit form is preferred over trailing whitespace and is not treated as a paragraph split. -- Headings follow the title-case-with-short-bind-words rule from the PR-title section. - -### Comments - -Applies to code and workflow (`#`) comments alike. - -- Comment only when the code does not explain itself or the logic is genuinely complex. Self-evident code needs no comment. -- Judge "obvious" in context, not line by line. A note that reads as redundant on its own line can be essential in the larger flow - a comment marking a workflow step's exit condition, for example, even though the line itself plainly does a `return` or `exit`. -- Write for the human reading *this* project's code now: state what the code does and only the non-obvious *why*. No cross-project references (do not name other repos), no historic or design narrative, no rule citations - governance lives in this file, not echoed inline. -- Match the surrounding code's line length (typically ~120), not an 80-column wrap. For a multi-point comment, prefer short structured lines or `-` bullets over one long prose paragraph. -- **Do not accumulate comments.** When you change code or a comment, rewrite the whole comment fresh; never bolt a new comment onto an existing one or layer explanations across edits. Comment volume should stay flat or shrink over time, not grow. -- **Leave human-authored comments and emojis exactly as written** - do not reword, trim, reflow, or "clean" them, even if they seem to bend a rule. Revise only agent-authored comments, and match the surrounding voice when you do. - -### Line Endings - -- [`.editorconfig`](./.editorconfig) defines the correct ending per file type (CRLF for `.md`, `.cs`, XML/`.csproj`/`.props`, `.yml`/`.yaml`, `.json`, `.cmd`/`.bat`/`.ps1`; LF for `.sh`), and [`.gitattributes`](./.gitattributes) (`* -text`) stops git from normalizing. -- **Workflow YAML (`.github/workflows/*.{yml,yaml}`) is pinned LF** in `.editorconfig` - Dependabot and Actions rewrite it with LF, so declaring LF keeps it consistent instead of mixed. git still leaves endings alone (`* -text`); CI's `editorconfig-checker` (EOL-only) enforces it. Non-workflow YAML stays CRLF. -- **Editing an existing file: preserve its current line endings** - do not reflow them as a side effect of a content change, even if the file is already non-compliant. After any programmatic edit, verify with `git diff --stat` (only changed lines) and `file ` (expected ending). Bring a non-compliant file to its `.editorconfig` ending only as a deliberate, isolated EOL-only change. - -### Quantitative Claims - -- Any quantitative claim in `README.md` (counts, sizes, version floors, supported platforms) must be verified against current code. If a doc number is derived from a code constant, mark the dependency in a source-code comment so the next editor knows to update both. - -## PR Review Etiquette - -> This "PR Review Etiquette" section is the provider-agnostic review-loop *contract*; the [`.github/copilot-instructions.md`](./.github/copilot-instructions.md) "GitHub Copilot Review Runbook" implements its mechanics. Without both, an agent has no pointer to the reliable Copilot mechanics and falls back to ad-hoc (and known-broken) behavior. - -The repo runs a review loop on every PR: local agent iteration plus remote automated review (GitHub Copilot is the configured reviewer). Treat this as a contract regardless of which local agent authored the changes. - -### Merge Gate (read this first) - -**Do not merge - and do not enable auto-merge - unless ALL of these hold:** - -1. Required status checks are green (`mergeStateStatus: CLEAN`), **and** -2. A Copilot review is confirmed on the **current head SHA** (not an earlier push), **and** -3. **Every** Copilot finding on that head SHA is closed out - all review threads resolved, **and** any issue-level Copilot comments (which have no resolve action) triaged and replied to - so zero outstanding findings remain, **and** -4. The maintainer has given **explicit** permission to merge. - -`mergeStateStatus: CLEAN` reflects **only** required statuses - it never reflects open bot review comments, so `CLEAN` alone is **never** sufficient to merge. A green/`CLEAN` PR with an unresolved Copilot finding fails this gate; treat it as "not mergeable" no matter what the merge-state field says. The agent never merges on its own (consistent with "default to staging"; merging is maintainer-authorized). - -**Merging a shipped change releases.** A merge to `main` or `develop` that changes a shipped input - including a dependency bump (`Directory.Packages.props`), so the published package's dependencies stay current - auto-publishes that branch (see [`WORKFLOW.md`](./WORKFLOW.md)); a merge confined to tests, tooling, docs, CI, or GitHub-Actions bumps does not. Releasing is a configured consequence of merging a shipped change, so weigh the release impact before merging to `main`. Never manually force a publish (`workflow_dispatch`) without explicit maintainer instruction. - -### Expected Review Loop - -1. Push changes to the PR branch. -2. Re-request a review for the **current head SHA**. Auto-trigger is unreliable, so request it explicitly via the `requestReviews` GraphQL mutation (now reliable end-to-end - see the runbook); the UI is only a fallback. -3. Wait for review activity on that head. A completed review that raises **no findings** is a valid terminal outcome for that head - proceed; do not re-trigger it or treat the absence of comments as a missing review. -4. Triage findings. -5. Apply fixes or write a rationale for declines. -6. Reply to each thread and resolve what was addressed. -7. Re-run the loop after every fix push until no actionable findings remain. - -Drive the loop to green - review confirmed on the latest head SHA and every actionable finding closed - then stop and apply the **Merge Gate** above: all four preconditions must hold, and `mergeStateStatus: CLEAN` alone never satisfies it. - -For provider-specific mechanics (how to request review, query review state, post replies, resolve threads), see the **GitHub Copilot Review Runbook** in [.github/copilot-instructions.md](./.github/copilot-instructions.md). This file owns the contract; that file owns the mechanics. - -### Triaging Review Comments - -For each comment, classify before responding: - -- **Bug** - wrong behavior, missing test coverage, or a real divergence between code and docs. Fix it. Reply with the fixing commit SHA when done. -- **Style/convention** - the comment cites a rule from this file or a language-specific style guide. Two cases: - - The cited rule matches what the existing codebase already does -> fix the offending code. - - The cited rule contradicts what's in the tree, or industry norm -> **update the rule instead of the code**. The rule is wrong, not the code. Bouncing the same code across rounds is the symptom of a wrong rule. Heuristic: three rounds on the same style category means the rule needs adjusting and the user should authorize the rule change. -- **Architectural opinion** - the comment proposes a different design ("constrain this to disabled-by-default", "move it elsewhere", "add a runtime guardrail"). This is judgment, not a bug. Surface it to the user with a recommendation; don't apply unilaterally. - -### Responding and Resolution Expectations - -Reply inline with either the fixing commit SHA (for accepted issues) or a concise rationale (for declines). Resolve review threads when addressed or intentionally declined with rationale. Issue-level comments (those at `repos/.../issues//comments` rather than tied to a specific line) have no resolution action - acknowledge with a reply if needed and move on. - -After the final push on a PR, sweep older threads from earlier rounds whose code paths no longer exist; otherwise stale unresolved markers remain in the review UI. - -### Escalating to the User - -Bring the user in when: - -- **Genuine design trade-off** surfaces (fail-open vs fail-closed, narrow vs broad refactor scope, "should we add a guardrail or trust the doc comment"). Triage, recommend, ask. -- **Repeated friction** across rounds without convergence - that's the rule-needs-updating signal. Stop, summarize the pattern, and let the user authorize the rule change. -- **Architectural redesign** is requested rather than a bug fix. Surface with a recommendation; never apply unilaterally. - -Anti-pattern: don't keep flipping the code on the same style point. Flip the rule once and stick to the rule. - -## Shared Configuration and Tooling - -- **Config files.** [`.editorconfig`](./.editorconfig) (per-file-type EOL plus the C# / ReSharper style block), [`.gitattributes`](./.gitattributes), [`.markdownlint-cli2.jsonc`](./.markdownlint-cli2.jsonc), [`CODESTYLE.md`](./CODESTYLE.md) (C# code style), and [`.github/copilot-instructions.md`](./.github/copilot-instructions.md) (the Copilot review runbook) hold the repo's formatting, linting, and review-mechanics rules. `CODESTYLE.md` sits at the repo root because `AGENTS.md` and `copilot-instructions.md` link it by relative path. Keep `copilot-instructions.md` narrow (Copilot/VS Code mechanics plus the commit/PR-title summary); project-specific conventions and the public-API contract live in this file, not there. -- **Clean-compile gate.** Husky.Net pre-commit git hooks run the C# clean-compile checks (CSharpier format, then `dotnet format style --verify-no-changes`), installed with `dotnet tool restore` + `dotnet husky install`. The [`.vscode/tasks.json`](./.vscode/tasks.json) tasks `.NET Build`, `CSharpier Format`, and `.NET Format` are the canonical task names (owned by the `CODESTYLE.md` ".NET" section); do not loosen them. CI is the authoritative backstop: the `lint` job ([`WORKFLOW.md`](./WORKFLOW.md) D1.3) enforces CSharpier, `dotnet format style`, `markdownlint`, scoped `cspell`, and `actionlint` from the same config files, because a local hook can be bypassed. Keep the editor task, the hook, and CI in sync (CODESTYLE "Clean-Compile Verification"). -- **Linting tools.** CI is the authoritative lint run; a local run is only for fast feedback. The `dotnet` checks need only the .NET SDK: `dotnet format style` is built into the SDK, and CSharpier is restored by `dotnet tool restore` against [`.config/dotnet-tools.json`](./.config/dotnet-tools.json). The markdown, spelling, and workflow linters have no committed manifest; run each from its official Docker image, the portable path that avoids a local Node or Go install, mounting the repo as the working directory: `cspell` from `ghcr.io/streetsidesoftware/cspell`, `markdownlint-cli2` from `davidanson/markdownlint-cli2`, and `actionlint` (which bundles `shellcheck`) from `rhysd/actionlint`, pinned to the versions [`validate-task.yml`](./.github/workflows/validate-task.yml) uses. Each takes the file globs directly, for example `docker run --rm -v "$PWD":/work -w /work ghcr.io/streetsidesoftware/cspell cspell README.md HISTORY.md` or `... davidanson/markdownlint-cli2 '**/*.md'`. The cspell accepted-word list and the path exclusions both live in [`cspell.json`](./cspell.json), the single source: the Code Spell Checker extension reads `cspell.json` ahead of the workspace `cSpell` settings (so GUI "Add to dictionary" lands words there), and the CLI and CI read the same file. Do not keep a parallel word list in the `.code-workspace` file. A local cspell or markdownlint result that reports zero files checked scanned nothing; ignore it. There is intentionally no wrapper script; the editor, these Docker images, and CI are the supported runners. -- **Codegen.** Embedded language data is regenerated by [`LanguageTagsCreate/`](./LanguageTagsCreate/), which pulls directly from the official ISO 639-2/3 + RFC 5646 registries. There is no external codegen API key. -- **Release notes.** Keep a short summary in [`README.md`](./README.md) and the full history in [`HISTORY.md`](./HISTORY.md); update both when cutting a release. - -## Workflow YAML Conventions - -The conventions for everything under `.github/workflows/` - action pinning, file/workflow/job/step naming, concurrency, shells, conditionals, boolean inputs, permissions, artifact handoff and cleanup, and release tagging - are specified in [`WORKFLOW.md`](./WORKFLOW.md) (sections 2 and 4), the canonical guide for this repo's CI/CD. New and modified workflows must respect it. Do not duplicate those rules here; this section is a pointer. - -## Automating Workflow Validation - -[`WORKFLOW.md`](./WORKFLOW.md) is a machine-followable rulebook, not just documentation: it defines a static audit (5A), end-to-end trace scenarios (5B), a live probe (5C), and a repository-configuration audit (5D) that together yield a binary **operational / not-operational** verdict. When asked to check, change, or troubleshoot the CI/CD workflows, **drive that methodology** - audit the workflow files and repository configuration against the section-4 contract, trace the affected scenarios, and report the verdict with `file:line` citations - rather than reasoning about the YAML ad hoc. A workflow change is not done until it has been re-validated this way (probe without publishing). - -## Project Structure - -- **LanguageTags** (`LanguageTags/LanguageTags.csproj`) - - Core library project, published as NuGet `ptr727.LanguageTags` - - Target framework: .NET 10.0, AOT compatible (`true`) -- **LanguageTagsCreate** (`LanguageTagsCreate/LanguageTagsCreate.csproj`) - - CLI codegen tool. Downloads ISO 639-2/3 + RFC 5646 / BCP 47 data from official sources (Library of Congress, SIL, IANA), converts to JSON, and generates C# data files. Invoked by [`.github/workflows/run-codegen-pull-request-task.yml`](./.github/workflows/run-codegen-pull-request-task.yml). -- **LanguageTagsTests** (`LanguageTagsTests/LanguageTagsTests.csproj`) - - xUnit v3 test suite. Assertions via AwesomeAssertions. -- **`LanguageData/`** - embedded ISO/RFC data files refreshed by the codegen tool. -- **Build configuration**: - - Common MSBuild properties (`TargetFramework`, `Nullable`, `ImplicitUsings`, `AnalysisLevel`, etc.) live in `Directory.Build.props` at the solution root. Do not duplicate these in individual `.csproj` files - only add a property to a `.csproj` when it is project-specific or overrides the shared default. - - All NuGet package versions are centralized in `Directory.Packages.props`. `PackageReference` elements in `.csproj` files must not include a `Version` attribute. Asset metadata (`PrivateAssets`, `IncludeAssets`) stays in the `.csproj` `PackageReference` element. -- **Style guide**: [`CODESTYLE.md`](./CODESTYLE.md) for C# code conventions; [`.github/copilot-instructions.md`](./.github/copilot-instructions.md) for the Copilot review runbook. - -## Key Public API - -- `LanguageTag` - main entry point for parse/build/normalize/validate operations. -- `LanguageTagBuilder` - fluent builder for constructing tags. -- `LanguageLookup` - language code conversion and matching (IETF <-> ISO). -- `Iso6392Data`, `Iso6393Data`, `Rfc5646Data` - language data records (`Create()`, `FromDataAsync()`, `FromJsonAsync()`). -- `ExtensionTag`, `PrivateUseTag` - sealed records for extension and private-use subtags. -- `LogOptions` - static class for configuring library-wide logging via `ILoggerFactory`. - -Internal: `LanguageTagParser` - use `LanguageTag.Parse()` instead. - -## Library API Conventions - -Contract rules for the public API; honor them when changing or reviewing library code. - -- **Construction is factory-only.** Build tags with the static factory methods (`Parse`, `TryParse`, `ParseOrDefault`, `ParseAndNormalize`, `FromLanguage`/`FromLanguageRegion`/`FromLanguageScriptRegion`, `CreateBuilder`) or the fluent `LanguageTagBuilder`. Constructors are internal - do not expose them. -- **Tags are immutable.** Properties have internal setters and collections are exposed as `ImmutableArray`; once constructed a tag does not change. `Normalize()` returns a new copy, it does not mutate in place. -- **Parse, validate, and normalize are distinct.** `Parse` returns null on failure; prefer `TryParse` or `ParseOrDefault` (falls back to `und`) for safe parsing. `Normalize()` does **not** validate - call `Validate()` separately when validity matters. `LanguageTagParser` is internal; all parsing goes through `LanguageTag`'s static methods. -- **Normalization casing follows RFC 5646.** Language, extended-language, variant, extension, and private-use subtags lowercase; script Title case; region UPPERCASE. -- **Tag semantics.** Grandfathered tags are auto-converted to their preferred values during parsing; all tag comparisons are case-insensitive; private-use tags use the `x-` prefix; extensions use single-character prefixes (except `x`, reserved for private use). -- **Accuracy caveat.** The parsing/normalization logic may be incomplete or inaccurate per RFC 5646; verify results for the specific use case, and add a test when fixing a discrepancy. diff --git a/CODESTYLE.md b/CODESTYLE.md deleted file mode 100644 index e145e50..0000000 --- a/CODESTYLE.md +++ /dev/null @@ -1,341 +0,0 @@ -# Code Style and Formatting Rules - -This is the single code-style guide for the repo. The **General** section applies repo-wide, and the **.NET** section covers the C# code. The formatting rules the editor and CI enforce live in [`.editorconfig`](./.editorconfig). - -Cross-cutting *process* rules (PR titles, branching, US English, markdown style, comments philosophy, workflow YAML, PR review etiquette) live in [AGENTS.md](./AGENTS.md) and are not repeated here. - -## General - -These rules apply repo-wide. - -### Tooling Names and Casing - -Use each tool's official casing in task labels, docs, and prose - `.NET` (not `.Net`), `CSharpier`, `NuGet`, `actionlint`. Don't invent personal variants. - -### Clean-Compile Verification - -The **clean-compile** verification is the combination of build, formatter, linter, and code-analysis tools that must report clean before a commit. It is exposed as **named** VS Code tasks; the concrete names live in the .NET section below. - -- **Run it after every code change.** The clean-compile must pass before you commit, and CI runs the same checks as a backstop. -- **The named task definition is the canonical spec** - its exact command sequence, arguments, and strictness. You may run it through the VS Code task **or** by invoking the equivalent native commands directly; either is fine **only if the sequence, arguments, and strictness match exactly**. No shortcuts and no more-lenient options (for example, never drop `--verify-no-changes` or loosen a `--severity`). -- **A local commit/pre-commit gate is the repo's choice.** CI is the authoritative backstop regardless. A local gate is an additive convenience: here Husky.Net runs the .NET clean-compile checks (with `dotnet husky run` as a style step). Keeping a working gate is not drift. -- **Keep the editor task, the local hook, and CI in sync.** The same formatter and style checks run in three places from the same config: the VS Code clean-compile task, the local commit hook, and the CI lint job. The editor task and hook *apply* the formatter (CSharpier rewrites files) and verify style; CI *verifies* both and fails if the code is not formatted or `dotnet format` reports changes. CI is authoritative because a local hook can be bypassed or never installed. When you change a tool version, an argument, or a rule, change all three together so they cannot diverge. - -### Analyzer Diagnostics and Suppressions - -- **Don't silence diagnostics to make the build pass.** Never relax analyzer or linter severities or mute newly surfaced warnings - fix them. -- **Suppress only genuine false-positives or deliberate, documented exceptions**, always at the **narrowest scope that fits**, in this order of preference: - 1. An **in-code annotation on the specific symbol**, with a justification - the language's attribute/comment form, never a blanket pragma spanning a region. - 2. The **owning project's local config** when the exception is project-wide for one project (e.g. a test project's own `.editorconfig`). - 3. The **root / shared config** only when the suppression is genuinely applicable to **every** project in the repo. -- **Never blanket-relax a batch of rules project-wide** to get a port to build. The suppression mechanics (which attribute, which config key) are in the .NET section. - -### Markdown and Spelling - -These apply repo-wide, in every directory: - -1. **Markdown linting**: All `.md` files must be lint-clean (error and warning free) against [`.markdownlint-cli2.jsonc`](./.markdownlint-cli2.jsonc) at the repo root, the single source of truth. The davidanson `markdownlint` VS Code extension and a command-line `markdownlint-cli2` both read it, and **CI enforces it** (the `lint` job runs `markdownlint-cli2`), so the editor, CLI, and CI stay in lock-step. Rules it deliberately disables (e.g. `MD013` line-length, `MD033` inline HTML) are **intentional** - do not "fix" them. Fix violations at the source rather than disabling rules. -2. **Spelling**: Spelling must be clean in **US English** (the repo-wide convention - see [AGENTS.md](./AGENTS.md)). [`cspell.json`](./cspell.json) at the repo root holds the workspace config the CSpell VS Code extension and the CLI both read; it excludes the embedded multilingual data (`LanguageData/**`, the generated `*Data.cs`, build output) so that data is not flagged. **CI spell-checks the user-facing docs** (`README.md`, `HISTORY.md`) via the `lint` job; a whole-tree check stays in the editor. Add a genuine project term to `cspell.json` `words`; fix a real misspelling at the source. - -## .NET - -This is the style guide for the **.NET projects** in this repo. - -### Build Requirements - -#### Zero Warnings Policy - -**CRITICAL**: All builds must complete without warnings. The project enforces this through: - -1. **The `.NET Format` clean-compile task** (see [Clean-Compile Verification](#clean-compile-verification)) - - The .NET clean-compile is the **`.NET Format`** VS Code task, which chains `CSharpier Format` -> `.NET Build` -> `dotnet format style --verify-no-changes`. These three task definitions live in [`.vscode/tasks.json`](./.vscode/tasks.json). - - After any code change it must pass before commit. Run the `.NET Format` task. To run it natively instead, reproduce that task chain from [`.vscode/tasks.json`](./.vscode/tasks.json) exactly - `CSharpier Format`, then `.NET Build`, then the `dotnet format style --verify-no-changes --severity=info ...` verify - without dropping or loosening any argument (tasks.json is the canonical command spec). Bare `dotnet format` alone, skipping CSharpier or the build, is not sufficient. - -2. **Analyzer configuration** - - `true` with `latest-all` and `All` (full analyzer set enabled) - - `true` - any diagnostic surfaced as a warning fails the build, so it must be fixed or deliberately suppressed, not left to accumulate (see [Analyzer Diagnostics and Suppressions](#analyzer-diagnostics-and-suppressions)) - -3. **CI lint backstop** - - CI runs the clean-compile checks on every PR as the authoritative backstop - - Git hooks are optional. A local runner (Husky.Net) can enforce the checks pre-commit, but CI is the gate that matters - -#### Build Tasks - -Available VS Code tasks (run them from VS Code's task runner - **Terminal -> Run Task** - or an agent's task-running tool). The first three are the clean-compile tasks (the canonical command spec), the rest are convenience: - -- `.NET Build`: Build with diagnostic verbosity *(clean-compile)* -- `CSharpier Format`: Auto-format code with CSharpier *(clean-compile)* -- `.NET Format`: Run CSharpier and build, then verify formatting and style with `--verify-no-changes` *(clean-compile; the task to run after edits)* - -### Tooling and Editor - -#### Code Formatting and Tooling - -1. **CSharpier**: Primary code formatter - - Invoked by the `CSharpier Format` task / `dotnet csharpier format --log-level=debug .` -2. **dotnet format**: Style verification - - Verify no changes: `dotnet format style --verify-no-changes --severity=info --verbosity=detailed` -3. **Other tools** - - `dotnet-outdated-tool`: Dependency update checks - - Nerdbank.GitVersioning: Version management - -CI is the authoritative lint backstop. Local pre-commit hooks are optional - wire Husky.Net (or another runner) if you want local enforcement. - -#### Editor Baseline - -1. **Required VS Code extensions**: CSharpier, markdownlint, CSpell -2. **VS Code settings**: Use the workspace settings without overrides - -### Coding Standards and Conventions - -Note: Code snippets are illustrative examples only. Replace namespaces/types to match your project. - -#### C# Language Features - -1. **File-scoped namespaces** - - ```csharp - namespace Example.Project.Library; - ``` - -2. **Nullable reference types**: Enabled (`enable`) - - Use nullable annotations appropriately - - Use `required` for mandatory properties - -3. **Modern C# features**: Prefer modern language constructs - - Primary constructors when appropriate - - Top-level statements for console apps - - Pattern matching over traditional checks - - Collection expressions when types loosely match - - Extension methods - the classic `this`-parameter form, or an `extension() { ... }` block on C# 14+ - - Implicit object creation when type is apparent - - Range and index operators - -4. **Expression-bodied members**: Use for applicable members - - Methods, properties, accessors, operators, lambdas, local functions - -5. **`var` keyword**: Do NOT use `var` (always use explicit types) - - ```csharp - // Correct - int count = 42; - string name = "test"; - - // Incorrect - var count = 42; - var name = "test"; - ``` - -#### Naming Conventions - -1. **Private fields**: underscore prefix with camelCase - - ```csharp - private readonly HttpClient _httpClient; - private int _counter; - ``` - -2. **Static fields**: `s_` prefix with camelCase - - ```csharp - private static int s_instanceCount; - ``` - -3. **Constants**: PascalCase - - ```csharp - private const int MaxRetries = 3; - ``` - -#### Code Structure - -1. **Global usings**: Use `GlobalUsings.cs` for common namespaces - - ```csharp - global using System; - global using System.Net.Http; - global using System.Threading.Tasks; - global using Serilog; - ``` - -2. **Usings placement**: Outside namespace, sorted with `System` directives first - - ```csharp - using System.CommandLine; - using System.Runtime.CompilerServices; - using Example.Project.Library; - - namespace Example.Project.Console; - ``` - -3. **Braces**: Allman style - - ```csharp - public void Method() - { - if (condition) - { - // code - } - } - ``` - -4. **Indentation** - - C# files: 4 spaces - - XML/csproj files: 2 spaces - - YAML files: 2 spaces - - JSON files: 4 spaces - -5. **Line endings** - - C#, XML, YAML, JSON, Windows scripts: CRLF - - Linux scripts (`.sh`): LF - -6. **`#region`**: Do not use regions. Prefer logical file/folder/namespace organization. -7. **Member ordering (StyleCop SA1201)**: const -> static readonly -> static fields -> instance readonly fields -> instance fields -> constructors -> public (events -> properties -> indexers -> methods -> operators) -> non-public in same order -> nested types - -#### Comments and Documentation - -1. **XML documentation** - - `true` - - Missing XML comments for public APIs are suppressed (`.editorconfig`) - - Must document all public surfaces. - - Single-line summaries, additional details in remarks, document input parameters, return values, exceptions, and add crefs - - ```csharp - /// - /// Example of a single line summary. - /// - /// - /// Additional important details about usage. - /// Multiple lines if needed. - /// - /// - /// The quote category to request - /// - /// - /// A that can be used to cancel the request. - /// - /// - /// A containing the quote text. - /// - /// - /// Thrown when is not a supported value. - /// - public async Task GetQuoteOfTheDayAsync(string category, CancellationToken cancellationToken) {} - ``` - -#### Analyzer Suppressions (.NET) - -Follow the scope hierarchy in [Analyzer Diagnostics and Suppressions](#analyzer-diagnostics-and-suppressions). .NET mechanics, narrowest first: - -- **Never use `#pragma warning disable`** to silence an analyzer. -- **Symbol-scoped**: a `[System.Diagnostics.CodeAnalysis.SuppressMessage(...)]` attribute with a `Justification`, on the specific member or type: - - ```csharp - [System.Diagnostics.CodeAnalysis.SuppressMessage( - "Design", - "CA1034:Nested types should not be visible", - Justification = "https://github.com/dotnet/sdk/issues/51681" - )] - ``` - -- **Project-scoped** (e.g. a test project): a `dotnet_diagnostic..severity` entry in *that project's own* `.editorconfig`, with a comment explaining why. -- **Repo-wide**: a `dotnet_diagnostic..severity` entry in the root `.editorconfig`, only when the rule is genuinely not applicable to any project. Relaxing a batch of `CA*` rules (or `dotnet_analyzer_diagnostic.severity`) to push the build through is exactly what this forbids. - -#### Error Handling and Logging - -1. **Serilog logging**: Use structured logging - - ```csharp - logger.Error(exception, "{Function}", function); - ``` - -2. **Library log configuration**: Libraries must expose logging configuration - - Provide options or settings to supply an `ILoggerFactory` and/or `ILogger` - - Offer a global fallback logger for static usage when needed - -3. **CallerMemberName**: Use for automatic function name tracking - - ```csharp - public bool LogAndPropagate( - Exception exception, - [CallerMemberName] string function = "unknown" - ) - ``` - -4. **Logger extensions**: Use `Extensions.cs` for logger and other extension methods - - ```csharp - extension(ILogger logger) - { - public bool LogAndPropagate(Exception exception, ...) { } - } - ``` - -5. **Exceptions**: Do not swallow exceptions; log and rethrow or translate to a domain-specific exception - -#### Code Patterns - -1. **Guard clauses**: Prefer early returns for validation and error handling -2. **Async all the way**: Avoid blocking calls (`.Result`, `.Wait()`); use `async`/`await` -3. **Cancellation tokens**: Accept `CancellationToken` as the last parameter and pass it through -4. **ConfigureAwait**: In library code, use `ConfigureAwait(false)` unless context is required - - Do not call `ConfigureAwait(false)` in xUnit tests (see xUnit1030) -5. **Disposables**: Use `await using` for async disposables; prefer `using` declarations -6. **LINQ vs loops**: Use LINQ for clarity, loops for hot paths or allocations -7. **HTTP**: Reuse `HttpClient` via factory; avoid per-request instantiation -8. **Collections**: Prefer `IReadOnlyList`/`IReadOnlyCollection` for public APIs -9. **Immutability**: Prefer immutable records; use init-only setters when records are not suitable; prefer immutable or frozen collections for read-only data -10. **Exceptions as control flow**: Avoid using exceptions for expected flow -11. **Sealing classes**: Seal classes that are not designed for inheritance -12. **Read-only data**: Use immutable or frozen collections for read-only data sets -13. **Lazy initialization**: Use `Lazy` for static, thread-safe instantiation (e.g., logger factory, HTTP factory) - -#### Testing Conventions - -1. **Framework**: xUnit with AwesomeAssertions - - ```csharp - [Fact] - public void MethodName_Scenario_ExpectedBehavior() - { - // Arrange - int expected = 42; - - // Act - int actual = GetValue(); - - // Assert - actual.Should().Be(expected); - } - ``` - -2. **Organization**: Arrange-Act-Assert pattern -3. **Naming**: Descriptive names with underscores -4. **Theory tests**: Use `[Theory]` with `[InlineData]` - -### Project Configuration - -1. **Target framework**: .NET 10.0 (`net10.0`) - -2. **AOT compatibility** - - `true` - - `true` - -3. **Assembly information** - - Use semantic versioning - - Include SourceLink: `true` - - Embed untracked sources: `true` - -4. **Internal visibility**: Use `InternalsVisibleTo` for test and benchmark access (adapt the project names to your repo's test/benchmark projects) - - ```xml - - - - - ``` - -### Best Practices - -1. **Code reviews**: All changes go through pull requests diff --git a/Directory.Build.props b/Directory.Build.props deleted file mode 100644 index da26fe3..0000000 --- a/Directory.Build.props +++ /dev/null @@ -1,14 +0,0 @@ - - - net10.0 - enable - enable - latest-all - All - true - true - $(MSBuildThisFileDirectory).artifacts - false - true - - diff --git a/Directory.Packages.props b/Directory.Packages.props deleted file mode 100644 index 91b1f2c..0000000 --- a/Directory.Packages.props +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/HISTORY.md b/HISTORY.md deleted file mode 100644 index 7082769..0000000 --- a/HISTORY.md +++ /dev/null @@ -1,29 +0,0 @@ -# LanguageTags - -C# .NET library for ISO 639-2, ISO 639-3, RFC 5646 / BCP 47 language tags. - -## Release History - -- Version 1.5: - - Reverted the shared project-template CI/CD adoption. Tracking the template took high ongoing effort, produced frequent build and release failures, and returned little for a single-library repo. - - Replaced it with a branch-scoped, self-sufficient workflow set written for this project: one run targets one branch, the version is computed once, and the package publishes itself when its shipped content changes (source, embedded data, version floor, or build configuration). Dependency and GitHub Actions bumps are excluded, so routine churn does not republish. - - Hardened the repository setup and the workflows: branch rulesets, settings, and required secret names are codified as code in `repo-config/`; NuGet publishing is keyless via OIDC trusted publishing, with no long-lived API key; and the contract plus an audit methodology are documented in `WORKFLOW.md`. - - No library API changes. -- Version 1.4: - - Added UN M.49 region containment support sourced from Unicode CLDR. - - Added `LanguageLookup.IsMatch(prefix, tag, regionContainment)` so a UN M.49 region group matches a contained region, e.g. `es-419` matches `es-MX`. - - Added `LanguageLookup.ExpandRegion()` to expand a region into its containing UN M.49 groups. - - Fixed parsing of a numeric region following the language, e.g. `es-419` now parses `419` as a region not an extended language. -- Version 1.3: - - Dependency, codegen, CI, and project template maintenance. -- Version 1.2: - - Refactored the project to follow standard patterns used across other projects. - - Added logging support configured through `LogOptions.SetFactory(ILoggerFactory)`. - - ⚠️ IO API's are async only, e.g. `LoadJson()` -> `async FromJsonAsync()`. - - ⚠️ Collection instantiation follows the `From` pattern, e.g. `LoadData()` -> `FromDataAsync()`. - - IO now streams directly to/from code/files without intermediate text buffers. -- Version 1.1: - - .NET 10 and AOT support. - - Refactored public surfaces to minimize internals exposure. -- Version 1.0: - - Initial standalone release. diff --git a/LICENSE b/LICENSE deleted file mode 100644 index c07453d..0000000 --- a/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2026 Pieter Viljoen - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/LanguageData/iso6392 b/LanguageData/iso6392 deleted file mode 100644 index 7125470..0000000 --- a/LanguageData/iso6392 +++ /dev/null @@ -1,487 +0,0 @@ -aar||aa|Afar|afar -abk||ab|Abkhazian|abkhaze -ace|||Achinese|aceh -ach|||Acoli|acoli -ada|||Adangme|adangme -ady|||Adyghe; Adygei|adyghé -afa|||Afro-Asiatic languages|afro-asiatiques, langues -afh|||Afrihili|afrihili -afr||af|Afrikaans|afrikaans -ain|||Ainu|aïnou -aka||ak|Akan|akan -akk|||Akkadian|akkadien -alb|sqi|sq|Albanian|albanais -ale|||Aleut|aléoute -alg|||Algonquian languages|algonquines, langues -alt|||Southern Altai|altai du Sud -amh||am|Amharic|amharique -ang|||English, Old (ca.450-1100)|anglo-saxon (ca.450-1100) -anp|||Angika|angika -apa|||Apache languages|apaches, langues -ara||ar|Arabic|arabe -arc|||Official Aramaic (700-300 BCE); Imperial Aramaic (700-300 BCE)|araméen d'empire (700-300 BCE) -arg||an|Aragonese|aragonais -arm|hye|hy|Armenian|arménien -arn|||Mapudungun; Mapuche|mapudungun; mapuche; mapuce -arp|||Arapaho|arapaho -art|||Artificial languages|artificielles, langues -arw|||Arawak|arawak -asm||as|Assamese|assamais -ast|||Asturian; Bable; Leonese; Asturleonese|asturien; bable; léonais; asturoléonais -ath|||Athapascan languages|athapascanes, langues -aus|||Australian languages|australiennes, langues -ava||av|Avaric|avar -ave||ae|Avestan|avestique -awa|||Awadhi|awadhi -aym||ay|Aymara|aymara -aze||az|Azerbaijani|azéri -bad|||Banda languages|banda, langues -bai|||Bamileke languages|bamiléké, langues -bak||ba|Bashkir|bachkir -bal|||Baluchi|baloutchi -bam||bm|Bambara|bambara -ban|||Balinese|balinais -baq|eus|eu|Basque|basque -bas|||Basa|basa -bat|||Baltic languages|baltes, langues -bej|||Beja; Bedawiyet|bedja -bel||be|Belarusian|biélorusse -bem|||Bemba|bemba -ben||bn|Bengali|bengali -ber|||Berber languages|berbères, langues -bho|||Bhojpuri|bhojpuri -bih|||Bihari languages|langues biharis -bik|||Bikol|bikol -bin|||Bini; Edo|bini; edo -bis||bi|Bislama|bichlamar -bla|||Siksika|blackfoot -bnt|||Bantu languages|bantou, langues -bos||bs|Bosnian|bosniaque -bra|||Braj|braj -bre||br|Breton|breton -btk|||Batak languages|batak, langues -bua|||Buriat|bouriate -bug|||Buginese|bugi -bul||bg|Bulgarian|bulgare -bur|mya|my|Burmese|birman -byn|||Blin; Bilin|blin; bilen -cad|||Caddo|caddo -cai|||Central American Indian languages|amérindiennes de L'Amérique centrale, langues -car|||Galibi Carib|karib; galibi; carib -cat||ca|Catalan; Valencian|catalan; valencien -cau|||Caucasian languages|caucasiennes, langues -ceb|||Cebuano|cebuano -cel|||Celtic languages|celtiques, langues; celtes, langues -cha||ch|Chamorro|chamorro -chb|||Chibcha|chibcha -che||ce|Chechen|tchétchène -chg|||Chagatai|djaghataï -chi|zho|zh|Chinese|chinois -chk|||Chuukese|chuuk -chm|||Mari|mari -chn|||Chinook jargon|chinook, jargon -cho|||Choctaw|choctaw -chp|||Chipewyan; Dene Suline|chipewyan -chr|||Cherokee|cherokee -chu||cu|Church Slavic; Old Slavonic; Church Slavonic; Old Bulgarian; Old Church Slavonic|slavon d'église; vieux slave; slavon liturgique; vieux bulgare -chv||cv|Chuvash|tchouvache -chy|||Cheyenne|cheyenne -cmc|||Chamic languages|chames, langues -cnr|||Montenegrin|monténégrin -cop|||Coptic|copte -cor||kw|Cornish|cornique -cos||co|Corsican|corse -cpe|||Creoles and pidgins, English based|créoles et pidgins basés sur l'anglais -cpf|||Creoles and pidgins, French-based|créoles et pidgins basés sur le français -cpp|||Creoles and pidgins, Portuguese-based|créoles et pidgins basés sur le portugais -cre||cr|Cree|cree -crh|||Crimean Tatar; Crimean Turkish|tatar de Crimé -crp|||Creoles and pidgins|créoles et pidgins -csb|||Kashubian|kachoube -cus|||Cushitic languages|couchitiques, langues -cze|ces|cs|Czech|tchèque -dak|||Dakota|dakota -dan||da|Danish|danois -dar|||Dargwa|dargwa -day|||Land Dayak languages|dayak, langues -del|||Delaware|delaware -den|||Slave (Athapascan)|esclave (athapascan) -dgr|||Tlicho; Dogrib|tlicho; dogrib -din|||Dinka|dinka -div||dv|Divehi; Dhivehi; Maldivian|maldivien -doi|||Dogri|dogri -dra|||Dravidian languages|dravidiennes, langues -dsb|||Lower Sorbian|bas-sorabe -dua|||Duala|douala -dum|||Dutch, Middle (ca.1050-1350)|néerlandais moyen (ca. 1050-1350) -dut|nld|nl|Dutch; Flemish|néerlandais; flamand -dyu|||Dyula|dioula -dzo||dz|Dzongkha|dzongkha -efi|||Efik|efik -egy|||Egyptian (Ancient)|égyptien -eka|||Ekajuk|ekajuk -elx|||Elamite|élamite -eng||en|English|anglais -enm|||English, Middle (1100-1500)|anglais moyen (1100-1500) -epo||eo|Esperanto|espéranto -est||et|Estonian|estonien -ewe||ee|Ewe|éwé -ewo|||Ewondo|éwondo -fan|||Fang|fang -fao||fo|Faroese|féroïen -fat|||Fanti|fanti -fij||fj|Fijian|fidjien -fil|||Filipino; Pilipino|filipino; pilipino -fin||fi|Finnish|finnois -fiu|||Finno-Ugrian languages|finno-ougriennes, langues -fon|||Fon|fon -fre|fra|fr|French|français -frm|||French, Middle (ca.1400-1600)|français moyen (1400-1600) -fro|||French, Old (842-ca.1400)|français ancien (842-ca.1400) -frr|||Northern Frisian|frison septentrional -frs|||Eastern Frisian|frison oriental -fry||fy|Western Frisian|frison occidental -ful||ff|Fulah|peul -fur|||Friulian|frioulan -gaa|||Ga|ga -gay|||Gayo|gayo -gba|||Gbaya|gbaya -gem|||Germanic languages|germaniques, langues -geo|kat|ka|Georgian|géorgien -ger|deu|de|German|allemand -gez|||Geez|guèze -gil|||Gilbertese|kiribati -gla||gd|Gaelic; Scottish Gaelic|gaélique; gaélique écossais -gle||ga|Irish|irlandais -glg||gl|Galician|galicien -glv||gv|Manx|manx; mannois -gmh|||German, Middle High (ca.1050-1500)|allemand, moyen haut (ca. 1050-1500) -goh|||German, Old High (ca.750-1050)|allemand, vieux haut (ca. 750-1050) -gon|||Gondi|gond -gor|||Gorontalo|gorontalo -got|||Gothic|gothique -grb|||Grebo|grebo -grc|||Greek, Ancient (to 1453)|grec ancien (jusqu'à 1453) -gre|ell|el|Modern Greek (1453-)|grec moderne (1453-) -grn||gn|Guarani|guarani -gsw|||Swiss German; Alemannic; Alsatian|suisse alémanique; alémanique; alsacien -guj||gu|Gujarati|goudjrati -gwi|||Gwich'in|gwich'in -hai|||Haida|haida -hat||ht|Haitian; Haitian Creole|haïtien; créole haïtien -hau||ha|Hausa|haoussa -haw|||Hawaiian|hawaïen -heb||he|Hebrew|hébreu -her||hz|Herero|herero -hil|||Hiligaynon|hiligaynon -him|||Himachali languages; Western Pahari languages|langues himachalis; langues paharis occidentales -hin||hi|Hindi|hindi -hit|||Hittite|hittite -hmn|||Hmong; Mong|hmong -hmo||ho|Hiri Motu|hiri motu -hrv||hr|Croatian|croate -hsb|||Upper Sorbian|haut-sorabe -hun||hu|Hungarian|hongrois -hup|||Hupa|hupa -iba|||Iban|iban -ibo||ig|Igbo|igbo -ice|isl|is|Icelandic|islandais -ido||io|Ido|ido -iii||ii|Sichuan Yi; Nuosu|yi de Sichuan -ijo|||Ijo languages|ijo, langues -iku||iu|Inuktitut|inuktitut -ile||ie|Interlingue; Occidental|interlingue -ilo|||Iloko|ilocano -ina||ia|Interlingua (International Auxiliary Language Association)|interlingua (langue auxiliaire internationale) -inc|||Indic languages|indo-aryennes, langues -ind||id|Indonesian|indonésien -ine|||Indo-European languages|indo-européennes, langues -inh|||Ingush|ingouche -ipk||ik|Inupiaq|inupiaq -ira|||Iranian languages|iraniennes, langues -iro|||Iroquoian languages|iroquoises, langues -ita||it|Italian|italien -jav||jv|Javanese|javanais -jbo|||Lojban|lojban -jpn||ja|Japanese|japonais -jpr|||Judeo-Persian|judéo-persan -jrb|||Judeo-Arabic|judéo-arabe -kaa|||Kara-Kalpak|karakalpak -kab|||Kabyle|kabyle -kac|||Kachin; Jingpho|kachin; jingpho -kal||kl|Kalaallisut; Greenlandic|groenlandais -kam|||Kamba|kamba -kan||kn|Kannada|kannada -kar|||Karen languages|karen, langues -kas||ks|Kashmiri|kashmiri -kau||kr|Kanuri|kanouri -kaw|||Kawi|kawi -kaz||kk|Kazakh|kazakh -kbd|||Kabardian|kabardien -kha|||Khasi|khasi -khi|||Khoisan languages|khoïsan, langues -khm||km|Central Khmer|khmer central -kho|||Khotanese; Sakan|khotanais; sakan -kik||ki|Kikuyu; Gikuyu|kikuyu -kin||rw|Kinyarwanda|rwanda -kir||ky|Kirghiz; Kyrgyz|kirghiz -kmb|||Kimbundu|kimbundu -kok|||Konkani|konkani -kom||kv|Komi|kom -kon||kg|Kongo|kongo -kor||ko|Korean|coréen -kos|||Kosraean|kosrae -kpe|||Kpelle|kpellé -krc|||Karachay-Balkar|karatchai balkar -krl|||Karelian|carélien -kro|||Kru languages|krou, langues -kru|||Kurukh|kurukh -kua||kj|Kuanyama; Kwanyama|kuanyama; kwanyama -kum|||Kumyk|koumyk -kur||ku|Kurdish|kurde -kut|||Kutenai|kutenai -lad|||Ladino|judéo-espagnol -lah|||Lahnda|lahnda -lam|||Lamba|lamba -lao||lo|Lao|lao -lat||la|Latin|latin -lav||lv|Latvian|letton -lez|||Lezghian|lezghien -lim||li|Limburgan; Limburger; Limburgish|limbourgeois -lin||ln|Lingala|lingala -lit||lt|Lithuanian|lituanien -lol|||Mongo|mongo -loz|||Lozi|lozi -ltz||lb|Luxembourgish; Letzeburgesch|luxembourgeois -lua|||Luba-Lulua|luba-lulua -lub||lu|Luba-Katanga|luba-katanga -lug||lg|Ganda|ganda -lui|||Luiseno|luiseno -lun|||Lunda|lunda -luo|||Luo (Kenya and Tanzania)|luo (Kenya et Tanzanie) -lus|||Lushai|lushai -mac|mkd|mk|Macedonian|macédonien -mad|||Madurese|madourais -mag|||Magahi|magahi -mah||mh|Marshallese|marshall -mai|||Maithili|maithili -mak|||Makasar|makassar -mal||ml|Malayalam|malayalam -man|||Mandingo|mandingue -mao|mri|mi|Maori|maori -map|||Austronesian languages|austronésiennes, langues -mar||mr|Marathi|marathe -mas|||Masai|massaï -may|msa|ms|Malay|malais -mdf|||Moksha|moksa -mdr|||Mandar|mandar -men|||Mende|mendé -mga|||Irish, Middle (900-1200)|irlandais moyen (900-1200) -mic|||Mi'kmaq; Micmac|mi'kmaq; micmac -min|||Minangkabau|minangkabau -mis|||Uncoded languages|langues non codées -mkh|||Mon-Khmer languages|môn-khmer, langues -mlg||mg|Malagasy|malgache -mlt||mt|Maltese|maltais -mnc|||Manchu|mandchou -mni|||Manipuri|manipuri -mno|||Manobo languages|manobo, langues -moh|||Mohawk|mohawk -mon||mn|Mongolian|mongol -mos|||Mossi|moré -mul|||Multiple languages|multilingue -mun|||Munda languages|mounda, langues -mus|||Creek|muskogee -mwl|||Mirandese|mirandais -mwr|||Marwari|marvari -myn|||Mayan languages|maya, langues -myv|||Erzya|erza -nah|||Nahuatl languages|nahuatl, langues -nai|||North American Indian languages|nord-amérindiennes, langues -nap|||Neapolitan|napolitain -nau||na|Nauru|nauruan -nav||nv|Navajo; Navaho|navaho -nbl||nr|South Ndebele|ndébélé du Sud -nde||nd|North Ndebele|ndébélé du Nord -ndo||ng|Ndonga|ndonga -nds|||Low German; Low Saxon; German, Low; Saxon, Low|bas allemand; bas saxon; allemand, bas; saxon, bas -nep||ne|Nepali|népalais -new|||Nepal Bhasa; Newar; Newari|nepal bhasa; néwar; newari -nia|||Nias|nias -nic|||Niger-Kordofanian languages|nigéro-kordofaniennes, langues -niu|||Niuean|niué -nno||nn|Norwegian Nynorsk|norvégien nynorsk -nob||nb|Norwegian Bokmål|norvégien bokmål -nog|||Nogai|nogaï; nogay -non|||Norse, Old|norrois, vieux -nor||no|Norwegian|norvégien -nqo|||N'Ko|n'ko -nso|||Pedi; Sepedi; Northern Sotho|pedi; sepedi; sotho du Nord -nub|||Nubian languages|nubiennes, langues -nwc|||Classical Newari; Old Newari; Classical Nepal Bhasa|newari classique -nya||ny|Chichewa; Chewa; Nyanja|chichewa; chewa; nyanja -nym|||Nyamwezi|nyamwezi -nyn|||Nyankole|nyankolé -nyo|||Nyoro|nyoro -nzi|||Nzima|nzema -oci||oc|Occitan (post 1500)|occitan (après 1500) -oji||oj|Ojibwa|ojibwa -ori||or|Oriya|oriya -orm||om|Oromo|galla -osa|||Osage|osage -oss||os|Ossetian; Ossetic|ossète -ota|||Turkish, Ottoman (1500-1928)|turc ottoman (1500-1928) -oto|||Otomian languages|otomi, langues -paa|||Papuan languages|papoues, langues -pag|||Pangasinan|pangasinan -pal|||Pahlavi|pahlavi -pam|||Pampanga; Kapampangan|pampangan -pan||pa|Panjabi; Punjabi|pendjabi -pap|||Papiamento|papiamento -pau|||Palauan|palau -peo|||Persian, Old (ca.600-400 B.C.)|perse, vieux (ca. 600-400 av. J.-C.) -per|fas|fa|Persian|persan -phi|||Philippine languages|philippines, langues -phn|||Phoenician|phénicien -pli||pi|Pali|pali -pol||pl|Polish|polonais -pon|||Pohnpeian|pohnpei -por||pt|Portuguese|portugais -pra|||Prakrit languages|prâkrit, langues -pro|||Provençal, Old (to 1500); Occitan, Old (to 1500)|provençal ancien (jusqu'à 1500); occitan ancien (jusqu'à 1500) -pus||ps|Pushto; Pashto|pachto -qaa-qtz|||Reserved for local use|réservée à l'usage local -que||qu|Quechua|quechua -raj|||Rajasthani|rajasthani -rap|||Rapanui|rapanui -rar|||Rarotongan; Cook Islands Maori|rarotonga; maori des îles Cook -roa|||Romance languages|romanes, langues -roh||rm|Romansh|romanche -rom|||Romany|tsigane -rum|ron|ro|Romanian; Moldavian; Moldovan|roumain; moldave -run||rn|Rundi|rundi -rup|||Aromanian; Arumanian; Macedo-Romanian|aroumain; macédo-roumain -rus||ru|Russian|russe -sad|||Sandawe|sandawe -sag||sg|Sango|sango -sah|||Yakut|iakoute -sai|||South American Indian languages|sud-amérindiennes, langues -sal|||Salishan languages|salishennes, langues -sam|||Samaritan Aramaic|samaritain -san||sa|Sanskrit|sanskrit -sas|||Sasak|sasak -sat|||Santali|santal -scn|||Sicilian|sicilien -sco|||Scots|écossais -sel|||Selkup|selkoupe -sem|||Semitic languages|sémitiques, langues -sga|||Irish, Old (to 900)|irlandais ancien (jusqu'à 900) -sgn|||Sign Languages|langues des signes -shn|||Shan|chan -sid|||Sidamo|sidamo -sin||si|Sinhala; Sinhalese|singhalais -sio|||Siouan languages|sioux, langues -sit|||Sino-Tibetan languages|sino-tibétaines, langues -sla|||Slavic languages|slaves, langues -slo|slk|sk|Slovak|slovaque -slv||sl|Slovenian|slovène -sma|||Southern Sami|sami du Sud -sme||se|Northern Sami|sami du Nord -smi|||Sami languages|sames, langues -smj|||Lule Sami|sami de Lule -smn|||Inari Sami|sami d'Inari -smo||sm|Samoan|samoan -sms|||Skolt Sami|sami skolt -sna||sn|Shona|shona -snd||sd|Sindhi|sindhi -snk|||Soninke|soninké -sog|||Sogdian|sogdien -som||so|Somali|somali -son|||Songhai languages|songhai, langues -sot||st|Sotho, Southern|sotho du Sud -spa||es|Spanish; Castilian|espagnol; castillan -srd||sc|Sardinian|sarde -srn|||Sranan Tongo|sranan tongo -srp||sr|Serbian|serbe -srr|||Serer|sérère -ssa|||Nilo-Saharan languages|nilo-sahariennes, langues -ssw||ss|Swati|swati -suk|||Sukuma|sukuma -sun||su|Sundanese|soundanais -sus|||Susu|soussou -sux|||Sumerian|sumérien -swa||sw|Swahili|swahili -swe||sv|Swedish|suédois -syc|||Classical Syriac|syriaque classique -syr|||Syriac|syriaque -tah||ty|Tahitian|tahitien -tai|||Tai languages|tai, langues -tam||ta|Tamil|tamoul -tat||tt|Tatar|tatar -tel||te|Telugu|télougou -tem|||Timne|temne -ter|||Tereno|tereno -tet|||Tetum|tetum -tgk||tg|Tajik|tadjik -tgl||tl|Tagalog|tagalog -tha||th|Thai|thaï -tib|bod|bo|Tibetan|tibétain -tig|||Tigre|tigré -tir||ti|Tigrinya|tigrigna -tiv|||Tiv|tiv -tkl|||Tokelau|tokelau -tlh|||Klingon; tlhIngan-Hol|klingon -tli|||Tlingit|tlingit -tmh|||Tamashek|tamacheq -tog|||Tonga (Nyasa)|tonga (Nyasa) -ton||to|Tonga (Tonga Islands)|tongan (Îles Tonga) -tpi|||Tok Pisin|tok pisin -tsi|||Tsimshian|tsimshian -tsn||tn|Tswana|tswana -tso||ts|Tsonga|tsonga -tuk||tk|Turkmen|turkmène -tum|||Tumbuka|tumbuka -tup|||Tupi languages|tupi, langues -tur||tr|Turkish|turc -tut|||Altaic languages|altaïques, langues -tvl|||Tuvalu|tuvalu -twi||tw|Twi|twi -tyv|||Tuvinian|touva -udm|||Udmurt|oudmourte -uga|||Ugaritic|ougaritique -uig||ug|Uighur; Uyghur|ouïgour -ukr||uk|Ukrainian|ukrainien -umb|||Umbundu|umbundu -und|||Undetermined|indéterminée -urd||ur|Urdu|ourdou -uzb||uz|Uzbek|ouszbek -vai|||Vai|vaï -ven||ve|Venda|venda -vie||vi|Vietnamese|vietnamien -vol||vo|Volapük|volapük -vot|||Votic|vote -wak|||Wakashan languages|wakashanes, langues -wal|||Wolaitta; Wolaytta|wolaitta; wolaytta -war|||Waray|waray -was|||Washo|washo -wel|cym|cy|Welsh|gallois -wen|||Sorbian languages|sorabes, langues -wln||wa|Walloon|wallon -wol||wo|Wolof|wolof -xal|||Kalmyk; Oirat|kalmouk; oïrat -xho||xh|Xhosa|xhosa -yao|||Yao|yao -yap|||Yapese|yapois -yid||yi|Yiddish|yiddish -yor||yo|Yoruba|yoruba -ypk|||Yupik languages|yupik, langues -zap|||Zapotec|zapotèque -zbl|||Blissymbols; Blissymbolics; Bliss|symboles Bliss; Bliss -zen|||Zenaga|zenaga -zgh|||Standard Moroccan Tamazight|amazighe standard marocain -zha||za|Zhuang; Chuang|zhuang; chuang -znd|||Zande languages|zandé, langues -zul||zu|Zulu|zoulou -zun|||Zuni|zuni -zxx|||No linguistic content; Not applicable|pas de contenu linguistique; non applicable -zza|||Zaza; Dimili; Dimli; Kirdki; Kirmanjki; Zazaki|zaza; dimili; dimli; kirdki; kirmanjki; zazaki \ No newline at end of file diff --git a/LanguageData/iso6392.json b/LanguageData/iso6392.json deleted file mode 100644 index fb708d3..0000000 --- a/LanguageData/iso6392.json +++ /dev/null @@ -1,2155 +0,0 @@ -{ - "RecordList": [ - { - "Part2B": "aar", - "Part1": "aa", - "RefName": "Afar" - }, - { - "Part2B": "abk", - "Part1": "ab", - "RefName": "Abkhazian" - }, - { - "Part2B": "ace", - "RefName": "Achinese" - }, - { - "Part2B": "ach", - "RefName": "Acoli" - }, - { - "Part2B": "ada", - "RefName": "Adangme" - }, - { - "Part2B": "ady", - "RefName": "Adyghe; Adygei" - }, - { - "Part2B": "afa", - "RefName": "Afro-Asiatic languages" - }, - { - "Part2B": "afh", - "RefName": "Afrihili" - }, - { - "Part2B": "afr", - "Part1": "af", - "RefName": "Afrikaans" - }, - { - "Part2B": "ain", - "RefName": "Ainu" - }, - { - "Part2B": "aka", - "Part1": "ak", - "RefName": "Akan" - }, - { - "Part2B": "akk", - "RefName": "Akkadian" - }, - { - "Part2B": "alb", - "Part2T": "sqi", - "Part1": "sq", - "RefName": "Albanian" - }, - { - "Part2B": "ale", - "RefName": "Aleut" - }, - { - "Part2B": "alg", - "RefName": "Algonquian languages" - }, - { - "Part2B": "alt", - "RefName": "Southern Altai" - }, - { - "Part2B": "amh", - "Part1": "am", - "RefName": "Amharic" - }, - { - "Part2B": "ang", - "RefName": "English, Old (ca.450-1100)" - }, - { - "Part2B": "anp", - "RefName": "Angika" - }, - { - "Part2B": "apa", - "RefName": "Apache languages" - }, - { - "Part2B": "ara", - "Part1": "ar", - "RefName": "Arabic" - }, - { - "Part2B": "arc", - "RefName": "Official Aramaic (700-300 BCE); Imperial Aramaic (700-300 BCE)" - }, - { - "Part2B": "arg", - "Part1": "an", - "RefName": "Aragonese" - }, - { - "Part2B": "arm", - "Part2T": "hye", - "Part1": "hy", - "RefName": "Armenian" - }, - { - "Part2B": "arn", - "RefName": "Mapudungun; Mapuche" - }, - { - "Part2B": "arp", - "RefName": "Arapaho" - }, - { - "Part2B": "art", - "RefName": "Artificial languages" - }, - { - "Part2B": "arw", - "RefName": "Arawak" - }, - { - "Part2B": "asm", - "Part1": "as", - "RefName": "Assamese" - }, - { - "Part2B": "ast", - "RefName": "Asturian; Bable; Leonese; Asturleonese" - }, - { - "Part2B": "ath", - "RefName": "Athapascan languages" - }, - { - "Part2B": "aus", - "RefName": "Australian languages" - }, - { - "Part2B": "ava", - "Part1": "av", - "RefName": "Avaric" - }, - { - "Part2B": "ave", - "Part1": "ae", - "RefName": "Avestan" - }, - { - "Part2B": "awa", - "RefName": "Awadhi" - }, - { - "Part2B": "aym", - "Part1": "ay", - "RefName": "Aymara" - }, - { - "Part2B": "aze", - "Part1": "az", - "RefName": "Azerbaijani" - }, - { - "Part2B": "bad", - "RefName": "Banda languages" - }, - { - "Part2B": "bai", - "RefName": "Bamileke languages" - }, - { - "Part2B": "bak", - "Part1": "ba", - "RefName": "Bashkir" - }, - { - "Part2B": "bal", - "RefName": "Baluchi" - }, - { - "Part2B": "bam", - "Part1": "bm", - "RefName": "Bambara" - }, - { - "Part2B": "ban", - "RefName": "Balinese" - }, - { - "Part2B": "baq", - "Part2T": "eus", - "Part1": "eu", - "RefName": "Basque" - }, - { - "Part2B": "bas", - "RefName": "Basa" - }, - { - "Part2B": "bat", - "RefName": "Baltic languages" - }, - { - "Part2B": "bej", - "RefName": "Beja; Bedawiyet" - }, - { - "Part2B": "bel", - "Part1": "be", - "RefName": "Belarusian" - }, - { - "Part2B": "bem", - "RefName": "Bemba" - }, - { - "Part2B": "ben", - "Part1": "bn", - "RefName": "Bengali" - }, - { - "Part2B": "ber", - "RefName": "Berber languages" - }, - { - "Part2B": "bho", - "RefName": "Bhojpuri" - }, - { - "Part2B": "bih", - "RefName": "Bihari languages" - }, - { - "Part2B": "bik", - "RefName": "Bikol" - }, - { - "Part2B": "bin", - "RefName": "Bini; Edo" - }, - { - "Part2B": "bis", - "Part1": "bi", - "RefName": "Bislama" - }, - { - "Part2B": "bla", - "RefName": "Siksika" - }, - { - "Part2B": "bnt", - "RefName": "Bantu languages" - }, - { - "Part2B": "bos", - "Part1": "bs", - "RefName": "Bosnian" - }, - { - "Part2B": "bra", - "RefName": "Braj" - }, - { - "Part2B": "bre", - "Part1": "br", - "RefName": "Breton" - }, - { - "Part2B": "btk", - "RefName": "Batak languages" - }, - { - "Part2B": "bua", - "RefName": "Buriat" - }, - { - "Part2B": "bug", - "RefName": "Buginese" - }, - { - "Part2B": "bul", - "Part1": "bg", - "RefName": "Bulgarian" - }, - { - "Part2B": "bur", - "Part2T": "mya", - "Part1": "my", - "RefName": "Burmese" - }, - { - "Part2B": "byn", - "RefName": "Blin; Bilin" - }, - { - "Part2B": "cad", - "RefName": "Caddo" - }, - { - "Part2B": "cai", - "RefName": "Central American Indian languages" - }, - { - "Part2B": "car", - "RefName": "Galibi Carib" - }, - { - "Part2B": "cat", - "Part1": "ca", - "RefName": "Catalan; Valencian" - }, - { - "Part2B": "cau", - "RefName": "Caucasian languages" - }, - { - "Part2B": "ceb", - "RefName": "Cebuano" - }, - { - "Part2B": "cel", - "RefName": "Celtic languages" - }, - { - "Part2B": "cha", - "Part1": "ch", - "RefName": "Chamorro" - }, - { - "Part2B": "chb", - "RefName": "Chibcha" - }, - { - "Part2B": "che", - "Part1": "ce", - "RefName": "Chechen" - }, - { - "Part2B": "chg", - "RefName": "Chagatai" - }, - { - "Part2B": "chi", - "Part2T": "zho", - "Part1": "zh", - "RefName": "Chinese" - }, - { - "Part2B": "chk", - "RefName": "Chuukese" - }, - { - "Part2B": "chm", - "RefName": "Mari" - }, - { - "Part2B": "chn", - "RefName": "Chinook jargon" - }, - { - "Part2B": "cho", - "RefName": "Choctaw" - }, - { - "Part2B": "chp", - "RefName": "Chipewyan; Dene Suline" - }, - { - "Part2B": "chr", - "RefName": "Cherokee" - }, - { - "Part2B": "chu", - "Part1": "cu", - "RefName": "Church Slavic; Old Slavonic; Church Slavonic; Old Bulgarian; Old Church Slavonic" - }, - { - "Part2B": "chv", - "Part1": "cv", - "RefName": "Chuvash" - }, - { - "Part2B": "chy", - "RefName": "Cheyenne" - }, - { - "Part2B": "cmc", - "RefName": "Chamic languages" - }, - { - "Part2B": "cnr", - "RefName": "Montenegrin" - }, - { - "Part2B": "cop", - "RefName": "Coptic" - }, - { - "Part2B": "cor", - "Part1": "kw", - "RefName": "Cornish" - }, - { - "Part2B": "cos", - "Part1": "co", - "RefName": "Corsican" - }, - { - "Part2B": "cpe", - "RefName": "Creoles and pidgins, English based" - }, - { - "Part2B": "cpf", - "RefName": "Creoles and pidgins, French-based" - }, - { - "Part2B": "cpp", - "RefName": "Creoles and pidgins, Portuguese-based" - }, - { - "Part2B": "cre", - "Part1": "cr", - "RefName": "Cree" - }, - { - "Part2B": "crh", - "RefName": "Crimean Tatar; Crimean Turkish" - }, - { - "Part2B": "crp", - "RefName": "Creoles and pidgins" - }, - { - "Part2B": "csb", - "RefName": "Kashubian" - }, - { - "Part2B": "cus", - "RefName": "Cushitic languages" - }, - { - "Part2B": "cze", - "Part2T": "ces", - "Part1": "cs", - "RefName": "Czech" - }, - { - "Part2B": "dak", - "RefName": "Dakota" - }, - { - "Part2B": "dan", - "Part1": "da", - "RefName": "Danish" - }, - { - "Part2B": "dar", - "RefName": "Dargwa" - }, - { - "Part2B": "day", - "RefName": "Land Dayak languages" - }, - { - "Part2B": "del", - "RefName": "Delaware" - }, - { - "Part2B": "den", - "RefName": "Slave (Athapascan)" - }, - { - "Part2B": "dgr", - "RefName": "Tlicho; Dogrib" - }, - { - "Part2B": "din", - "RefName": "Dinka" - }, - { - "Part2B": "div", - "Part1": "dv", - "RefName": "Divehi; Dhivehi; Maldivian" - }, - { - "Part2B": "doi", - "RefName": "Dogri" - }, - { - "Part2B": "dra", - "RefName": "Dravidian languages" - }, - { - "Part2B": "dsb", - "RefName": "Lower Sorbian" - }, - { - "Part2B": "dua", - "RefName": "Duala" - }, - { - "Part2B": "dum", - "RefName": "Dutch, Middle (ca.1050-1350)" - }, - { - "Part2B": "dut", - "Part2T": "nld", - "Part1": "nl", - "RefName": "Dutch; Flemish" - }, - { - "Part2B": "dyu", - "RefName": "Dyula" - }, - { - "Part2B": "dzo", - "Part1": "dz", - "RefName": "Dzongkha" - }, - { - "Part2B": "efi", - "RefName": "Efik" - }, - { - "Part2B": "egy", - "RefName": "Egyptian (Ancient)" - }, - { - "Part2B": "eka", - "RefName": "Ekajuk" - }, - { - "Part2B": "elx", - "RefName": "Elamite" - }, - { - "Part2B": "eng", - "Part1": "en", - "RefName": "English" - }, - { - "Part2B": "enm", - "RefName": "English, Middle (1100-1500)" - }, - { - "Part2B": "epo", - "Part1": "eo", - "RefName": "Esperanto" - }, - { - "Part2B": "est", - "Part1": "et", - "RefName": "Estonian" - }, - { - "Part2B": "ewe", - "Part1": "ee", - "RefName": "Ewe" - }, - { - "Part2B": "ewo", - "RefName": "Ewondo" - }, - { - "Part2B": "fan", - "RefName": "Fang" - }, - { - "Part2B": "fao", - "Part1": "fo", - "RefName": "Faroese" - }, - { - "Part2B": "fat", - "RefName": "Fanti" - }, - { - "Part2B": "fij", - "Part1": "fj", - "RefName": "Fijian" - }, - { - "Part2B": "fil", - "RefName": "Filipino; Pilipino" - }, - { - "Part2B": "fin", - "Part1": "fi", - "RefName": "Finnish" - }, - { - "Part2B": "fiu", - "RefName": "Finno-Ugrian languages" - }, - { - "Part2B": "fon", - "RefName": "Fon" - }, - { - "Part2B": "fre", - "Part2T": "fra", - "Part1": "fr", - "RefName": "French" - }, - { - "Part2B": "frm", - "RefName": "French, Middle (ca.1400-1600)" - }, - { - "Part2B": "fro", - "RefName": "French, Old (842-ca.1400)" - }, - { - "Part2B": "frr", - "RefName": "Northern Frisian" - }, - { - "Part2B": "frs", - "RefName": "Eastern Frisian" - }, - { - "Part2B": "fry", - "Part1": "fy", - "RefName": "Western Frisian" - }, - { - "Part2B": "ful", - "Part1": "ff", - "RefName": "Fulah" - }, - { - "Part2B": "fur", - "RefName": "Friulian" - }, - { - "Part2B": "gaa", - "RefName": "Ga" - }, - { - "Part2B": "gay", - "RefName": "Gayo" - }, - { - "Part2B": "gba", - "RefName": "Gbaya" - }, - { - "Part2B": "gem", - "RefName": "Germanic languages" - }, - { - "Part2B": "geo", - "Part2T": "kat", - "Part1": "ka", - "RefName": "Georgian" - }, - { - "Part2B": "ger", - "Part2T": "deu", - "Part1": "de", - "RefName": "German" - }, - { - "Part2B": "gez", - "RefName": "Geez" - }, - { - "Part2B": "gil", - "RefName": "Gilbertese" - }, - { - "Part2B": "gla", - "Part1": "gd", - "RefName": "Gaelic; Scottish Gaelic" - }, - { - "Part2B": "gle", - "Part1": "ga", - "RefName": "Irish" - }, - { - "Part2B": "glg", - "Part1": "gl", - "RefName": "Galician" - }, - { - "Part2B": "glv", - "Part1": "gv", - "RefName": "Manx" - }, - { - "Part2B": "gmh", - "RefName": "German, Middle High (ca.1050-1500)" - }, - { - "Part2B": "goh", - "RefName": "German, Old High (ca.750-1050)" - }, - { - "Part2B": "gon", - "RefName": "Gondi" - }, - { - "Part2B": "gor", - "RefName": "Gorontalo" - }, - { - "Part2B": "got", - "RefName": "Gothic" - }, - { - "Part2B": "grb", - "RefName": "Grebo" - }, - { - "Part2B": "grc", - "RefName": "Greek, Ancient (to 1453)" - }, - { - "Part2B": "gre", - "Part2T": "ell", - "Part1": "el", - "RefName": "Modern Greek (1453-)" - }, - { - "Part2B": "grn", - "Part1": "gn", - "RefName": "Guarani" - }, - { - "Part2B": "gsw", - "RefName": "Swiss German; Alemannic; Alsatian" - }, - { - "Part2B": "guj", - "Part1": "gu", - "RefName": "Gujarati" - }, - { - "Part2B": "gwi", - "RefName": "Gwich\u0027in" - }, - { - "Part2B": "hai", - "RefName": "Haida" - }, - { - "Part2B": "hat", - "Part1": "ht", - "RefName": "Haitian; Haitian Creole" - }, - { - "Part2B": "hau", - "Part1": "ha", - "RefName": "Hausa" - }, - { - "Part2B": "haw", - "RefName": "Hawaiian" - }, - { - "Part2B": "heb", - "Part1": "he", - "RefName": "Hebrew" - }, - { - "Part2B": "her", - "Part1": "hz", - "RefName": "Herero" - }, - { - "Part2B": "hil", - "RefName": "Hiligaynon" - }, - { - "Part2B": "him", - "RefName": "Himachali languages; Western Pahari languages" - }, - { - "Part2B": "hin", - "Part1": "hi", - "RefName": "Hindi" - }, - { - "Part2B": "hit", - "RefName": "Hittite" - }, - { - "Part2B": "hmn", - "RefName": "Hmong; Mong" - }, - { - "Part2B": "hmo", - "Part1": "ho", - "RefName": "Hiri Motu" - }, - { - "Part2B": "hrv", - "Part1": "hr", - "RefName": "Croatian" - }, - { - "Part2B": "hsb", - "RefName": "Upper Sorbian" - }, - { - "Part2B": "hun", - "Part1": "hu", - "RefName": "Hungarian" - }, - { - "Part2B": "hup", - "RefName": "Hupa" - }, - { - "Part2B": "iba", - "RefName": "Iban" - }, - { - "Part2B": "ibo", - "Part1": "ig", - "RefName": "Igbo" - }, - { - "Part2B": "ice", - "Part2T": "isl", - "Part1": "is", - "RefName": "Icelandic" - }, - { - "Part2B": "ido", - "Part1": "io", - "RefName": "Ido" - }, - { - "Part2B": "iii", - "Part1": "ii", - "RefName": "Sichuan Yi; Nuosu" - }, - { - "Part2B": "ijo", - "RefName": "Ijo languages" - }, - { - "Part2B": "iku", - "Part1": "iu", - "RefName": "Inuktitut" - }, - { - "Part2B": "ile", - "Part1": "ie", - "RefName": "Interlingue; Occidental" - }, - { - "Part2B": "ilo", - "RefName": "Iloko" - }, - { - "Part2B": "ina", - "Part1": "ia", - "RefName": "Interlingua (International Auxiliary Language Association)" - }, - { - "Part2B": "inc", - "RefName": "Indic languages" - }, - { - "Part2B": "ind", - "Part1": "id", - "RefName": "Indonesian" - }, - { - "Part2B": "ine", - "RefName": "Indo-European languages" - }, - { - "Part2B": "inh", - "RefName": "Ingush" - }, - { - "Part2B": "ipk", - "Part1": "ik", - "RefName": "Inupiaq" - }, - { - "Part2B": "ira", - "RefName": "Iranian languages" - }, - { - "Part2B": "iro", - "RefName": "Iroquoian languages" - }, - { - "Part2B": "ita", - "Part1": "it", - "RefName": "Italian" - }, - { - "Part2B": "jav", - "Part1": "jv", - "RefName": "Javanese" - }, - { - "Part2B": "jbo", - "RefName": "Lojban" - }, - { - "Part2B": "jpn", - "Part1": "ja", - "RefName": "Japanese" - }, - { - "Part2B": "jpr", - "RefName": "Judeo-Persian" - }, - { - "Part2B": "jrb", - "RefName": "Judeo-Arabic" - }, - { - "Part2B": "kaa", - "RefName": "Kara-Kalpak" - }, - { - "Part2B": "kab", - "RefName": "Kabyle" - }, - { - "Part2B": "kac", - "RefName": "Kachin; Jingpho" - }, - { - "Part2B": "kal", - "Part1": "kl", - "RefName": "Kalaallisut; Greenlandic" - }, - { - "Part2B": "kam", - "RefName": "Kamba" - }, - { - "Part2B": "kan", - "Part1": "kn", - "RefName": "Kannada" - }, - { - "Part2B": "kar", - "RefName": "Karen languages" - }, - { - "Part2B": "kas", - "Part1": "ks", - "RefName": "Kashmiri" - }, - { - "Part2B": "kau", - "Part1": "kr", - "RefName": "Kanuri" - }, - { - "Part2B": "kaw", - "RefName": "Kawi" - }, - { - "Part2B": "kaz", - "Part1": "kk", - "RefName": "Kazakh" - }, - { - "Part2B": "kbd", - "RefName": "Kabardian" - }, - { - "Part2B": "kha", - "RefName": "Khasi" - }, - { - "Part2B": "khi", - "RefName": "Khoisan languages" - }, - { - "Part2B": "khm", - "Part1": "km", - "RefName": "Central Khmer" - }, - { - "Part2B": "kho", - "RefName": "Khotanese; Sakan" - }, - { - "Part2B": "kik", - "Part1": "ki", - "RefName": "Kikuyu; Gikuyu" - }, - { - "Part2B": "kin", - "Part1": "rw", - "RefName": "Kinyarwanda" - }, - { - "Part2B": "kir", - "Part1": "ky", - "RefName": "Kirghiz; Kyrgyz" - }, - { - "Part2B": "kmb", - "RefName": "Kimbundu" - }, - { - "Part2B": "kok", - "RefName": "Konkani" - }, - { - "Part2B": "kom", - "Part1": "kv", - "RefName": "Komi" - }, - { - "Part2B": "kon", - "Part1": "kg", - "RefName": "Kongo" - }, - { - "Part2B": "kor", - "Part1": "ko", - "RefName": "Korean" - }, - { - "Part2B": "kos", - "RefName": "Kosraean" - }, - { - "Part2B": "kpe", - "RefName": "Kpelle" - }, - { - "Part2B": "krc", - "RefName": "Karachay-Balkar" - }, - { - "Part2B": "krl", - "RefName": "Karelian" - }, - { - "Part2B": "kro", - "RefName": "Kru languages" - }, - { - "Part2B": "kru", - "RefName": "Kurukh" - }, - { - "Part2B": "kua", - "Part1": "kj", - "RefName": "Kuanyama; Kwanyama" - }, - { - "Part2B": "kum", - "RefName": "Kumyk" - }, - { - "Part2B": "kur", - "Part1": "ku", - "RefName": "Kurdish" - }, - { - "Part2B": "kut", - "RefName": "Kutenai" - }, - { - "Part2B": "lad", - "RefName": "Ladino" - }, - { - "Part2B": "lah", - "RefName": "Lahnda" - }, - { - "Part2B": "lam", - "RefName": "Lamba" - }, - { - "Part2B": "lao", - "Part1": "lo", - "RefName": "Lao" - }, - { - "Part2B": "lat", - "Part1": "la", - "RefName": "Latin" - }, - { - "Part2B": "lav", - "Part1": "lv", - "RefName": "Latvian" - }, - { - "Part2B": "lez", - "RefName": "Lezghian" - }, - { - "Part2B": "lim", - "Part1": "li", - "RefName": "Limburgan; Limburger; Limburgish" - }, - { - "Part2B": "lin", - "Part1": "ln", - "RefName": "Lingala" - }, - { - "Part2B": "lit", - "Part1": "lt", - "RefName": "Lithuanian" - }, - { - "Part2B": "lol", - "RefName": "Mongo" - }, - { - "Part2B": "loz", - "RefName": "Lozi" - }, - { - "Part2B": "ltz", - "Part1": "lb", - "RefName": "Luxembourgish; Letzeburgesch" - }, - { - "Part2B": "lua", - "RefName": "Luba-Lulua" - }, - { - "Part2B": "lub", - "Part1": "lu", - "RefName": "Luba-Katanga" - }, - { - "Part2B": "lug", - "Part1": "lg", - "RefName": "Ganda" - }, - { - "Part2B": "lui", - "RefName": "Luiseno" - }, - { - "Part2B": "lun", - "RefName": "Lunda" - }, - { - "Part2B": "luo", - "RefName": "Luo (Kenya and Tanzania)" - }, - { - "Part2B": "lus", - "RefName": "Lushai" - }, - { - "Part2B": "mac", - "Part2T": "mkd", - "Part1": "mk", - "RefName": "Macedonian" - }, - { - "Part2B": "mad", - "RefName": "Madurese" - }, - { - "Part2B": "mag", - "RefName": "Magahi" - }, - { - "Part2B": "mah", - "Part1": "mh", - "RefName": "Marshallese" - }, - { - "Part2B": "mai", - "RefName": "Maithili" - }, - { - "Part2B": "mak", - "RefName": "Makasar" - }, - { - "Part2B": "mal", - "Part1": "ml", - "RefName": "Malayalam" - }, - { - "Part2B": "man", - "RefName": "Mandingo" - }, - { - "Part2B": "mao", - "Part2T": "mri", - "Part1": "mi", - "RefName": "Maori" - }, - { - "Part2B": "map", - "RefName": "Austronesian languages" - }, - { - "Part2B": "mar", - "Part1": "mr", - "RefName": "Marathi" - }, - { - "Part2B": "mas", - "RefName": "Masai" - }, - { - "Part2B": "may", - "Part2T": "msa", - "Part1": "ms", - "RefName": "Malay" - }, - { - "Part2B": "mdf", - "RefName": "Moksha" - }, - { - "Part2B": "mdr", - "RefName": "Mandar" - }, - { - "Part2B": "men", - "RefName": "Mende" - }, - { - "Part2B": "mga", - "RefName": "Irish, Middle (900-1200)" - }, - { - "Part2B": "mic", - "RefName": "Mi\u0027kmaq; Micmac" - }, - { - "Part2B": "min", - "RefName": "Minangkabau" - }, - { - "Part2B": "mis", - "RefName": "Uncoded languages" - }, - { - "Part2B": "mkh", - "RefName": "Mon-Khmer languages" - }, - { - "Part2B": "mlg", - "Part1": "mg", - "RefName": "Malagasy" - }, - { - "Part2B": "mlt", - "Part1": "mt", - "RefName": "Maltese" - }, - { - "Part2B": "mnc", - "RefName": "Manchu" - }, - { - "Part2B": "mni", - "RefName": "Manipuri" - }, - { - "Part2B": "mno", - "RefName": "Manobo languages" - }, - { - "Part2B": "moh", - "RefName": "Mohawk" - }, - { - "Part2B": "mon", - "Part1": "mn", - "RefName": "Mongolian" - }, - { - "Part2B": "mos", - "RefName": "Mossi" - }, - { - "Part2B": "mul", - "RefName": "Multiple languages" - }, - { - "Part2B": "mun", - "RefName": "Munda languages" - }, - { - "Part2B": "mus", - "RefName": "Creek" - }, - { - "Part2B": "mwl", - "RefName": "Mirandese" - }, - { - "Part2B": "mwr", - "RefName": "Marwari" - }, - { - "Part2B": "myn", - "RefName": "Mayan languages" - }, - { - "Part2B": "myv", - "RefName": "Erzya" - }, - { - "Part2B": "nah", - "RefName": "Nahuatl languages" - }, - { - "Part2B": "nai", - "RefName": "North American Indian languages" - }, - { - "Part2B": "nap", - "RefName": "Neapolitan" - }, - { - "Part2B": "nau", - "Part1": "na", - "RefName": "Nauru" - }, - { - "Part2B": "nav", - "Part1": "nv", - "RefName": "Navajo; Navaho" - }, - { - "Part2B": "nbl", - "Part1": "nr", - "RefName": "South Ndebele" - }, - { - "Part2B": "nde", - "Part1": "nd", - "RefName": "North Ndebele" - }, - { - "Part2B": "ndo", - "Part1": "ng", - "RefName": "Ndonga" - }, - { - "Part2B": "nds", - "RefName": "Low German; Low Saxon; German, Low; Saxon, Low" - }, - { - "Part2B": "nep", - "Part1": "ne", - "RefName": "Nepali" - }, - { - "Part2B": "new", - "RefName": "Nepal Bhasa; Newar; Newari" - }, - { - "Part2B": "nia", - "RefName": "Nias" - }, - { - "Part2B": "nic", - "RefName": "Niger-Kordofanian languages" - }, - { - "Part2B": "niu", - "RefName": "Niuean" - }, - { - "Part2B": "nno", - "Part1": "nn", - "RefName": "Norwegian Nynorsk" - }, - { - "Part2B": "nob", - "Part1": "nb", - "RefName": "Norwegian Bokm\u00E5l" - }, - { - "Part2B": "nog", - "RefName": "Nogai" - }, - { - "Part2B": "non", - "RefName": "Norse, Old" - }, - { - "Part2B": "nor", - "Part1": "no", - "RefName": "Norwegian" - }, - { - "Part2B": "nqo", - "RefName": "N\u0027Ko" - }, - { - "Part2B": "nso", - "RefName": "Pedi; Sepedi; Northern Sotho" - }, - { - "Part2B": "nub", - "RefName": "Nubian languages" - }, - { - "Part2B": "nwc", - "RefName": "Classical Newari; Old Newari; Classical Nepal Bhasa" - }, - { - "Part2B": "nya", - "Part1": "ny", - "RefName": "Chichewa; Chewa; Nyanja" - }, - { - "Part2B": "nym", - "RefName": "Nyamwezi" - }, - { - "Part2B": "nyn", - "RefName": "Nyankole" - }, - { - "Part2B": "nyo", - "RefName": "Nyoro" - }, - { - "Part2B": "nzi", - "RefName": "Nzima" - }, - { - "Part2B": "oci", - "Part1": "oc", - "RefName": "Occitan (post 1500)" - }, - { - "Part2B": "oji", - "Part1": "oj", - "RefName": "Ojibwa" - }, - { - "Part2B": "ori", - "Part1": "or", - "RefName": "Oriya" - }, - { - "Part2B": "orm", - "Part1": "om", - "RefName": "Oromo" - }, - { - "Part2B": "osa", - "RefName": "Osage" - }, - { - "Part2B": "oss", - "Part1": "os", - "RefName": "Ossetian; Ossetic" - }, - { - "Part2B": "ota", - "RefName": "Turkish, Ottoman (1500-1928)" - }, - { - "Part2B": "oto", - "RefName": "Otomian languages" - }, - { - "Part2B": "paa", - "RefName": "Papuan languages" - }, - { - "Part2B": "pag", - "RefName": "Pangasinan" - }, - { - "Part2B": "pal", - "RefName": "Pahlavi" - }, - { - "Part2B": "pam", - "RefName": "Pampanga; Kapampangan" - }, - { - "Part2B": "pan", - "Part1": "pa", - "RefName": "Panjabi; Punjabi" - }, - { - "Part2B": "pap", - "RefName": "Papiamento" - }, - { - "Part2B": "pau", - "RefName": "Palauan" - }, - { - "Part2B": "peo", - "RefName": "Persian, Old (ca.600-400 B.C.)" - }, - { - "Part2B": "per", - "Part2T": "fas", - "Part1": "fa", - "RefName": "Persian" - }, - { - "Part2B": "phi", - "RefName": "Philippine languages" - }, - { - "Part2B": "phn", - "RefName": "Phoenician" - }, - { - "Part2B": "pli", - "Part1": "pi", - "RefName": "Pali" - }, - { - "Part2B": "pol", - "Part1": "pl", - "RefName": "Polish" - }, - { - "Part2B": "pon", - "RefName": "Pohnpeian" - }, - { - "Part2B": "por", - "Part1": "pt", - "RefName": "Portuguese" - }, - { - "Part2B": "pra", - "RefName": "Prakrit languages" - }, - { - "Part2B": "pro", - "RefName": "Proven\u00E7al, Old (to 1500); Occitan, Old (to 1500)" - }, - { - "Part2B": "pus", - "Part1": "ps", - "RefName": "Pushto; Pashto" - }, - { - "Part2B": "qaa-qtz", - "RefName": "Reserved for local use" - }, - { - "Part2B": "que", - "Part1": "qu", - "RefName": "Quechua" - }, - { - "Part2B": "raj", - "RefName": "Rajasthani" - }, - { - "Part2B": "rap", - "RefName": "Rapanui" - }, - { - "Part2B": "rar", - "RefName": "Rarotongan; Cook Islands Maori" - }, - { - "Part2B": "roa", - "RefName": "Romance languages" - }, - { - "Part2B": "roh", - "Part1": "rm", - "RefName": "Romansh" - }, - { - "Part2B": "rom", - "RefName": "Romany" - }, - { - "Part2B": "rum", - "Part2T": "ron", - "Part1": "ro", - "RefName": "Romanian; Moldavian; Moldovan" - }, - { - "Part2B": "run", - "Part1": "rn", - "RefName": "Rundi" - }, - { - "Part2B": "rup", - "RefName": "Aromanian; Arumanian; Macedo-Romanian" - }, - { - "Part2B": "rus", - "Part1": "ru", - "RefName": "Russian" - }, - { - "Part2B": "sad", - "RefName": "Sandawe" - }, - { - "Part2B": "sag", - "Part1": "sg", - "RefName": "Sango" - }, - { - "Part2B": "sah", - "RefName": "Yakut" - }, - { - "Part2B": "sai", - "RefName": "South American Indian languages" - }, - { - "Part2B": "sal", - "RefName": "Salishan languages" - }, - { - "Part2B": "sam", - "RefName": "Samaritan Aramaic" - }, - { - "Part2B": "san", - "Part1": "sa", - "RefName": "Sanskrit" - }, - { - "Part2B": "sas", - "RefName": "Sasak" - }, - { - "Part2B": "sat", - "RefName": "Santali" - }, - { - "Part2B": "scn", - "RefName": "Sicilian" - }, - { - "Part2B": "sco", - "RefName": "Scots" - }, - { - "Part2B": "sel", - "RefName": "Selkup" - }, - { - "Part2B": "sem", - "RefName": "Semitic languages" - }, - { - "Part2B": "sga", - "RefName": "Irish, Old (to 900)" - }, - { - "Part2B": "sgn", - "RefName": "Sign Languages" - }, - { - "Part2B": "shn", - "RefName": "Shan" - }, - { - "Part2B": "sid", - "RefName": "Sidamo" - }, - { - "Part2B": "sin", - "Part1": "si", - "RefName": "Sinhala; Sinhalese" - }, - { - "Part2B": "sio", - "RefName": "Siouan languages" - }, - { - "Part2B": "sit", - "RefName": "Sino-Tibetan languages" - }, - { - "Part2B": "sla", - "RefName": "Slavic languages" - }, - { - "Part2B": "slo", - "Part2T": "slk", - "Part1": "sk", - "RefName": "Slovak" - }, - { - "Part2B": "slv", - "Part1": "sl", - "RefName": "Slovenian" - }, - { - "Part2B": "sma", - "RefName": "Southern Sami" - }, - { - "Part2B": "sme", - "Part1": "se", - "RefName": "Northern Sami" - }, - { - "Part2B": "smi", - "RefName": "Sami languages" - }, - { - "Part2B": "smj", - "RefName": "Lule Sami" - }, - { - "Part2B": "smn", - "RefName": "Inari Sami" - }, - { - "Part2B": "smo", - "Part1": "sm", - "RefName": "Samoan" - }, - { - "Part2B": "sms", - "RefName": "Skolt Sami" - }, - { - "Part2B": "sna", - "Part1": "sn", - "RefName": "Shona" - }, - { - "Part2B": "snd", - "Part1": "sd", - "RefName": "Sindhi" - }, - { - "Part2B": "snk", - "RefName": "Soninke" - }, - { - "Part2B": "sog", - "RefName": "Sogdian" - }, - { - "Part2B": "som", - "Part1": "so", - "RefName": "Somali" - }, - { - "Part2B": "son", - "RefName": "Songhai languages" - }, - { - "Part2B": "sot", - "Part1": "st", - "RefName": "Sotho, Southern" - }, - { - "Part2B": "spa", - "Part1": "es", - "RefName": "Spanish; Castilian" - }, - { - "Part2B": "srd", - "Part1": "sc", - "RefName": "Sardinian" - }, - { - "Part2B": "srn", - "RefName": "Sranan Tongo" - }, - { - "Part2B": "srp", - "Part1": "sr", - "RefName": "Serbian" - }, - { - "Part2B": "srr", - "RefName": "Serer" - }, - { - "Part2B": "ssa", - "RefName": "Nilo-Saharan languages" - }, - { - "Part2B": "ssw", - "Part1": "ss", - "RefName": "Swati" - }, - { - "Part2B": "suk", - "RefName": "Sukuma" - }, - { - "Part2B": "sun", - "Part1": "su", - "RefName": "Sundanese" - }, - { - "Part2B": "sus", - "RefName": "Susu" - }, - { - "Part2B": "sux", - "RefName": "Sumerian" - }, - { - "Part2B": "swa", - "Part1": "sw", - "RefName": "Swahili" - }, - { - "Part2B": "swe", - "Part1": "sv", - "RefName": "Swedish" - }, - { - "Part2B": "syc", - "RefName": "Classical Syriac" - }, - { - "Part2B": "syr", - "RefName": "Syriac" - }, - { - "Part2B": "tah", - "Part1": "ty", - "RefName": "Tahitian" - }, - { - "Part2B": "tai", - "RefName": "Tai languages" - }, - { - "Part2B": "tam", - "Part1": "ta", - "RefName": "Tamil" - }, - { - "Part2B": "tat", - "Part1": "tt", - "RefName": "Tatar" - }, - { - "Part2B": "tel", - "Part1": "te", - "RefName": "Telugu" - }, - { - "Part2B": "tem", - "RefName": "Timne" - }, - { - "Part2B": "ter", - "RefName": "Tereno" - }, - { - "Part2B": "tet", - "RefName": "Tetum" - }, - { - "Part2B": "tgk", - "Part1": "tg", - "RefName": "Tajik" - }, - { - "Part2B": "tgl", - "Part1": "tl", - "RefName": "Tagalog" - }, - { - "Part2B": "tha", - "Part1": "th", - "RefName": "Thai" - }, - { - "Part2B": "tib", - "Part2T": "bod", - "Part1": "bo", - "RefName": "Tibetan" - }, - { - "Part2B": "tig", - "RefName": "Tigre" - }, - { - "Part2B": "tir", - "Part1": "ti", - "RefName": "Tigrinya" - }, - { - "Part2B": "tiv", - "RefName": "Tiv" - }, - { - "Part2B": "tkl", - "RefName": "Tokelau" - }, - { - "Part2B": "tlh", - "RefName": "Klingon; tlhIngan-Hol" - }, - { - "Part2B": "tli", - "RefName": "Tlingit" - }, - { - "Part2B": "tmh", - "RefName": "Tamashek" - }, - { - "Part2B": "tog", - "RefName": "Tonga (Nyasa)" - }, - { - "Part2B": "ton", - "Part1": "to", - "RefName": "Tonga (Tonga Islands)" - }, - { - "Part2B": "tpi", - "RefName": "Tok Pisin" - }, - { - "Part2B": "tsi", - "RefName": "Tsimshian" - }, - { - "Part2B": "tsn", - "Part1": "tn", - "RefName": "Tswana" - }, - { - "Part2B": "tso", - "Part1": "ts", - "RefName": "Tsonga" - }, - { - "Part2B": "tuk", - "Part1": "tk", - "RefName": "Turkmen" - }, - { - "Part2B": "tum", - "RefName": "Tumbuka" - }, - { - "Part2B": "tup", - "RefName": "Tupi languages" - }, - { - "Part2B": "tur", - "Part1": "tr", - "RefName": "Turkish" - }, - { - "Part2B": "tut", - "RefName": "Altaic languages" - }, - { - "Part2B": "tvl", - "RefName": "Tuvalu" - }, - { - "Part2B": "twi", - "Part1": "tw", - "RefName": "Twi" - }, - { - "Part2B": "tyv", - "RefName": "Tuvinian" - }, - { - "Part2B": "udm", - "RefName": "Udmurt" - }, - { - "Part2B": "uga", - "RefName": "Ugaritic" - }, - { - "Part2B": "uig", - "Part1": "ug", - "RefName": "Uighur; Uyghur" - }, - { - "Part2B": "ukr", - "Part1": "uk", - "RefName": "Ukrainian" - }, - { - "Part2B": "umb", - "RefName": "Umbundu" - }, - { - "Part2B": "und", - "RefName": "Undetermined" - }, - { - "Part2B": "urd", - "Part1": "ur", - "RefName": "Urdu" - }, - { - "Part2B": "uzb", - "Part1": "uz", - "RefName": "Uzbek" - }, - { - "Part2B": "vai", - "RefName": "Vai" - }, - { - "Part2B": "ven", - "Part1": "ve", - "RefName": "Venda" - }, - { - "Part2B": "vie", - "Part1": "vi", - "RefName": "Vietnamese" - }, - { - "Part2B": "vol", - "Part1": "vo", - "RefName": "Volap\u00FCk" - }, - { - "Part2B": "vot", - "RefName": "Votic" - }, - { - "Part2B": "wak", - "RefName": "Wakashan languages" - }, - { - "Part2B": "wal", - "RefName": "Wolaitta; Wolaytta" - }, - { - "Part2B": "war", - "RefName": "Waray" - }, - { - "Part2B": "was", - "RefName": "Washo" - }, - { - "Part2B": "wel", - "Part2T": "cym", - "Part1": "cy", - "RefName": "Welsh" - }, - { - "Part2B": "wen", - "RefName": "Sorbian languages" - }, - { - "Part2B": "wln", - "Part1": "wa", - "RefName": "Walloon" - }, - { - "Part2B": "wol", - "Part1": "wo", - "RefName": "Wolof" - }, - { - "Part2B": "xal", - "RefName": "Kalmyk; Oirat" - }, - { - "Part2B": "xho", - "Part1": "xh", - "RefName": "Xhosa" - }, - { - "Part2B": "yao", - "RefName": "Yao" - }, - { - "Part2B": "yap", - "RefName": "Yapese" - }, - { - "Part2B": "yid", - "Part1": "yi", - "RefName": "Yiddish" - }, - { - "Part2B": "yor", - "Part1": "yo", - "RefName": "Yoruba" - }, - { - "Part2B": "ypk", - "RefName": "Yupik languages" - }, - { - "Part2B": "zap", - "RefName": "Zapotec" - }, - { - "Part2B": "zbl", - "RefName": "Blissymbols; Blissymbolics; Bliss" - }, - { - "Part2B": "zen", - "RefName": "Zenaga" - }, - { - "Part2B": "zgh", - "RefName": "Standard Moroccan Tamazight" - }, - { - "Part2B": "zha", - "Part1": "za", - "RefName": "Zhuang; Chuang" - }, - { - "Part2B": "znd", - "RefName": "Zande languages" - }, - { - "Part2B": "zul", - "Part1": "zu", - "RefName": "Zulu" - }, - { - "Part2B": "zun", - "RefName": "Zuni" - }, - { - "Part2B": "zxx", - "RefName": "No linguistic content; Not applicable" - }, - { - "Part2B": "zza", - "RefName": "Zaza; Dimili; Dimli; Kirdki; Kirmanjki; Zazaki" - } - ] -} \ No newline at end of file diff --git a/LanguageData/iso6393 b/LanguageData/iso6393 deleted file mode 100644 index 609f30b..0000000 --- a/LanguageData/iso6393 +++ /dev/null @@ -1,7930 +0,0 @@ -Id Part2b Part2t Part1 Scope Language_Type Ref_Name Comment -aaa I L Ghotuo -aab I L Alumu-Tesu -aac I L Ari -aad I L Amal -aae I L Arbëreshë Albanian -aaf I L Aranadan -aag I L Ambrak -aah I L Abu' Arapesh -aai I L Arifama-Miniafia -aak I L Ankave -aal I L Afade -aan I L Anambé -aao I L Algerian Saharan Arabic -aap I L Pará Arára -aaq I E Eastern Abnaki -aar aar aar aa I L Afar -aas I L Aasáx -aat I L Arvanitika Albanian -aau I L Abau -aaw I L Solong -aax I L Mandobo Atas -aaz I L Amarasi -aba I L Abé -abb I L Bankon -abc I L Ambala Ayta -abd I L Manide -abe I L Western Abnaki -abf I L Abai Sungai -abg I L Abaga -abh I L Tajiki Arabic -abi I L Abidji -abj I E Aka-Bea -abk abk abk ab I L Abkhazian -abl I L Lampung Nyo -abm I L Abanyom -abn I L Abua -abo I L Abon -abp I L Abellen Ayta -abq I L Abaza -abr I L Abron -abs I L Ambonese Malay -abt I L Ambulas -abu I L Abure -abv I L Baharna Arabic -abw I L Pal -abx I L Inabaknon -aby I L Aneme Wake -abz I L Abui -aca I L Achagua -acb I L Áncá -acd I L Gikyode -ace ace ace I L Achinese -acf I L Saint Lucian Creole French -ach ach ach I L Acoli -aci I E Aka-Cari -ack I E Aka-Kora -acl I E Akar-Bale -acm I L Mesopotamian Arabic -acn I L Achang -acp I L Eastern Acipa -acq I L Ta'izzi-Adeni Arabic -acr I L Achi -acs I E Acroá -act I L Achterhoeks -acu I L Achuar-Shiwiar -acv I L Achumawi -acw I L Hijazi Arabic -acx I L Omani Arabic -acy I L Cypriot Arabic -acz I L Acheron -ada ada ada I L Adangme -adb I L Atauran -add I L Lidzonka -ade I L Adele -adf I L Dhofari Arabic -adg I L Andegerebinha -adh I L Adhola -adi I L Adi -adj I L Adioukrou -adl I L Galo -adn I L Adang -ado I L Abu -adq I L Adangbe -adr I L Adonara -ads I L Adamorobe Sign Language -adt I L Adnyamathanha -adu I L Aduge -adw I L Amundava -adx I L Amdo Tibetan -ady ady ady I L Adyghe -adz I L Adzera -aea I E Areba -aeb I L Tunisian Arabic -aec I L Saidi Arabic -aed I L Argentine Sign Language -aee I L Northeast Pashai -aek I L Haeke -ael I L Ambele -aem I L Arem -aen I L Armenian Sign Language -aeq I L Aer -aer I L Eastern Arrernte -aes I E Alsea -aeu I L Akeu -aew I L Ambakich -aey I L Amele -aez I L Aeka -afb I L Gulf Arabic -afd I L Andai -afe I L Putukwam -afg I L Afghan Sign Language -afh afh afh I C Afrihili -afi I L Akrukay -afk I L Nanubae -afn I L Defaka -afo I L Eloyi -afp I L Tapei -afr afr afr af I L Afrikaans -afs I L Afro-Seminole Creole -aft I L Afitti -afu I L Awutu -afz I L Obokuitai -aga I E Aguano -agb I L Legbo -agc I L Agatu -agd I L Agarabi -age I L Angal -agf I L Arguni -agg I L Angor -agh I L Ngelima -agi I L Agariya -agj I L Argobba -agk I L Isarog Agta -agl I L Fembe -agm I L Angaataha -agn I L Agutaynen -ago I L Tainae -agq I L Aghem -agr I L Aguaruna -ags I L Esimbi -agt I L Central Cagayan Agta -agu I L Aguacateco -agv I L Remontado Dumagat -agw I L Kahua -agx I L Aghul -agy I L Southern Alta -agz I L Mt. Iriga Agta -aha I L Ahanta -ahb I L Axamb -ahg I L Qimant -ahh I L Aghu -ahi I L Tiagbamrin Aizi -ahk I L Akha -ahl I L Igo -ahm I L Mobumrin Aizi -ahn I L Àhàn -aho I E Ahom -ahp I L Aproumu Aizi -ahr I L Ahirani -ahs I L Ashe -aht I L Ahtena -aia I L Arosi -aib I L Ainu (China) -aic I L Ainbai -aid I E Alngith -aie I L Amara -aif I L Agi -aig I L Antigua and Barbuda Creole English -aih I L Ai-Cham -aii I L Assyrian Neo-Aramaic -aij I L Lishanid Noshan -aik I L Ake -ail I L Aimele -aim I L Aimol -ain ain ain I L Ainu (Japan) -aio I L Aiton -aip I L Burumakok -aiq I L Aimaq -air I L Airoran -ait I E Arikem -aiw I L Aari -aix I L Aighon -aiy I L Ali -aja I L Aja (South Sudan) -ajg I L Aja (Benin) -aji I L Ajië -ajn I L Andajin -ajs I L Algerian Jewish Sign Language -aju I L Judeo-Moroccan Arabic -ajw I E Ajawa -ajz I L Amri Karbi -aka aka aka ak M L Akan -akb I L Batak Angkola -akc I L Mpur -akd I L Ukpet-Ehom -ake I L Akawaio -akf I L Akpa -akg I L Anakalangu -akh I L Angal Heneng -aki I L Aiome -akj I E Aka-Jeru -akk akk akk I H Akkadian -akl I L Aklanon -akm I E Aka-Bo -ako I L Akurio -akp I L Siwu -akq I L Ak -akr I L Araki -aks I L Akaselem -akt I L Akolet -aku I L Akum -akv I L Akhvakh -akw I L Akwa -akx I E Aka-Kede -aky I E Aka-Kol -akz I L Alabama -ala I L Alago -alc I L Qawasqar -ald I L Alladian -ale ale ale I L Aleut -alf I L Alege -alh I L Alawa -ali I L Amaimon -alj I L Alangan -alk I L Alak -all I L Allar -alm I L Amblong -aln I L Gheg Albanian -alo I L Larike-Wakasihu -alp I L Alune -alq I L Algonquin -alr I L Alutor -als I L Tosk Albanian -alt alt alt I L Southern Altai -alu I L 'Are'are -alw I L Alaba-K’abeena -alx I L Amol -aly I L Alyawarr -alz I L Alur -ama I E Amanayé -amb I L Ambo -amc I L Amahuaca -ame I L Yanesha' -amf I L Hamer-Banna -amg I L Amurdak -amh amh amh am I L Amharic -ami I L Amis -amj I L Amdang -amk I L Ambai -aml I L War-Jaintia -amm I L Ama (Papua New Guinea) -amn I L Amanab -amo I L Amo -amp I L Alamblak -amq I L Amahai -amr I L Amarakaeri -ams I L Southern Amami-Oshima -amt I L Amto -amu I L Guerrero Amuzgo -amv I L Ambelau -amw I L Western Neo-Aramaic -amx I L Anmatyerre -amy I L Ami -amz I E Atampaya -ana I E Andaqui -anb I E Andoa -anc I L Ngas -and I L Ansus -ane I L Xârâcùù -anf I L Animere -ang ang ang I H Old English (ca. 450-1100) -anh I L Nend -ani I L Andi -anj I L Anor -ank I L Goemai -anl I L Anu-Hkongso Chin -anm I L Anal -ann I L Obolo -ano I L Andoque -anp anp anp I L Angika -anq I L Jarawa (India) -anr I L Andh -ans I E Anserma -ant I L Antakarinya -anu I L Anuak -anv I L Denya -anw I L Anaang -anx I L Andra-Hus -any I L Anyin -anz I L Anem -aoa I L Angolar -aob I L Abom -aoc I L Pemon -aod I L Andarum -aoe I L Angal Enen -aof I L Bragat -aog I L Angoram -aoi I L Anindilyakwa -aoj I L Mufian -aok I L Arhö -aol I L Alor -aom I L Ömie -aon I L Bumbita Arapesh -aor I E Aore -aos I L Taikat -aot I L Atong (India) -aou I L A'ou -aox I L Atorada -aoz I L Uab Meto -apb I L Sa'a -apc I L Levantine Arabic -apd I L Sudanese Arabic -ape I L Bukiyip -apf I L Pahanan Agta -apg I L Ampanang -aph I L Athpariya -api I L Apiaká -apj I L Jicarilla Apache -apk I L Kiowa Apache -apl I L Lipan Apache -apm I L Mescalero-Chiricahua Apache -apn I L Apinayé -apo I L Ambul -app I L Apma -apq I L A-Pucikwar -apr I L Arop-Lokep -aps I L Arop-Sissano -apt I L Apatani -apu I L Apurinã -apv I E Alapmunte -apw I L Western Apache -apx I L Aputai -apy I L Apalaí -apz I L Safeyoka -aqc I L Archi -aqd I L Ampari Dogon -aqg I L Arigidi -aqk I L Aninka -aqm I L Atohwaim -aqn I L Northern Alta -aqp I E Atakapa -aqr I L Arhâ -aqt I L Angaité -aqz I L Akuntsu -ara ara ara ar M L Arabic -arb I L Standard Arabic -arc arc arc I H Official Aramaic (700-300 BCE) -ard I E Arabana -are I L Western Arrarnta -arg arg arg an I L Aragonese -arh I L Arhuaco -ari I L Arikara -arj I E Arapaso -ark I L Arikapú -arl I L Arabela -arn arn arn I L Mapudungun -aro I L Araona -arp arp arp I L Arapaho -arq I L Algerian Arabic -arr I L Karo (Brazil) -ars I L Najdi Arabic -aru I E Aruá (Amazonas State) -arv I L Arbore -arw arw arw I L Arawak -arx I L Aruá (Rodonia State) -ary I L Moroccan Arabic -arz I L Egyptian Arabic -asa I L Asu (Tanzania) -asb I L Assiniboine -asc I L Casuarina Coast Asmat -ase I L American Sign Language -asf I L Auslan -asg I L Cishingini -ash I E Abishira -asi I L Buruwai -asj I L Sari -ask I L Ashkun -asl I L Asilulu -asm asm asm as I L Assamese -asn I L Xingú Asuriní -aso I L Dano -asp I L Algerian Sign Language -asq I L Austrian Sign Language -asr I L Asuri -ass I L Ipulo -ast ast ast I L Asturian -asu I L Tocantins Asurini -asv I L Asoa -asw I L Australian Aborigines Sign Language -asx I L Muratayak -asy I L Yaosakor Asmat -asz I L As -ata I L Pele-Ata -atb I L Zaiwa -atc I E Atsahuaca -atd I L Ata Manobo -ate I L Atemble -atg I L Ivbie North-Okpela-Arhe -ati I L Attié -atj I L Atikamekw -atk I L Ati -atl I L Mt. Iraya Agta -atm I L Ata -atn I L Ashtiani -ato I L Atong (Cameroon) -atp I L Pudtol Atta -atq I L Aralle-Tabulahan -atr I L Waimiri-Atroari -ats I L Gros Ventre -att I L Pamplona Atta -atu I L Reel -atv I L Northern Altai -atw I L Atsugewi -atx I L Arutani -aty I L Aneityum -atz I L Arta -aua I L Asumboa -aub I L Alugu -auc I L Waorani -aud I L Anuta -aug I L Aguna -auh I L Aushi -aui I L Anuki -auj I L Awjilah -auk I L Heyo -aul I L Aulua -aum I L Asu (Nigeria) -aun I L Molmo One -auo I E Auyokawa -aup I L Makayam -auq I L Anus -aur I L Aruek -aut I L Austral -auu I L Auye -auw I L Awyi -aux I E Aurá -auy I L Awiyaana -auz I L Uzbeki Arabic -ava ava ava av I L Avaric -avb I L Avau -avd I L Alviri-Vidari -ave ave ave ae I H Avestan -avi I L Avikam -avk I C Kotava -avl I L Eastern Egyptian Bedawi Arabic -avm I E Angkamuthi -avn I L Avatime -avo I E Agavotaguerra -avs I E Aushiri -avt I L Au -avu I L Avokaya -avv I L Avá-Canoeiro -awa awa awa I L Awadhi -awb I L Awa (Papua New Guinea) -awc I L Cicipu -awe I L Awetí -awg I E Anguthimri -awh I L Awbono -awi I L Aekyom -awk I E Awabakal -awm I L Arawum -awn I L Awngi -awo I L Awak -awr I L Awera -aws I L South Awyu -awt I L Araweté -awu I L Central Awyu -awv I L Jair Awyu -aww I L Awun -awx I L Awara -awy I L Edera Awyu -axb I E Abipon -axe I E Ayerrerenge -axg I E Mato Grosso Arára -axk I L Yaka (Central African Republic) -axl I E Lower Southern Aranda -axm I H Middle Armenian -axx I L Xârâgurè -aya I L Awar -ayb I L Ayizo Gbe -ayc I L Southern Aymara -ayd I E Ayabadhu -aye I L Ayere -ayg I L Ginyanga -ayh I L Hadrami Arabic -ayi I L Leyigha -ayk I L Akuku -ayl I L Libyan Arabic -aym aym aym ay M L Aymara -ayn I L Sanaani Arabic -ayo I L Ayoreo -ayp I L North Mesopotamian Arabic -ayq I L Ayi (Papua New Guinea) -ayr I L Central Aymara -ays I L Sorsogon Ayta -ayt I L Magbukun Ayta -ayu I L Ayu -ayz I L Mai Brat -aza I L Azha -azb I L South Azerbaijani -azd I L Eastern Durango Nahuatl -aze aze aze az M L Azerbaijani -azg I L San Pedro Amuzgos Amuzgo -azj I L North Azerbaijani -azm I L Ipalapa Amuzgo -azn I L Western Durango Nahuatl -azo I L Awing -azt I L Faire Atta -azz I L Highland Puebla Nahuatl -baa I L Babatana -bab I L Bainouk-Gunyuño -bac I L Badui -bae I E Baré -baf I L Nubaca -bag I L Tuki -bah I L Bahamas Creole English -baj I L Barakai -bak bak bak ba I L Bashkir -bal bal bal M L Baluchi -bam bam bam bm I L Bambara -ban ban ban I L Balinese -bao I L Waimaha -bap I L Bantawa -bar I L Bavarian -bas bas bas I L Basa (Cameroon) -bau I L Bada (Nigeria) -bav I L Vengo -baw I L Bambili-Bambui -bax I L Bamun -bay I L Batuley -bba I L Baatonum -bbb I L Barai -bbc I L Batak Toba -bbd I L Bau -bbe I L Bangba -bbf I L Baibai -bbg I L Barama -bbh I L Bugan -bbi I L Barombi -bbj I L Ghomálá' -bbk I L Babanki -bbl I L Bats -bbm I L Babango -bbn I L Uneapa -bbo I L Northern Bobo Madaré -bbp I L West Central Banda -bbq I L Bamali -bbr I L Girawa -bbs I L Bakpinka -bbt I L Mburku -bbu I L Kulung (Nigeria) -bbv I L Karnai -bbw I L Baba -bbx I L Bubia -bby I L Befang -bca I L Central Bai -bcb I L Bainouk-Samik -bcc I L Southern Balochi -bcd I L North Babar -bce I L Bamenyam -bcf I L Bamu -bcg I L Baga Pokur -bch I L Bariai -bci I L Baoulé -bcj I L Bardi -bck I L Bunuba -bcl I L Central Bikol -bcm I L Bannoni -bcn I L Bali (Nigeria) -bco I L Kaluli -bcp I L Bali (Democratic Republic of Congo) -bcq I L Bench -bcr I L Babine -bcs I L Kohumono -bct I L Bendi -bcu I L Awad Bing -bcv I L Shoo-Minda-Nye -bcw I L Bana -bcy I L Bacama -bcz I L Bainouk-Gunyaamolo -bda I L Bayot -bdb I L Basap -bdc I L Emberá-Baudó -bdd I L Bunama -bde I L Bade -bdf I L Biage -bdg I L Bonggi -bdh I L Baka (South Sudan) -bdi I L Burun -bdj I L Bai (South Sudan) -bdk I L Budukh -bdl I L Indonesian Bajau -bdm I L Buduma -bdn I L Baldemu -bdo I L Morom -bdp I L Bende -bdq I L Bahnar -bdr I L West Coast Bajau -bds I L Burunge -bdt I L Bokoto -bdu I L Oroko -bdv I L Bodo Parja -bdw I L Baham -bdx I L Budong-Budong -bdy I L Bandjalang -bdz I L Badeshi -bea I L Beaver -beb I L Bebele -bec I L Iceve-Maci -bed I L Bedoanas -bee I L Byangsi -bef I L Benabena -beg I L Belait -beh I L Biali -bei I L Bekati' -bej bej bej I L Beja -bek I L Bebeli -bel bel bel be I L Belarusian -bem bem bem I L Bemba (Zambia) -ben ben ben bn I L Bengali -beo I L Beami -bep I L Besoa -beq I L Beembe -bes I L Besme -bet I L Guiberoua Béte -beu I L Blagar -bev I L Daloa Bété -bew I L Betawi -bex I L Jur Modo -bey I L Beli (Papua New Guinea) -bez I L Bena (Tanzania) -bfa I L Bari -bfb I L Pauri Bareli -bfc I L Panyi Bai -bfd I L Bafut -bfe I L Betaf -bff I L Bofi -bfg I L Busang Kayan -bfh I L Blafe -bfi I L British Sign Language -bfj I L Bafanji -bfk I L Ban Khor Sign Language -bfl I L Banda-Ndélé -bfm I L Mmen -bfn I L Bunak -bfo I L Malba Birifor -bfp I L Beba -bfq I L Badaga -bfr I L Bazigar -bfs I L Southern Bai -bft I L Balti -bfu I L Gahri -bfw I L Bondo -bfx I L Bantayanon -bfy I L Bagheli -bfz I L Mahasu Pahari -bga I L Gwamhi-Wuri -bgb I L Bobongko -bgc I L Haryanvi -bgd I L Rathwi Bareli -bge I L Bauria -bgf I L Bangandu -bgg I L Bugun -bgi I L Giangan -bgj I L Bangolan -bgk I L Bit -bgl I L Bo (Laos) -bgn I L Western Balochi -bgo I L Baga Koga -bgp I L Eastern Balochi -bgq I L Bagri -bgr I L Bawm Chin -bgs I L Tagabawa -bgt I L Bughotu -bgu I L Mbongno -bgv I L Warkay-Bipim -bgw I L Bhatri -bgx I L Balkan Gagauz Turkish -bgy I L Benggoi -bgz I L Banggai -bha I L Bharia -bhb I L Bhili -bhc I L Biga -bhd I L Bhadrawahi -bhe I L Bhaya -bhf I L Odiai -bhg I L Binandere -bhh I L Bukharic -bhi I L Bhilali -bhj I L Bahing -bhl I L Bimin -bhm I L Bathari -bhn I L Bohtan Neo-Aramaic -bho bho bho I L Bhojpuri -bhp I L Bima -bhq I L Tukang Besi South -bhr I L Bara Malagasy -bhs I L Buwal -bht I L Bhattiyali -bhu I L Bhunjia -bhv I L Bahau -bhw I L Biak -bhx I L Bhalay -bhy I L Bhele -bhz I L Bada (Indonesia) -bia I L Badimaya -bib I L Bissa -bid I L Bidiyo -bie I L Bepour -bif I L Biafada -big I L Biangai -bik bik bik M L Bikol -bil I L Bile -bim I L Bimoba -bin bin bin I L Bini -bio I L Nai -bip I L Bila -biq I L Bipi -bir I L Bisorio -bis bis bis bi I L Bislama -bit I L Berinomo -biu I L Biete -biv I L Southern Birifor -biw I L Kol (Cameroon) -bix I L Bijori -biy I L Birhor -biz I L Baloi -bja I L Budza -bjb I E Banggarla -bjc I L Bariji -bje I L Biao-Jiao Mien -bjf I L Barzani Jewish Neo-Aramaic -bjg I L Bidyogo -bjh I L Bahinemo -bji I L Burji -bjj I L Kanauji -bjk I L Barok -bjl I L Bulu (Papua New Guinea) -bjm I L Bajelani -bjn I L Banjar -bjo I L Mid-Southern Banda -bjp I L Fanamaket -bjr I L Binumarien -bjs I L Bajan -bjt I L Balanta-Ganja -bju I L Busuu -bjv I L Bedjond -bjw I L Bakwé -bjx I L Banao Itneg -bjy I E Bayali -bjz I L Baruga -bka I L Kyak -bkc I L Baka (Cameroon) -bkd I L Binukid -bkf I L Beeke -bkg I L Buraka -bkh I L Bakoko -bki I L Baki -bkj I L Pande -bkk I L Brokskat -bkl I L Berik -bkm I L Kom (Cameroon) -bkn I L Bukitan -bko I L Kwa' -bkp I L Boko (Democratic Republic of Congo) -bkq I L Bakairí -bkr I L Bakumpai -bks I L Northern Sorsoganon -bkt I L Boloki -bku I L Buhid -bkv I L Bekwarra -bkw I L Bekwel -bkx I L Baikeno -bky I L Bokyi -bkz I L Bungku -bla bla bla I L Siksika -blb I L Bilua -blc I L Bella Coola -bld I L Bolango -ble I L Balanta-Kentohe -blf I L Buol -blh I L Kuwaa -bli I L Bolia -blj I L Bolongan -blk I L Pa'o Karen -bll I E Biloxi -blm I L Beli (South Sudan) -bln I L Southern Catanduanes Bikol -blo I L Anii -blp I L Blablanga -blq I L Baluan-Pam -blr I L Blang -bls I L Balaesang -blt I L Tai Dam -blv I L Kibala -blw I L Balangao -blx I L Mag-Indi Ayta -bly I L Notre -blz I L Balantak -bma I L Lame -bmb I L Bembe -bmc I L Biem -bmd I L Baga Manduri -bme I L Limassa -bmf I L Bom-Kim -bmg I L Bamwe -bmh I L Kein -bmi I L Bagirmi -bmj I L Bote-Majhi -bmk I L Ghayavi -bml I L Bomboli -bmm I L Northern Betsimisaraka Malagasy -bmn I E Bina (Papua New Guinea) -bmo I L Bambalang -bmp I L Bulgebi -bmq I L Bomu -bmr I L Muinane -bms I L Bilma Kanuri -bmt I L Biao Mon -bmu I L Somba-Siawari -bmv I L Bum -bmw I L Bomwali -bmx I L Baimak -bmz I L Baramu -bna I L Bonerate -bnb I L Bookan -bnc M L Bontok -bnd I L Banda (Indonesia) -bne I L Bintauna -bnf I L Masiwang -bng I L Benga -bni I L Bangi -bnj I L Eastern Tawbuid -bnk I L Bierebo -bnl I L Boon -bnm I L Batanga -bnn I L Bunun -bno I L Bantoanon -bnp I L Bola -bnq I L Bantik -bnr I L Butmas-Tur -bns I L Bundeli -bnu I L Bentong -bnv I L Bonerif -bnw I L Bisis -bnx I L Bangubangu -bny I L Bintulu -bnz I L Beezen -boa I L Bora -bob I L Aweer -bod tib bod bo I L Tibetan -boe I L Mundabli-Mufu -bof I L Bolon -bog I L Bamako Sign Language -boh I L Boma -boi I E Barbareño -boj I L Anjam -bok I L Bonjo -bol I L Bole -bom I L Berom -bon I L Bine -boo I L Tiemacèwè Bozo -bop I L Bonkiman -boq I L Bogaya -bor I L Borôro -bos bos bos bs I L Bosnian -bot I L Bongo -bou I L Bondei -bov I L Tuwuli -bow I E Rema -box I L Buamu -boy I L Bodo (Central African Republic) -boz I L Tiéyaxo Bozo -bpa I L Daakaka -bpc I L Mbuk -bpd I L Banda-Banda -bpe I L Bauni -bpg I L Bonggo -bph I L Botlikh -bpi I L Bagupi -bpj I L Binji -bpk I L Orowe -bpl I L Broome Pearling Lugger Pidgin -bpm I L Biyom -bpn I L Dzao Min -bpo I L Anasi -bpp I L Kaure -bpq I L Banda Malay -bpr I L Koronadal Blaan -bps I L Sarangani Blaan -bpt I E Barrow Point -bpu I L Bongu -bpv I L Bian Marind -bpw I L Bo (Papua New Guinea) -bpx I L Palya Bareli -bpy I L Bishnupriya -bpz I L Bilba -bqa I L Tchumbuli -bqb I L Bagusa -bqc I L Boko (Benin) -bqd I L Bung -bqf I E Baga Kaloum -bqg I L Bago-Kusuntu -bqh I L Baima -bqi I L Bakhtiari -bqj I L Bandial -bqk I L Banda-Mbrès -bql I L Karian -bqm I L Wumboko -bqn I L Bulgarian Sign Language -bqo I L Balo -bqp I L Busa -bqq I L Biritai -bqr I L Burusu -bqs I L Bosngun -bqt I L Bamukumbit -bqu I L Boguru -bqv I L Koro Wachi -bqw I L Buru (Nigeria) -bqx I L Baangi -bqy I L Bengkala Sign Language -bqz I L Bakaka -bra bra bra I L Braj -brb I L Brao -brc I E Berbice Creole Dutch -brd I L Baraamu -bre bre bre br I L Breton -brf I L Bira -brg I L Baure -brh I L Brahui -bri I L Mokpwe -brj I L Bieria -brk I E Birked -brl I L Birwa -brm I L Barambu -brn I L Boruca -bro I L Brokkat -brp I L Barapasi -brq I L Breri -brr I L Birao -brs I L Baras -brt I L Bitare -bru I L Eastern Bru -brv I L Western Bru -brw I L Bellari -brx I L Bodo (India) -bry I L Burui -brz I L Bilbil -bsa I L Abinomn -bsb I L Brunei Bisaya -bsc I L Bassari -bse I L Wushi -bsf I L Bauchi -bsg I L Bashkardi -bsh I L Kati -bsi I L Bassossi -bsj I L Bangwinji -bsk I L Burushaski -bsl I E Basa-Gumna -bsm I L Busami -bsn I L Barasana-Eduria -bso I L Buso -bsp I L Baga Sitemu -bsq I L Bassa -bsr I L Bassa-Kontagora -bss I L Akoose -bst I L Basketo -bsu I L Bahonsuai -bsv I E Baga Sobané -bsw I L Baiso -bsx I L Yangkam -bsy I L Sabah Bisaya -bta I L Bata -btc I L Bati (Cameroon) -btd I L Batak Dairi -bte I E Gamo-Ningi -btf I L Birgit -btg I L Gagnoa Bété -bth I L Biatah Bidayuh -bti I L Burate -btj I L Bacanese Malay -btm I L Batak Mandailing -btn I L Ratagnon -bto I L Rinconada Bikol -btp I L Budibud -btq I L Batek -btr I L Baetora -bts I L Batak Simalungun -btt I L Bete-Bendi -btu I L Batu -btv I L Bateri -btw I L Butuanon -btx I L Batak Karo -bty I L Bobot -btz I L Batak Alas-Kluet -bua bua bua M L Buriat -bub I L Bua -buc I L Bushi -bud I L Ntcham -bue I E Beothuk -buf I L Bushoong -bug bug bug I L Buginese -buh I L Younuo Bunu -bui I L Bongili -buj I L Basa-Gurmana -buk I L Bugawac -bul bul bul bg I L Bulgarian -bum I L Bulu (Cameroon) -bun I L Sherbro -buo I L Terei -bup I L Busoa -buq I L Brem -bus I L Bokobaru -but I L Bungain -buu I L Budu -buv I L Bun -buw I L Bubi -bux I L Boghom -buy I L Bullom So -buz I L Bukwen -bva I L Barein -bvb I L Bube -bvc I L Baelelea -bvd I L Baeggu -bve I L Berau Malay -bvf I L Boor -bvg I L Bonkeng -bvh I L Bure -bvi I L Belanda Viri -bvj I L Baan -bvk I L Bukat -bvl I L Bolivian Sign Language -bvm I L Bamunka -bvn I L Buna -bvo I L Bolgo -bvp I L Bumang -bvq I L Birri -bvr I L Burarra -bvt I L Bati (Indonesia) -bvu I L Bukit Malay -bvv I E Baniva -bvw I L Boga -bvx I L Dibole -bvy I L Baybayanon -bvz I L Bauzi -bwa I L Bwatoo -bwb I L Namosi-Naitasiri-Serua -bwc I L Bwile -bwd I L Bwaidoka -bwe I L Bwe Karen -bwf I L Boselewa -bwg I L Barwe -bwh I L Bishuo -bwi I L Baniwa -bwj I L Láá Láá Bwamu -bwk I L Bauwaki -bwl I L Bwela -bwm I L Biwat -bwn I L Wunai Bunu -bwo I L Boro (Ethiopia) -bwp I L Mandobo Bawah -bwq I L Southern Bobo Madaré -bwr I L Bura-Pabir -bws I L Bomboma -bwt I L Bafaw-Balong -bwu I L Buli (Ghana) -bww I L Bwa -bwx I L Bu-Nao Bunu -bwy I L Cwi Bwamu -bwz I L Bwisi -bxa I L Tairaha -bxb I L Belanda Bor -bxc I L Molengue -bxd I L Pela -bxe I L Birale -bxf I L Bilur -bxg I L Bangala -bxh I L Buhutu -bxi I E Pirlatapa -bxj I L Bayungu -bxk I L Bukusu -bxl I L Jalkunan -bxm I L Mongolia Buriat -bxn I L Burduna -bxo I L Barikanchi -bxp I L Bebil -bxq I L Beele -bxr I L Russia Buriat -bxs I L Busam -bxu I L China Buriat -bxv I L Berakou -bxw I L Bankagooma -bxz I L Binahari -bya I L Batak -byb I L Bikya -byc I L Ubaghara -byd I L Benyadu' -bye I L Pouye -byf I L Bete -byg I E Baygo -byh I L Bhujel -byi I L Buyu -byj I L Bina (Nigeria) -byk I L Biao -byl I L Bayono -bym I L Bidjara -byn byn byn I L Bilin -byo I L Biyo -byp I L Bumaji -byq I E Basay -byr I L Baruya -bys I L Burak -byt I E Berti -byv I L Medumba -byw I L Belhariya -byx I L Qaqet -byz I L Banaro -bza I L Bandi -bzb I L Andio -bzc I L Southern Betsimisaraka Malagasy -bzd I L Bribri -bze I L Jenaama Bozo -bzf I L Boikin -bzg I L Babuza -bzh I L Mapos Buang -bzi I L Bisu -bzj I L Belize Kriol English -bzk I L Nicaragua Creole English -bzl I L Boano (Sulawesi) -bzm I L Bolondo -bzn I L Boano (Maluku) -bzo I L Bozaba -bzp I L Kemberano -bzq I L Buli (Indonesia) -bzr I E Biri -bzs I L Brazilian Sign Language -bzt I C Brithenig -bzu I L Burmeso -bzv I L Naami -bzw I L Basa (Nigeria) -bzx I L Kɛlɛngaxo Bozo -bzy I L Obanliku -bzz I L Evant -caa I L Chortí -cab I L Garifuna -cac I L Chuj -cad cad cad I L Caddo -cae I L Lehar -caf I L Southern Carrier -cag I L Nivaclé -cah I L Cahuarano -caj I E Chané -cak I L Kaqchikel -cal I L Carolinian -cam I L Cemuhî -can I L Chambri -cao I L Chácobo -cap I L Chipaya -caq I L Car Nicobarese -car car car I L Galibi Carib -cas I L Tsimané -cat cat cat ca I L Catalan -cav I L Cavineña -caw I L Callawalla -cax I L Chiquitano -cay I L Cayuga -caz I E Canichana -cbb I L Cabiyarí -cbc I L Carapana -cbd I L Carijona -cbg I L Chimila -cbi I L Chachi -cbj I L Ede Cabe -cbk I L Chavacano -cbl I L Bualkhaw Chin -cbn I L Nyahkur -cbo I L Izora -cbq I L Tsucuba -cbr I L Cashibo-Cacataibo -cbs I L Cashinahua -cbt I L Chayahuita -cbu I L Candoshi-Shapra -cbv I L Cacua -cbw I L Kinabalian -cby I L Carabayo -ccc I L Chamicuro -ccd I L Cafundo Creole -cce I L Chopi -ccg I L Samba Daka -cch I L Atsam -ccj I L Kasanga -ccl I L Cutchi-Swahili -ccm I L Malaccan Creole Malay -cco I L Comaltepec Chinantec -ccp I L Chakma -ccr I E Cacaopera -cda I L Choni -cde I L Chenchu -cdf I L Chiru -cdh I L Chambeali -cdi I L Chodri -cdj I L Churahi -cdm I L Chepang -cdn I L Chaudangsi -cdo I L Min Dong Chinese -cdr I L Cinda-Regi-Tiyal -cds I L Chadian Sign Language -cdy I L Chadong -cdz I L Koda -cea I E Lower Chehalis -ceb ceb ceb I L Cebuano -ceg I L Chamacoco -cek I L Eastern Khumi Chin -cen I L Cen -ces cze ces cs I L Czech -cet I L Centúúm -cey I L Ekai Chin -cfa I L Dijim-Bwilim -cfd I L Cara -cfg I L Como Karim -cfm I L Falam Chin -cga I L Changriwa -cgc I L Kagayanen -cgg I L Chiga -cgk I L Chocangacakha -cha cha cha ch I L Chamorro -chb chb chb I E Chibcha -chc I E Catawba -chd I L Highland Oaxaca Chontal -che che che ce I L Chechen -chf I L Tabasco Chontal -chg chg chg I E Chagatai -chh I E Chinook -chj I L Ojitlán Chinantec -chk chk chk I L Chuukese -chl I L Cahuilla -chm chm chm M L Mari (Russia) -chn chn chn I L Chinook jargon -cho cho cho I L Choctaw -chp chp chp I L Chipewyan -chq I L Quiotepec Chinantec -chr chr chr I L Cherokee -cht I E Cholón -chu chu chu cu I H Church Slavic -chv chv chv cv I L Chuvash -chw I L Chuwabu -chx I L Chantyal -chy chy chy I L Cheyenne -chz I L Ozumacín Chinantec -cia I L Cia-Cia -cib I L Ci Gbe -cic I L Chickasaw -cid I E Chimariko -cie I L Cineni -cih I L Chinali -cik I L Chitkuli Kinnauri -cim I L Cimbrian -cin I L Cinta Larga -cip I L Chiapanec -cir I L Tiri -ciw I L Chippewa -ciy I L Chaima -cja I L Western Cham -cje I L Chru -cjh I E Upper Chehalis -cji I L Chamalal -cjk I L Chokwe -cjm I L Eastern Cham -cjn I L Chenapian -cjo I L Ashéninka Pajonal -cjp I L Cabécar -cjs I L Shor -cjv I L Chuave -cjy I L Jinyu Chinese -ckb I L Central Kurdish -ckh I L Chak -ckl I L Cibak -ckm I L Chakavian -ckn I L Kaang Chin -cko I L Anufo -ckq I L Kajakse -ckr I L Kairak -cks I L Tayo -ckt I L Chukot -cku I L Koasati -ckv I L Kavalan -ckx I L Caka -cky I L Cakfem-Mushere -ckz I L Cakchiquel-Quiché Mixed Language -cla I L Ron -clc I L Chilcotin -cld I L Chaldean Neo-Aramaic -cle I L Lealao Chinantec -clh I L Chilisso -cli I L Chakali -clj I L Laitu Chin -clk I L Idu-Mishmi -cll I L Chala -clm I L Klallam -clo I L Lowland Oaxaca Chontal -cls I H Classical Sanskrit -clt I L Lautu Chin -clu I L Caluyanun -clw I L Chulym -cly I L Eastern Highland Chatino -cma I L Maa -cme I L Cerma -cmg I H Classical Mongolian -cmi I L Emberá-Chamí -cml I L Campalagian -cmm I E Michigamea -cmn I L Mandarin Chinese -cmo I L Central Mnong -cmr I L Mro-Khimi Chin -cms I H Messapic -cmt I L Camtho -cna I L Changthang -cnb I L Chinbon Chin -cnc I L Côông -cng I L Northern Qiang -cnh I L Hakha Chin -cni I L Asháninka -cnk I L Khumi Chin -cnl I L Lalana Chinantec -cno I L Con -cnp I L Northern Ping Chinese -cnq I L Chung -cnr cnr cnr I L Montenegrin -cns I L Central Asmat -cnt I L Tepetotutla Chinantec -cnu I L Chenoua -cnw I L Ngawn Chin -cnx I H Middle Cornish -coa I L Cocos Islands Malay -cob I E Chicomuceltec -coc I L Cocopa -cod I L Cocama-Cocamilla -coe I L Koreguaje -cof I L Colorado -cog I L Chong -coh I L Chonyi-Dzihana-Kauma -coj I E Cochimi -cok I L Santa Teresa Cora -col I L Columbia-Wenatchi -com I L Comanche -con I L Cofán -coo I L Comox -cop cop cop I E Coptic -coq I E Coquille -cor cor cor kw I L Cornish -cos cos cos co I L Corsican -cot I L Caquinte -cou I L Wamey -cov I L Cao Miao -cow I E Cowlitz -cox I L Nanti -coz I L Chochotec -cpa I L Palantla Chinantec -cpb I L Ucayali-Yurúa Ashéninka -cpc I L Ajyíninka Apurucayali -cpg I E Cappadocian Greek -cpi I L Chinese Pidgin English -cpn I L Cherepon -cpo I L Kpeego -cps I L Capiznon -cpu I L Pichis Ashéninka -cpx I L Pu-Xian Chinese -cpy I L South Ucayali Ashéninka -cqd I L Chuanqiandian Cluster Miao -cra I L Chara -crb I E Island Carib -crc I L Lonwolwol -crd I L Coeur d'Alene -cre cre cre cr M L Cree -crf I E Caramanta -crg I L Michif -crh crh crh I L Crimean Tatar -cri I L Sãotomense -crj I L Southern East Cree -crk I L Plains Cree -crl I L Northern East Cree -crm I L Moose Cree -crn I L El Nayar Cora -cro I L Crow -crq I L Iyo'wujwa Chorote -crr I E Carolina Algonquian -crs I L Seselwa Creole French -crt I L Iyojwa'ja Chorote -crv I L Chaura -crw I L Chrau -crx I L Carrier -cry I L Cori -crz I E Cruzeño -csa I L Chiltepec Chinantec -csb csb csb I L Kashubian -csc I L Catalan Sign Language -csd I L Chiangmai Sign Language -cse I L Czech Sign Language -csf I L Cuba Sign Language -csg I L Chilean Sign Language -csh I L Asho Chin -csi I E Coast Miwok -csj I L Songlai Chin -csk I L Jola-Kasa -csl I L Chinese Sign Language -csm I L Central Sierra Miwok -csn I L Colombian Sign Language -cso I L Sochiapam Chinantec -csp I L Southern Ping Chinese -csq I L Croatia Sign Language -csr I L Costa Rican Sign Language -css I E Southern Ohlone -cst I L Northern Ohlone -csv I L Sumtu Chin -csw I L Swampy Cree -csx I L Cambodian Sign Language -csy I L Siyin Chin -csz I L Coos -cta I L Tataltepec Chatino -ctc I E Chetco -ctd I L Tedim Chin -cte I L Tepinapa Chinantec -ctg I L Chittagonian -cth I L Thaiphum Chin -ctl I L Tlacoatzintepec Chinantec -ctm I E Chitimacha -ctn I L Chhintange -cto I L Emberá-Catío -ctp I L Western Highland Chatino -cts I L Northern Catanduanes Bikol -ctt I L Wayanad Chetti -ctu I L Chol -cty I L Moundadan Chetty -ctz I L Zacatepec Chatino -cua I L Cua -cub I L Cubeo -cuc I L Usila Chinantec -cuh I L Chuka -cui I L Cuiba -cuj I L Mashco Piro -cuk I L San Blas Kuna -cul I L Culina -cuo I E Cumanagoto -cup I E Cupeño -cuq I L Cun -cur I L Chhulung -cut I L Teutila Cuicatec -cuu I L Tai Ya -cuv I L Cuvok -cuw I L Chukwa -cux I L Tepeuxila Cuicatec -cuy I L Cuitlatec -cvg I L Chug -cvn I L Valle Nacional Chinantec -cwa I L Kabwa -cwb I L Maindo -cwd I L Woods Cree -cwe I L Kwere -cwg I L Chewong -cwt I L Kuwaataay -cxh I L Cha'ari -cya I L Nopala Chatino -cyb I E Cayubaba -cym wel cym cy I L Welsh -cyo I L Cuyonon -czh I L Huizhou Chinese -czk I E Knaanic -czn I L Zenzontepec Chatino -czo I L Min Zhong Chinese -czt I L Zotung Chin -daa I L Dangaléat -dac I L Dambi -dad I L Marik -dae I L Duupa -dag I L Dagbani -dah I L Gwahatike -dai I L Day -daj I L Dar Fur Daju -dak dak dak I L Dakota -dal I L Dahalo -dam I L Damakawa -dan dan dan da I L Danish -dao I L Daai Chin -daq I L Dandami Maria -dar dar dar I L Dargwa -das I L Daho-Doo -dau I L Dar Sila Daju -dav I L Taita -daw I L Davawenyo -dax I L Dayi -daz I L Moi-Wadea -dba I L Bangime -dbb I L Deno -dbd I L Dadiya -dbe I L Dabe -dbf I L Edopi -dbg I L Dogul Dom Dogon -dbi I L Doka -dbj I L Ida'an -dbl I L Dyirbal -dbm I L Duguri -dbn I L Duriankere -dbo I L Dulbu -dbp I L Duwai -dbq I L Daba -dbr I L Dabarre -dbt I L Ben Tey Dogon -dbu I L Bondum Dom Dogon -dbv I L Dungu -dbw I L Bankan Tey Dogon -dby I L Dibiyaso -dcc I L Deccan -dcr I E Negerhollands -dda I E Dadi Dadi -ddd I L Dongotono -dde I L Doondo -ddg I L Fataluku -ddi I L West Goodenough -ddj I L Jaru -ddn I L Dendi (Benin) -ddo I L Dido -ddr I E Dhudhuroa -dds I L Donno So Dogon -ddw I L Dawera-Daweloor -dec I L Dagik -ded I L Dedua -dee I L Dewoin -def I L Dezfuli -deg I L Degema -deh I L Dehwari -dei I L Demisa -del del del M L Delaware -dem I L Dem -den den den M L Slavey -dep I E Pidgin Delaware -deq I L Dendi (Central African Republic) -der I L Deori -des I L Desano -deu ger deu de I L German -dev I L Domung -dez I L Dengese -dga I L Southern Dagaare -dgb I L Bunoge Dogon -dgc I L Casiguran Dumagat Agta -dgd I L Dagaari Dioula -dge I L Degenan -dgg I L Doga -dgh I L Dghwede -dgi I L Northern Dagara -dgk I L Dagba -dgl I L Andaandi -dgn I E Dagoman -dgo I L Dogri (individual language) -dgr dgr dgr I L Tlicho -dgs I L Dogoso -dgt I E Ndra'ngith -dgw I E Daungwurrung -dgx I L Doghoro -dgz I L Daga -dhd I L Dhundari -dhg I L Dhangu-Djangu -dhi I L Dhimal -dhl I L Dhalandji -dhm I L Zemba -dhn I L Dhanki -dho I L Dhodia -dhr I L Dhargari -dhs I L Dhaiso -dhu I E Dhurga -dhv I L Dehu -dhw I L Dhanwar (Nepal) -dhx I L Dhungaloo -dia I L Dia -dib I L South Central Dinka -dic I L Lakota Dida -did I L Didinga -dif I E Dieri -dig I L Digo -dih I L Kumiai -dii I L Dimbong -dij I L Dai -dik I L Southwestern Dinka -dil I L Dilling -dim I L Dime -din din din M L Dinka -dio I L Dibo -dip I L Northeastern Dinka -diq I L Dimli (individual language) -dir I L Dirim -dis I L Dimasa -diu I L Diriku -div div div dv I L Dhivehi -diw I L Northwestern Dinka -dix I L Dixon Reef -diy I L Diuwe -diz I L Ding -dja I E Djadjawurrung -djb I L Djinba -djc I L Dar Daju Daju -djd I L Djamindjung -dje I L Zarma -djf I E Djangun -dji I L Djinang -djj I L Djeebbana -djk I L Eastern Maroon Creole -djm I L Jamsay Dogon -djn I L Jawoyn -djo I L Jangkang -djr I L Djambarrpuyngu -dju I L Kapriman -djw I E Djawi -dka I L Dakpakha -dkg I L Kadung -dkk I L Dakka -dkr I L Kuijau -dks I L Southeastern Dinka -dkx I L Mazagway -dlg I L Dolgan -dlk I L Dahalik -dlm I E Dalmatian -dln I L Darlong -dma I L Duma -dmb I L Mombo Dogon -dmc I L Gavak -dmd I E Madhi Madhi -dme I L Dugwor -dmf I E Medefaidrin -dmg I L Upper Kinabatangan -dmk I L Domaaki -dml I L Dameli -dmm I L Dama -dmo I L Kemedzung -dmr I L East Damar -dms I L Dampelas -dmu I L Dubu -dmv I L Dumpas -dmw I L Mudburra -dmx I L Dema -dmy I L Demta -dna I L Upper Grand Valley Dani -dnd I L Daonda -dne I L Ndendeule -dng I L Dungan -dni I L Lower Grand Valley Dani -dnj I L Dan -dnk I L Dengka -dnn I L Dzùùngoo -dno I L Ndrulo -dnr I L Danaru -dnt I L Mid Grand Valley Dani -dnu I L Danau -dnv I L Danu -dnw I L Western Dani -dny I L Dení -doa I L Dom -dob I L Dobu -doc I L Northern Dong -doe I L Doe -dof I L Domu -doh I L Dong -doi doi doi M L Dogri (macrolanguage) -dok I L Dondo -dol I L Doso -don I L Toura (Papua New Guinea) -doo I L Dongo -dop I L Lukpa -doq I L Dominican Sign Language -dor I L Dori'o -dos I L Dogosé -dot I L Dass -dov I L Dombe -dow I L Doyayo -dox I L Bussa -doy I L Dompo -doz I L Dorze -dpp I L Papar -drb I L Dair -drc I L Minderico -drd I L Darmiya -dre I L Dolpo -drg I L Rungus -dri I L C'Lela -drl I L Paakantyi -drn I L West Damar -dro I L Daro-Matu Melanau -drq I E Dura -drs I L Gedeo -drt I L Drents -dru I L Rukai -dry I L Darai -dsb dsb dsb I L Lower Sorbian -dse I L Dutch Sign Language -dsh I L Daasanach -dsi I L Disa -dsk I L Dokshi -dsl I L Danish Sign Language -dsn I E Dusner -dso I L Desiya -dsq I L Tadaksahak -dsz I L Mardin Sign Language -dta I L Daur -dtb I L Labuk-Kinabatangan Kadazan -dtd I L Ditidaht -dth I E Adithinngithigh -dti I L Ana Tinga Dogon -dtk I L Tene Kan Dogon -dtm I L Tomo Kan Dogon -dtn I L Daatsʼíin -dto I L Tommo So Dogon -dtp I L Kadazan Dusun -dtr I L Lotud -dts I L Toro So Dogon -dtt I L Toro Tegu Dogon -dtu I L Tebul Ure Dogon -dty I L Dotyali -dua dua dua I L Duala -dub I L Dubli -duc I L Duna -due I L Umiray Dumaget Agta -duf I L Dumbea -dug I L Duruma -duh I L Dungra Bhil -dui I L Dumun -duk I L Uyajitaya -dul I L Alabat Island Agta -dum dum dum I H Middle Dutch (ca. 1050-1350) -dun I L Dusun Deyah -duo I L Dupaninan Agta -dup I L Duano -duq I L Dusun Malang -dur I L Dii -dus I L Dumi -duu I L Drung -duv I L Duvle -duw I L Dusun Witu -dux I L Duungooma -duy I E Dicamay Agta -duz I E Duli-Gey -dva I L Duau -dwa I L Diri -dwk I L Dawik Kui -dwr I L Dawro -dws I C Dutton World Speedwords -dwu I L Dhuwal -dww I L Dawawa -dwy I L Dhuwaya -dwz I L Dewas Rai -dya I L Dyan -dyb I E Dyaberdyaber -dyd I E Dyugun -dyg I E Villa Viciosa Agta -dyi I L Djimini Senoufo -dyl I L Bhutanese Sign Language -dym I L Yanda Dom Dogon -dyn I L Dyangadi -dyo I L Jola-Fonyi -dyr I L Dyarim -dyu dyu dyu I L Dyula -dyy I L Djabugay -dza I L Tunzu -dzd I L Daza -dze I E Djiwarli -dzg I L Dazaga -dzl I L Dzalakha -dzn I L Dzando -dzo dzo dzo dz I L Dzongkha -eaa I E Karenggapa -ebc I L Beginci -ebg I L Ebughu -ebk I L Eastern Bontok -ebo I L Teke-Ebo -ebr I L Ebrié -ebu I L Embu -ecr I H Eteocretan -ecs I L Ecuadorian Sign Language -ecy I H Eteocypriot -eee I L E -efa I L Efai -efe I L Efe -efi efi efi I L Efik -ega I L Ega -egl I L Emilian -egm I L Benamanga -ego I L Eggon -egy egy egy I H Egyptian (Ancient) -ehs I L Miyakubo Sign Language -ehu I L Ehueun -eip I L Eipomek -eit I L Eitiep -eiv I L Askopan -eja I L Ejamat -eka eka eka I L Ekajuk -eke I L Ekit -ekg I L Ekari -eki I L Eki -ekk I L Standard Estonian -ekl I L Kol (Bangladesh) -ekm I L Elip -eko I L Koti -ekp I L Ekpeye -ekr I L Yace -eky I L Eastern Kayah -ele I L Elepi -elh I L El Hugeirat -eli I E Nding -elk I L Elkei -ell gre ell el I L Modern Greek (1453-) -elm I L Eleme -elo I L El Molo -elu I L Elu -elx elx elx I H Elamite -ema I L Emai-Iuleha-Ora -emb I L Embaloh -eme I L Emerillon -emg I L Eastern Meohang -emi I L Mussau-Emira -emk I L Eastern Maninkakan -emm I E Mamulique -emn I L Eman -emp I L Northern Emberá -emq I L Eastern Minyag -ems I L Pacific Gulf Yupik -emu I L Eastern Muria -emw I L Emplawas -emx I L Erromintxela -emy I H Epigraphic Mayan -emz I L Mbessa -ena I L Apali -enb I L Markweeta -enc I L En -end I L Ende -enf I L Forest Enets -eng eng eng en I L English -enh I L Tundra Enets -enl I L Enlhet -enm enm enm I H Middle English (1100-1500) -enn I L Engenni -eno I L Enggano -enq I L Enga -enr I L Emumu -enu I L Enu -env I L Enwan (Edo State) -enw I L Enwan (Akwa Ibom State) -enx I L Enxet -eot I L Beti (Côte d'Ivoire) -epi I L Epie -epo epo epo eo I C Esperanto -era I L Eravallan -erg I L Sie -erh I L Eruwa -eri I L Ogea -erk I L South Efate -ero I L Horpa -err I E Erre -ers I L Ersu -ert I L Eritai -erw I L Erokwanas -ese I L Ese Ejja -esg I L Aheri Gondi -esh I L Eshtehardi -esi I L North Alaskan Inupiatun -esk I L Northwest Alaska Inupiatun -esl I L Egypt Sign Language -esm I E Esuma -esn I L Salvadoran Sign Language -eso I L Estonian Sign Language -esq I E Esselen -ess I L Central Siberian Yupik -est est est et M L Estonian -esu I L Central Yupik -esy I L Eskayan -etb I L Etebi -etc I E Etchemin -eth I L Ethiopian Sign Language -etn I L Eton (Vanuatu) -eto I L Eton (Cameroon) -etr I L Edolo -ets I L Yekhee -ett I H Etruscan -etu I L Ejagham -etx I L Eten -etz I L Semimi -eud I E Eudeve -eus baq eus eu I L Basque -eve I L Even -evh I L Uvbie -evn I L Evenki -ewe ewe ewe ee I L Ewe -ewo ewo ewo I L Ewondo -ext I L Extremaduran -eya I E Eyak -eyo I L Keiyo -eza I L Ezaa -eze I L Uzekwe -faa I L Fasu -fab I L Fa d'Ambu -fad I L Wagi -faf I L Fagani -fag I L Finongan -fah I L Baissa Fali -fai I L Faiwol -faj I L Faita -fak I L Fang (Cameroon) -fal I L South Fali -fam I L Fam -fan fan fan I L Fang (Equatorial Guinea) -fao fao fao fo I L Faroese -fap I L Paloor -far I L Fataleka -fas per fas fa M L Persian -fat fat fat I L Fanti -fau I L Fayu -fax I L Fala -fay I L Southwestern Fars -faz I L Northwestern Fars -fbl I L West Albay Bikol -fcs I L Quebec Sign Language -fer I L Feroge -ffi I L Foia Foia -ffm I L Maasina Fulfulde -fgr I L Fongoro -fia I L Nobiin -fie I L Fyer -fif I L Faifi -fij fij fij fj I L Fijian -fil fil fil I L Filipino -fin fin fin fi I L Finnish -fip I L Fipa -fir I L Firan -fit I L Tornedalen Finnish -fiw I L Fiwaga -fkk I L Kirya-Konzəl -fkv I L Kven Finnish -fla I L Kalispel-Pend d'Oreille -flh I L Foau -fli I L Fali -fll I L North Fali -fln I E Flinders Island -flr I L Fuliiru -fly I L Flaaitaal -fmp I L Fe'fe' -fmu I L Far Western Muria -fnb I L Fanbak -fng I L Fanagalo -fni I L Fania -fod I L Foodo -foi I L Foi -fom I L Foma -fon fon fon I L Fon -for I L Fore -fos I E Siraya -fpe I L Fernando Po Creole English -fqs I L Fas -fra fre fra fr I L French -frc I L Cajun French -frd I L Fordata -frk I H Frankish -frm frm frm I H Middle French (ca. 1400-1600) -fro fro fro I H Old French (842-ca. 1400) -frp I L Arpitan -frq I L Forak -frr frr frr I L Northern Frisian -frs frs frs I L Eastern Frisian -frt I L Fortsenal -fry fry fry fy I L Western Frisian -fse I L Finnish Sign Language -fsl I L French Sign Language -fss I L Finland-Swedish Sign Language -fub I L Adamawa Fulfulde -fuc I L Pulaar -fud I L East Futuna -fue I L Borgu Fulfulde -fuf I L Pular -fuh I L Western Niger Fulfulde -fui I L Bagirmi Fulfulde -fuj I L Ko -ful ful ful ff M L Fulah -fum I L Fum -fun I L Fulniô -fuq I L Central-Eastern Niger Fulfulde -fur fur fur I L Friulian -fut I L Futuna-Aniwa -fuu I L Furu -fuv I L Nigerian Fulfulde -fuy I L Fuyug -fvr I L Fur -fwa I L Fwâi -fwe I L Fwe -gaa gaa gaa I L Ga -gab I L Gabri -gac I L Mixed Great Andamanese -gad I L Gaddang -gae I L Guarequena -gaf I L Gende -gag I L Gagauz -gah I L Alekano -gai I L Borei -gaj I L Gadsup -gak I L Gamkonora -gal I L Galolen -gam I L Kandawo -gan I L Gan Chinese -gao I L Gants -gap I L Gal -gaq I L Gata' -gar I L Galeya -gas I L Adiwasi Garasia -gat I L Kenati -gau I L Mudhili Gadaba -gaw I L Nobonob -gax I L Borana-Arsi-Guji Oromo -gay gay gay I L Gayo -gaz I L West Central Oromo -gba gba gba M L Gbaya (Central African Republic) -gbb I L Kaytetye -gbd I L Karajarri -gbe I L Niksek -gbf I L Gaikundi -gbg I L Gbanziri -gbh I L Defi Gbe -gbi I L Galela -gbj I L Bodo Gadaba -gbk I L Gaddi -gbl I L Gamit -gbm I L Garhwali -gbn I L Mo'da -gbo I L Northern Grebo -gbp I L Gbaya-Bossangoa -gbq I L Gbaya-Bozoum -gbr I L Gbagyi -gbs I L Gbesi Gbe -gbu I L Gagadu -gbv I L Gbanu -gbw I L Gabi-Gabi -gbx I L Eastern Xwla Gbe -gby I L Gbari -gbz I L Zoroastrian Dari -gcc I L Mali -gcd I E Ganggalida -gce I E Galice -gcf I L Guadeloupean Creole French -gcl I L Grenadian Creole English -gcn I L Gaina -gcr I L Guianese Creole French -gct I L Colonia Tovar German -gda I L Gade Lohar -gdb I L Pottangi Ollar Gadaba -gdc I E Gugu Badhun -gdd I L Gedaged -gde I L Gude -gdf I L Guduf-Gava -gdg I L Ga'dang -gdh I L Gadjerawang -gdi I L Gundi -gdj I L Gurdjar -gdk I L Gadang -gdl I L Dirasha -gdm I L Laal -gdn I L Umanakaina -gdo I L Ghodoberi -gdq I L Mehri -gdr I L Wipi -gds I L Ghandruk Sign Language -gdt I E Kungardutyi -gdu I L Gudu -gdx I L Godwari -gea I L Geruma -geb I L Kire -gec I L Gboloo Grebo -ged I L Gade -gef I L Gerai -geg I L Gengle -geh I L Hutterite German -gei I L Gebe -gej I L Gen -gek I L Ywom -gel I L ut-Ma'in -geq I L Geme -ges I L Geser-Gorom -gev I L Eviya -gew I L Gera -gex I L Garre -gey I L Enya -gez gez gez I H Geez -gfk I L Patpatar -gft I E Gafat -gga I L Gao -ggb I L Gbii -ggd I E Gugadj -gge I L Gurr-goni -ggg I L Gurgula -ggk I E Kungarakany -ggl I L Ganglau -ggt I L Gitua -ggu I L Gagu -ggw I L Gogodala -gha I L Ghadamès -ghc I H Hiberno-Scottish Gaelic -ghe I L Southern Ghale -ghh I L Northern Ghale -ghk I L Geko Karen -ghl I L Ghulfan -ghn I L Ghanongga -gho I L Ghomara -ghr I L Ghera -ghs I L Guhu-Samane -ght I L Kuke -gia I L Kija -gib I L Gibanawa -gic I L Gail -gid I L Gidar -gie I L Gaɓogbo -gig I L Goaria -gih I L Githabul -gii I L Girirra -gil gil gil I L Gilbertese -gim I L Gimi (Eastern Highlands) -gin I L Hinukh -gip I L Gimi (West New Britain) -giq I L Green Gelao -gir I L Red Gelao -gis I L North Giziga -git I L Gitxsan -giu I L Mulao -giw I L White Gelao -gix I L Gilima -giy I L Giyug -giz I L South Giziga -gjk I L Kachi Koli -gjm I E Gunditjmara -gjn I L Gonja -gjr I L Gurindji Kriol -gju I L Gujari -gka I L Guya -gkd I L Magɨ (Madang Province) -gke I L Ndai -gkn I L Gokana -gko I E Kok-Nar -gkp I L Guinea Kpelle -gku I E ǂUngkue -gla gla gla gd I L Scottish Gaelic -glb I L Belning -glc I L Bon Gula -gld I L Nanai -gle gle gle ga I L Irish -glg glg glg gl I L Galician -glh I L Northwest Pashai -glj I L Gula Iro -glk I L Gilaki -gll I E Garlali -glo I L Galambu -glr I L Glaro-Twabo -glu I L Gula (Chad) -glv glv glv gv I L Manx -glw I L Glavda -gly I E Gule -gma I E Gambera -gmb I L Gula'alaa -gmd I L Mághdì -gmg I L Magɨyi -gmh gmh gmh I H Middle High German (ca. 1050-1500) -gml I H Middle Low German -gmm I L Gbaya-Mbodomo -gmn I L Gimnime -gmr I L Mirning -gmu I L Gumalu -gmv I L Gamo -gmx I L Magoma -gmy I H Mycenaean Greek -gmz I L Mgbolizhia -gna I L Kaansa -gnb I L Gangte -gnc I E Guanche -gnd I L Zulgo-Gemzek -gne I L Ganang -gng I L Ngangam -gnh I L Lere -gni I L Gooniyandi -gnj I L Ngen -gnk I L ǁGana -gnl I E Gangulu -gnm I L Ginuman -gnn I L Gumatj -gno I L Northern Gondi -gnq I L Gana -gnr I E Gureng Gureng -gnt I L Guntai -gnu I L Gnau -gnw I L Western Bolivian Guaraní -gnz I L Ganzi -goa I L Guro -gob I L Playero -goc I L Gorakor -god I L Godié -goe I L Gongduk -gof I L Gofa -gog I L Gogo -goh goh goh I H Old High German (ca. 750-1050) -goi I L Gobasi -goj I L Gowlan -gok I L Gowli -gol I L Gola -gom I L Goan Konkani -gon gon gon M L Gondi -goo I L Gone Dau -gop I L Yeretuar -goq I L Gorap -gor gor gor I L Gorontalo -gos I L Gronings -got got got I H Gothic -gou I L Gavar -gov I L Goo -gow I L Gorowa -gox I L Gobu -goy I L Goundo -goz I L Gozarkhani -gpa I L Gupa-Abawa -gpe I L Ghanaian Pidgin English -gpn I L Taiap -gqa I L Ga'anda -gqi I L Guiqiong -gqn I E Guana (Brazil) -gqr I L Gor -gqu I L Qau -gra I L Rajput Garasia -grb grb grb M L Grebo -grc grc grc I H Ancient Greek (to 1453) -grd I L Guruntum-Mbaaru -grg I L Madi -grh I L Gbiri-Niragu -gri I L Ghari -grj I L Southern Grebo -grm I L Kota Marudu Talantang -grn grn grn gn M L Guarani -gro I L Groma -grq I L Gorovu -grr I L Taznatit -grs I L Gresi -grt I L Garo -gru I L Kistane -grv I L Central Grebo -grw I L Gweda -grx I L Guriaso -gry I L Barclayville Grebo -grz I L Guramalum -gse I L Ghanaian Sign Language -gsg I L German Sign Language -gsl I L Gusilay -gsm I L Guatemalan Sign Language -gsn I L Nema -gso I L Southwest Gbaya -gsp I L Wasembo -gss I L Greek Sign Language -gsw gsw gsw I L Swiss German -gta I L Guató -gtu I E Aghu-Tharnggala -gua I L Shiki -gub I L Guajajára -guc I L Wayuu -gud I L Yocoboué Dida -gue I L Gurindji -guf I L Gupapuyngu -gug I L Paraguayan Guaraní -guh I L Guahibo -gui I L Eastern Bolivian Guaraní -guj guj guj gu I L Gujarati -guk I L Gumuz -gul I L Sea Island Creole English -gum I L Guambiano -gun I L Mbyá Guaraní -guo I L Guayabero -gup I L Gunwinggu -guq I L Aché -gur I L Farefare -gus I L Guinean Sign Language -gut I L Maléku Jaíka -guu I L Yanomamö -guw I L Gun -gux I L Gourmanchéma -guz I L Gusii -gva I L Guana (Paraguay) -gvc I L Guanano -gve I L Duwet -gvf I L Golin -gvj I L Guajá -gvl I L Gulay -gvm I L Gurmana -gvn I L Kuku-Yalanji -gvo I L Gavião Do Jiparaná -gvp I L Pará Gavião -gvr I L Gurung -gvs I L Gumawana -gvy I E Guyani -gwa I L Mbato -gwb I L Gwa -gwc I L Gawri -gwd I L Gawwada -gwe I L Gweno -gwf I L Gowro -gwg I L Moo -gwi gwi gwi I L Gwichʼin -gwj I L ǀGwi -gwm I E Awngthim -gwn I L Gwandara -gwr I L Gwere -gwt I L Gawar-Bati -gwu I E Guwamu -gww I L Kwini -gwx I L Gua -gxx I L Wè Southern -gya I L Northwest Gbaya -gyb I L Garus -gyd I L Kayardild -gye I L Gyem -gyf I E Gungabula -gyg I L Gbayi -gyi I L Gyele -gyl I L Gayil -gym I L Ngäbere -gyn I L Guyanese Creole English -gyo I L Gyalsumdo -gyr I L Guarayu -gyy I E Gunya -gyz I L Geji -gza I L Ganza -gzi I L Gazi -gzn I L Gane -haa I L Hän -hab I L Hanoi Sign Language -hac I L Gurani -had I L Hatam -hae I L Eastern Oromo -haf I L Haiphong Sign Language -hag I L Hanga -hah I L Hahon -hai hai hai M L Haida -haj I L Hajong -hak I L Hakka Chinese -hal I L Halang -ham I L Hewa -han I L Hangaza -hao I L Hakö -hap I L Hupla -haq I L Ha -har I L Harari -has I L Haisla -hat hat hat ht I L Haitian -hau hau hau ha I L Hausa -hav I L Havu -haw haw haw I L Hawaiian -hax I L Southern Haida -hay I L Haya -haz I L Hazaragi -hba I L Hamba -hbb I L Huba -hbn I L Heiban -hbo I H Ancient Hebrew -hbs sh M L Serbo-Croatian Code element for 639-1 has been deprecated -hbu I L Habu -hca I L Andaman Creole Hindi -hch I L Huichol -hdn I L Northern Haida -hds I L Honduras Sign Language -hdy I L Hadiyya -hea I L Northern Qiandong Miao -heb heb heb he I L Hebrew -hed I L Herdé -heg I L Helong -heh I L Hehe -hei I L Heiltsuk -hem I L Hemba -her her her hz I L Herero -hgm I L Haiǁom -hgw I L Haigwai -hhi I L Hoia Hoia -hhr I L Kerak -hhy I L Hoyahoya -hia I L Lamang -hib I E Hibito -hid I L Hidatsa -hif I L Fiji Hindi -hig I L Kamwe -hih I L Pamosu -hii I L Hinduri -hij I L Hijuk -hik I L Seit-Kaitetu -hil hil hil I L Hiligaynon -hin hin hin hi I L Hindi -hio I L Tsoa -hir I L Himarimã -hit hit hit I H Hittite -hiw I L Hiw -hix I L Hixkaryána -hji I L Haji -hka I L Kahe -hke I L Hunde -hkh I L Khah -hkk I L Hunjara-Kaina Ke -hkn I L Mel-Khaonh -hks I L Hong Kong Sign Language -hla I L Halia -hlb I L Halbi -hld I L Halang Doan -hle I L Hlersu -hlt I L Matu Chin -hlu I H Hieroglyphic Luwian -hma I L Southern Mashan Hmong -hmb I L Humburi Senni Songhay -hmc I L Central Huishui Hmong -hmd I L Large Flowery Miao -hme I L Eastern Huishui Hmong -hmf I L Hmong Don -hmg I L Southwestern Guiyang Hmong -hmh I L Southwestern Huishui Hmong -hmi I L Northern Huishui Hmong -hmj I L Ge -hmk I H Maek -hml I L Luopohe Hmong -hmm I L Central Mashan Hmong -hmn hmn hmn M L Hmong -hmo hmo hmo ho I L Hiri Motu -hmp I L Northern Mashan Hmong -hmq I L Eastern Qiandong Miao -hmr I L Hmar -hms I L Southern Qiandong Miao -hmt I L Hamtai -hmu I L Hamap -hmv I L Hmong Dô -hmw I L Western Mashan Hmong -hmy I L Southern Guiyang Hmong -hmz I L Hmong Shua -hna I L Mina (Cameroon) -hnd I L Southern Hindko -hne I L Chhattisgarhi -hng I L Hungu -hnh I L ǁAni -hni I L Hani -hnj I L Hmong Njua -hnm I L Hainanese -hnn I L Hanunoo -hno I L Northern Hindko -hns I L Caribbean Hindustani -hnu I L Hung -hoa I L Hoava -hob I L Mari (Madang Province) -hoc I L Ho -hod I E Holma -hoe I L Horom -hoh I L Hobyót -hoi I L Holikachuk -hoj I L Hadothi -hol I L Holu -hom I E Homa -hoo I L Holoholo -hop I L Hopi -hor I E Horo -hos I L Ho Chi Minh City Sign Language -hot I L Hote -hov I L Hovongan -how I L Honi -hoy I L Holiya -hoz I L Hozo -hpo I E Hpon -hps I L Hawai'i Sign Language (HSL) -hra I L Hrangkhol -hrc I L Niwer Mil -hre I L Hre -hrk I L Haruku -hrm I L Horned Miao -hro I L Haroi -hrp I E Nhirrpi -hrt I L Hértevin -hru I L Hruso -hrv hrv hrv hr I L Croatian -hrw I L Warwar Feni -hrx I L Hunsrik -hrz I L Harzani -hsb hsb hsb I L Upper Sorbian -hsh I L Hungarian Sign Language -hsl I L Hausa Sign Language -hsn I L Xiang Chinese -hss I L Harsusi -hti I E Hoti -hto I L Minica Huitoto -hts I L Hadza -htu I L Hitu -htx I H Middle Hittite -hub I L Huambisa -huc I L ǂHua -hud I L Huaulu -hue I L San Francisco Del Mar Huave -huf I L Humene -hug I L Huachipaeri -huh I L Huilliche -hui I L Huli -huj I L Northern Guiyang Hmong -huk I E Hulung -hul I L Hula -hum I L Hungana -hun hun hun hu I L Hungarian -huo I L Hu -hup hup hup I L Hupa -huq I L Tsat -hur I L Halkomelem -hus I L Huastec -hut I L Humla -huu I L Murui Huitoto -huv I L San Mateo Del Mar Huave -huw I E Hukumina -hux I L Nüpode Huitoto -huy I L Hulaulá -huz I L Hunzib -hvc I L Haitian Vodoun Culture Language -hve I L San Dionisio Del Mar Huave -hvk I L Haveke -hvn I L Sabu -hvv I L Santa María Del Mar Huave -hwa I L Wané -hwc I L Hawai'i Creole English -hwo I L Hwana -hya I L Hya -hye arm hye hy I L Armenian -hyw I L Western Armenian -iai I L Iaai -ian I L Iatmul -iar I L Purari -iba iba iba I L Iban -ibb I L Ibibio -ibd I L Iwaidja -ibe I L Akpes -ibg I L Ibanag -ibh I L Bih -ibl I L Ibaloi -ibm I L Agoi -ibn I L Ibino -ibo ibo ibo ig I L Igbo -ibr I L Ibuoro -ibu I L Ibu -iby I L Ibani -ica I L Ede Ica -ich I L Etkywan -icl I L Icelandic Sign Language -icr I L Islander Creole English -ida I L Idakho-Isukha-Tiriki -idb I L Indo-Portuguese -idc I L Idon -idd I L Ede Idaca -ide I L Idere -idi I L Idi -ido ido ido io I C Ido -idr I L Indri -ids I L Idesa -idt I L Idaté -idu I L Idoma -ifa I L Amganad Ifugao -ifb I L Batad Ifugao -ife I L Ifè -iff I E Ifo -ifk I L Tuwali Ifugao -ifm I L Teke-Fuumu -ifu I L Mayoyao Ifugao -ify I L Keley-I Kallahan -igb I L Ebira -ige I L Igede -igg I L Igana -igl I L Igala -igm I L Kanggape -ign I L Ignaciano -igo I L Isebe -igs I C Interglossa -igw I L Igwe -ihb I L Iha Based Pidgin -ihi I L Ihievbe -ihp I L Iha -ihw I E Bidhawal -iii iii iii ii I L Sichuan Yi -iin I E Thiin -ijc I L Izon -ije I L Biseni -ijj I L Ede Ije -ijn I L Kalabari -ijs I L Southeast Ijo -ike I L Eastern Canadian Inuktitut -ikh I L Ikhin-Arokho -iki I L Iko -ikk I L Ika -ikl I L Ikulu -iko I L Olulumo-Ikom -ikp I L Ikpeshi -ikr I E Ikaranggal -iks I L Inuit Sign Language -ikt I L Inuinnaqtun -iku iku iku iu M L Inuktitut -ikv I L Iku-Gora-Ankwa -ikw I L Ikwere -ikx I L Ik -ikz I L Ikizu -ila I L Ile Ape -ilb I L Ila -ile ile ile ie I C Interlingue -ilg I E Garig-Ilgar -ili I L Ili Turki -ilk I L Ilongot -ilm I L Iranun (Malaysia) -ilo ilo ilo I L Iloko -ilp I L Iranun (Philippines) -ils I L International Sign -ilu I L Ili'uun -ilv I L Ilue -ima I L Mala Malasar -imi I L Anamgura -iml I E Miluk -imn I L Imonda -imo I L Imbongu -imr I L Imroing -ims I H Marsian -imt I L Imotong -imy I H Milyan -ina ina ina ia I C Interlingua (IALA) -inb I L Inga -ind ind ind id I L Indonesian -ing I L Degexit'an -inh inh inh I L Ingush -inj I L Jungle Inga -inl I L Indonesian Sign Language -inm I H Minaean -inn I L Isinai -ino I L Inoke-Yate -inp I L Iñapari -ins I L Indian Sign Language -int I L Intha -inz I E Ineseño -ior I L Inor -iou I L Tuma-Irumu -iow I E Iowa-Oto -ipi I L Ipili -ipk ipk ipk ik M L Inupiaq -ipo I L Ipiko -iqu I L Iquito -iqw I L Ikwo -ire I L Iresim -irh I L Irarutu -iri I L Rigwe -irk I L Iraqw -irn I L Irántxe -irr I L Ir -iru I L Irula -irx I L Kamberau -iry I L Iraya -isa I L Isabi -isc I L Isconahua -isd I L Isnag -ise I L Italian Sign Language -isg I L Irish Sign Language -ish I L Esan -isi I L Nkem-Nkum -isk I L Ishkashimi -isl ice isl is I L Icelandic -ism I L Masimasi -isn I L Isanzu -iso I L Isoko -isr I L Israeli Sign Language -ist I L Istriot -isu I L Isu -isv I C Interslavic -ita ita ita it I L Italian -itb I L Binongan Itneg -itd I L Southern Tidung -ite I E Itene -iti I L Inlaod Itneg -itk I L Judeo-Italian -itl I L Itelmen -itm I L Itu Mbon Uzo -ito I L Itonama -itr I L Iteri -its I L Isekiri -itt I L Maeng Itneg -itv I L Itawit -itw I L Ito -itx I L Itik -ity I L Moyadan Itneg -itz I L Itzá -ium I L Iu Mien -ivb I L Ibatan -ivv I L Ivatan -iwk I L I-Wak -iwm I L Iwam -iwo I L Iwur -iws I L Sepik Iwam -ixc I L Ixcatec -ixl I L Ixil -iya I L Iyayu -iyo I L Mesaka -iyx I L Yaka (Congo) -izh I L Ingrian -izm I L Kizamani -izr I L Izere -izz I L Izii -jaa I L Jamamadí -jab I L Hyam -jac I L Popti' -jad I L Jahanka -jae I L Yabem -jaf I L Jara -jah I L Jah Hut -jaj I L Zazao -jak I L Jakun -jal I L Yalahatan -jam I L Jamaican Creole English -jan I E Jandai -jao I L Yanyuwa -jaq I L Yaqay -jas I L New Caledonian Javanese -jat I L Jakati -jau I L Yaur -jav jav jav jv I L Javanese -jax I L Jambi Malay -jay I L Yan-nhangu -jaz I L Jawe -jbe I L Judeo-Berber -jbi I E Badjiri -jbj I L Arandai -jbk I L Barikewa -jbm I L Bijim -jbn I L Nafusi -jbo jbo jbo I C Lojban -jbr I L Jofotek-Bromnya -jbt I L Jabutí -jbu I L Jukun Takum -jbw I E Yawijibaya -jcs I L Jamaican Country Sign Language -jct I L Krymchak -jda I L Jad -jdg I L Jadgali -jdt I L Judeo-Tat -jeb I L Jebero -jee I L Jerung -jeh I L Jeh -jei I L Yei -jek I L Jeri Kuo -jel I L Yelmek -jen I L Dza -jer I L Jere -jet I L Manem -jeu I L Jonkor Bourmataguil -jgb I E Ngbee -jge I L Judeo-Georgian -jgk I L Gwak -jgo I L Ngomba -jhi I L Jehai -jhs I L Jhankot Sign Language -jia I L Jina -jib I L Jibu -jic I L Tol -jid I L Bu (Kaduna State) -jie I L Jilbe -jig I L Jingulu -jih I L sTodsde -jii I L Jiiddu -jil I L Jilim -jim I L Jimi (Cameroon) -jio I L Jiamao -jiq I L Guanyinqiao -jit I L Jita -jiu I L Youle Jinuo -jiv I L Shuar -jiy I L Buyuan Jinuo -jje I L Jejueo -jjr I L Bankal -jka I L Kaera -jkm I L Mobwa Karen -jko I L Kubo -jkp I L Paku Karen -jkr I L Koro (India) -jks I L Amami Koniya Sign Language -jku I L Labir -jle I L Ngile -jls I L Jamaican Sign Language -jma I L Dima -jmb I L Zumbun -jmc I L Machame -jmd I L Yamdena -jmi I L Jimi (Nigeria) -jml I L Jumli -jmn I L Makuri Naga -jmr I L Kamara -jms I L Mashi (Nigeria) -jmw I L Mouwase -jmx I L Western Juxtlahuaca Mixtec -jna I L Jangshung -jnd I L Jandavra -jng I E Yangman -jni I L Janji -jnj I L Yemsa -jnl I L Rawat -jns I L Jaunsari -job I L Joba -jod I L Wojenaka -jog I L Jogi -jor I E Jorá -jos I L Jordanian Sign Language -jow I L Jowulu -jpa I H Jewish Palestinian Aramaic -jpn jpn jpn ja I L Japanese -jpr jpr jpr I L Judeo-Persian -jqr I L Jaqaru -jra I L Jarai -jrb jrb jrb M L Judeo-Arabic -jrr I L Jiru -jrt I L Jakattoe -jru I L Japrería -jsl I L Japanese Sign Language -jua I L Júma -jub I L Wannu -juc I H Jurchen -jud I L Worodougou -juh I L Hõne -jui I E Ngadjuri -juk I L Wapan -jul I L Jirel -jum I L Jumjum -jun I L Juang -juo I L Jiba -jup I L Hupdë -jur I L Jurúna -jus I L Jumla Sign Language -jut I H Jutish -juu I L Ju -juw I L Wãpha -juy I L Juray -jvd I L Javindo -jvn I L Caribbean Javanese -jwi I L Jwira-Pepesa -jya I L Jiarong -jye I L Judeo-Yemeni Arabic -jyy I L Jaya -kaa kaa kaa I L Kara-Kalpak -kab kab kab I L Kabyle -kac kac kac I L Kachin -kad I L Adara -kae I E Ketangalan -kaf I L Katso -kag I L Kajaman -kah I L Kara (Central African Republic) -kai I L Karekare -kaj I L Jju -kak I L Kalanguya -kal kal kal kl I L Kalaallisut -kam kam kam I L Kamba (Kenya) -kan kan kan kn I L Kannada -kao I L Xaasongaxango -kap I L Bezhta -kaq I L Capanahua -kas kas kas ks I L Kashmiri -kat geo kat ka I L Georgian -kau kau kau kr M L Kanuri -kav I L Katukína -kaw kaw kaw I H Kawi -kax I L Kao -kay I L Kamayurá -kaz kaz kaz kk I L Kazakh -kba I E Kalarko -kbb I E Kaxuiâna -kbc I L Kadiwéu -kbd kbd kbd I L Kabardian -kbe I L Kanju -kbg I L Khamba -kbh I L Camsá -kbi I L Kaptiau -kbj I L Kari -kbk I L Grass Koiari -kbl I L Kanembu -kbm I L Iwal -kbn I L Kare (Central African Republic) -kbo I L Keliko -kbp I L Kabiyè -kbq I L Kamano -kbr I L Kafa -kbs I L Kande -kbt I L Abadi -kbu I L Kabutra -kbv I L Dera (Indonesia) -kbw I L Kaiep -kbx I L Ap Ma -kby I L Manga Kanuri -kbz I L Duhwa -kca I L Khanty -kcb I L Kawacha -kcc I L Lubila -kcd I L Ngkâlmpw Kanum -kce I L Kaivi -kcf I L Ukaan -kcg I L Tyap -kch I L Vono -kci I L Ngyian -kcj I L Kobiana -kck I L Kalanga -kcl I L Kela (Papua New Guinea) -kcm I L Gula (Central African Republic) -kcn I L Nubi -kco I L Kinalakna -kcp I L Kanga -kcq I L Kamo -kcr I L Katla -kcs I L Koenoem -kct I L Kaian -kcu I L Kami (Tanzania) -kcv I L Kete -kcw I L Kabwari -kcx I L Kachama-Ganjule -kcy I L Korandje -kcz I L Konongo -kda I E Worimi -kdc I L Kutu -kdd I L Yankunytjatjara -kde I L Makonde -kdf I L Mamusi -kdg I L Seba -kdh I L Tem -kdi I L Kumam -kdj I L Karamojong -kdk I L Numèè -kdl I L Tsikimba -kdm I L Kagoma -kdn I L Kunda -kdp I L Kaningdon-Nindem -kdq I L Koch -kdr I L Karaim -kdt I L Kuy -kdu I L Kadaru -kdw I L Koneraw -kdx I L Kam -kdy I L Keder -kdz I L Kwaja -kea I L Kabuverdianu -keb I L Kélé -kec I L Keiga -ked I L Kerewe -kee I L Eastern Keres -kef I L Kpessi -keg I L Tese -keh I L Keak -kei I L Kei -kej I L Kadar -kek I L Kekchí -kel I L Kela (Democratic Republic of Congo) -kem I L Kemak -ken I L Kenyang -keo I L Kakwa -kep I L Kaikadi -keq I L Kamar -ker I L Kera -kes I L Kugbo -ket I L Ket -keu I L Akebu -kev I L Kanikkaran -kew I L West Kewa -kex I L Kukna -key I L Kupia -kez I L Kukele -kfa I L Kodava -kfb I L Northwestern Kolami -kfc I L Konda-Dora -kfd I L Korra Koraga -kfe I L Kota (India) -kff I L Koya -kfg I L Kudiya -kfh I L Kurichiya -kfi I L Kannada Kurumba -kfj I L Kemiehua -kfk I L Kinnauri -kfl I L Kung -kfm I L Khunsari -kfn I L Kuk -kfo I L Koro (Côte d'Ivoire) -kfp I L Korwa -kfq I L Korku -kfr I L Kachhi -kfs I L Bilaspuri -kft I L Kanjari -kfu I L Katkari -kfv I L Kurmukar -kfw I L Kharam Naga -kfx I L Kullu Pahari -kfy I L Kumaoni -kfz I L Koromfé -kga I L Koyaga -kgb I L Kawe -kge I L Komering -kgf I L Kube -kgg I L Kusunda -kgi I L Selangor Sign Language -kgj I L Gamale Kham -kgk I L Kaiwá -kgl I E Kunggari -kgn I L Karingani -kgo I L Krongo -kgp I L Kaingang -kgq I L Kamoro -kgr I L Abun -kgs I L Kumbainggar -kgt I L Somyev -kgu I L Kobol -kgv I L Karas -kgw I L Karon Dori -kgx I L Kamaru -kgy I L Kyerung -kha kha kha I L Khasi -khb I L Lü -khc I L Tukang Besi North -khd I L Bädi Kanum -khe I L Korowai -khf I L Khuen -khg I L Khams Tibetan -khh I L Kehu -khj I L Kuturmi -khk I L Halh Mongolian -khl I L Lusi -khm khm khm km I L Khmer -khn I L Khandesi -kho kho kho I H Khotanese -khp I L Kapori -khq I L Koyra Chiini Songhay -khr I L Kharia -khs I L Kasua -kht I L Khamti -khu I L Nkhumbi -khv I L Khvarshi -khw I L Khowar -khx I L Kanu -khy I L Kele (Democratic Republic of Congo) -khz I L Keapara -kia I L Kim -kib I L Koalib -kic I L Kickapoo -kid I L Koshin -kie I L Kibet -kif I L Eastern Parbate Kham -kig I L Kimaama -kih I L Kilmeri -kii I E Kitsai -kij I L Kilivila -kik kik kik ki I L Kikuyu -kil I L Kariya -kim I L Karagas -kin kin kin rw I L Kinyarwanda -kio I L Kiowa -kip I L Sheshi Kham -kiq I L Kosadle -kir kir kir ky I L Kirghiz -kis I L Kis -kit I L Agob -kiu I L Kirmanjki (individual language) -kiv I L Kimbu -kiw I L Northeast Kiwai -kix I L Khiamniungan Naga -kiy I L Kirikiri -kiz I L Kisi -kja I L Mlap -kjb I L Q'anjob'al -kjc I L Coastal Konjo -kjd I L Southern Kiwai -kje I L Kisar -kjg I L Khmu -kjh I L Khakas -kji I L Zabana -kjj I L Khinalugh -kjk I L Highland Konjo -kjl I L Western Parbate Kham -kjm I L Kháng -kjn I L Kunjen -kjo I L Kinnauri Pahari -kjp I L Pwo Eastern Karen -kjq I L Western Keres -kjr I L Kurudu -kjs I L East Kewa -kjt I L Phrae Pwo Karen -kju I L Kashaya -kjv I H Kaikavian Literary Language -kjx I L Ramopa -kjy I L Erave -kjz I L Bumthangkha -kka I L Kakanda -kkb I L Kwerisa -kkc I L Odoodee -kkd I L Kinuku -kke I L Kakabe -kkf I L Kalaktang Monpa -kkg I L Mabaka Valley Kalinga -kkh I L Khün -kki I L Kagulu -kkj I L Kako -kkk I L Kokota -kkl I L Kosarek Yale -kkm I L Kiong -kkn I L Kon Keu -kko I L Karko -kkp I L Gugubera -kkq I L Kaeku -kkr I L Kir-Balar -kks I L Giiwo -kkt I L Koi -kku I L Tumi -kkv I L Kangean -kkw I L Teke-Kukuya -kkx I L Kohin -kky I L Guugu Yimidhirr -kkz I L Kaska -kla I E Klamath-Modoc -klb I L Kiliwa -klc I L Kolbila -kld I L Gamilaraay -kle I L Kulung (Nepal) -klf I L Kendeje -klg I L Tagakaulo -klh I L Weliki -kli I L Kalumpang -klj I L Khalaj -klk I L Kono (Nigeria) -kll I L Kagan Kalagan -klm I L Migum -kln M L Kalenjin -klo I L Kapya -klp I L Kamasa -klq I L Rumu -klr I L Khaling -kls I L Kalasha -klt I L Nukna -klu I L Klao -klv I L Maskelynes -klw I L Tado -klx I L Koluwawa -kly I L Kalao -klz I L Kabola -kma I L Konni -kmb kmb kmb I L Kimbundu -kmc I L Southern Dong -kmd I L Majukayang Kalinga -kme I L Bakole -kmf I L Kare (Papua New Guinea) -kmg I L Kâte -kmh I L Kalam -kmi I L Kami (Nigeria) -kmj I L Kumarbhag Paharia -kmk I L Limos Kalinga -kml I L Tanudan Kalinga -kmm I L Kom (India) -kmn I L Awtuw -kmo I L Kwoma -kmp I L Gimme -kmq I L Kwama -kmr I L Northern Kurdish -kms I L Kamasau -kmt I L Kemtuik -kmu I L Kanite -kmv I L Karipúna Creole French -kmw I L Komo (Democratic Republic of Congo) -kmx I L Waboda -kmy I L Koma -kmz I L Khorasani Turkish -kna I L Dera (Nigeria) -knb I L Lubuagan Kalinga -knc I L Central Kanuri -knd I L Konda -kne I L Kankanaey -knf I L Mankanya -kng I L Koongo -kni I L Kanufi -knj I L Western Kanjobal -knk I L Kuranko -knl I L Keninjal -knm I L Kanamarí -knn I L Konkani (individual language) -kno I L Kono (Sierra Leone) -knp I L Kwanja -knq I L Kintaq -knr I L Kaningra -kns I L Kensiu -knt I L Panoan Katukína -knu I L Kono (Guinea) -knv I L Tabo -knw I L Kung-Ekoka -knx I L Kendayan -kny I L Kanyok -knz I L Kalamsé -koa I L Konomala -koc I E Kpati -kod I L Kodi -koe I L Kacipo-Bale Suri -kof I E Kubi -kog I L Cogui -koh I L Koyo -koi I L Komi-Permyak -kok kok kok M L Konkani (macrolanguage) -kol I L Kol (Papua New Guinea) -kom kom kom kv M L Komi -kon kon kon kg M L Kongo -koo I L Konzo -kop I L Waube -koq I L Kota (Gabon) -kor kor kor ko I L Korean -kos kos kos I L Kosraean -kot I L Lagwan -kou I L Koke -kov I L Kudu-Camo -kow I L Kugama -koy I L Koyukon -koz I L Korak -kpa I L Kutto -kpb I L Mullu Kurumba -kpc I L Curripaco -kpd I L Koba -kpe kpe kpe M L Kpelle -kpf I L Komba -kpg I L Kapingamarangi -kph I L Kplang -kpi I L Kofei -kpj I L Karajá -kpk I L Kpan -kpl I L Kpala -kpm I L Koho -kpn I E Kepkiriwát -kpo I L Ikposo -kpq I L Korupun-Sela -kpr I L Korafe-Yegha -kps I L Tehit -kpt I L Karata -kpu I L Kafoa -kpv I L Komi-Zyrian -kpw I L Kobon -kpx I L Mountain Koiali -kpy I L Koryak -kpz I L Kupsabiny -kqa I L Mum -kqb I L Kovai -kqc I L Doromu-Koki -kqd I L Koy Sanjaq Surat -kqe I L Kalagan -kqf I L Kakabai -kqg I L Khe -kqh I L Kisankasa -kqi I L Koitabu -kqj I L Koromira -kqk I L Kotafon Gbe -kql I L Kyenele -kqm I L Khisa -kqn I L Kaonde -kqo I L Eastern Krahn -kqp I L Kimré -kqq I L Krenak -kqr I L Kimaragang -kqs I L Northern Kissi -kqt I L Klias River Kadazan -kqu I E Seroa -kqv I L Okolod -kqw I L Kandas -kqx I L Mser -kqy I L Koorete -kqz I E Korana -kra I L Kumhali -krb I E Karkin -krc krc krc I L Karachay-Balkar -krd I L Kairui-Midiki -kre I L Panará -krf I L Koro (Vanuatu) -krh I L Kurama -kri I L Krio -krj I L Kinaray-A -krk I E Kerek -krl krl krl I L Karelian -krn I L Sapo -krp I L Durop -krr I L Krung -krs I L Gbaya (Sudan) -krt I L Tumari Kanuri -kru kru kru I L Kurukh -krv I L Kavet -krw I L Western Krahn -krx I L Karon -kry I L Kryts -krz I L Sota Kanum -ksb I L Shambala -ksc I L Southern Kalinga -ksd I L Kuanua -kse I L Kuni -ksf I L Bafia -ksg I L Kusaghe -ksh I L Kölsch -ksi I L Krisa -ksj I L Uare -ksk I L Kansa -ksl I L Kumalu -ksm I L Kumba -ksn I L Kasiguranin -kso I L Kofa -ksp I L Kaba -ksq I L Kwaami -ksr I L Borong -kss I L Southern Kisi -kst I L Winyé -ksu I L Khamyang -ksv I L Kusu -ksw I L S'gaw Karen -ksx I L Kedang -ksy I L Kharia Thar -ksz I L Kodaku -kta I L Katua -ktb I L Kambaata -ktc I L Kholok -ktd I L Kokata -kte I L Nubri -ktf I L Kwami -ktg I E Kalkutung -kth I L Karanga -kti I L North Muyu -ktj I L Plapo Krumen -ktk I E Kaniet -ktl I L Koroshi -ktm I L Kurti -ktn I L Karitiâna -kto I L Kuot -ktp I L Kaduo -ktq I E Katabaga -kts I L South Muyu -ktt I L Ketum -ktu I L Kituba (Democratic Republic of Congo) -ktv I L Eastern Katu -ktw I E Kato -ktx I L Kaxararí -kty I L Kango (Bas-Uélé District) -ktz I L Juǀʼhoan -kua kua kua kj I L Kuanyama -kub I L Kutep -kuc I L Kwinsu -kud I L 'Auhelawa -kue I L Kuman (Papua New Guinea) -kuf I L Western Katu -kug I L Kupa -kuh I L Kushi -kui I L Kuikúro-Kalapálo -kuj I L Kuria -kuk I L Kepo' -kul I L Kulere -kum kum kum I L Kumyk -kun I L Kunama -kuo I L Kumukio -kup I L Kunimaipa -kuq I L Karipuna -kur kur kur ku M L Kurdish -kus I L Kusaal -kut kut kut I L Ktunaxa -kuu I L Upper Kuskokwim -kuv I L Kur -kuw I L Kpagua -kux I L Kukatja -kuy I L Kuuku-Ya'u -kuz I E Kunza -kva I L Bagvalal -kvb I L Kubu -kvc I L Kove -kvd I L Kui (Indonesia) -kve I L Kalabakan -kvf I L Kabalai -kvg I L Kuni-Boazi -kvh I L Komodo -kvi I L Kwang -kvj I L Psikye -kvk I L Korean Sign Language -kvl I L Kayaw -kvm I L Kendem -kvn I L Border Kuna -kvo I L Dobel -kvp I L Kompane -kvq I L Geba Karen -kvr I L Kerinci -kvt I L Lahta Karen -kvu I L Yinbaw Karen -kvv I L Kola -kvw I L Wersing -kvx I L Parkari Koli -kvy I L Yintale Karen -kvz I L Tsakwambo -kwa I L Dâw -kwb I L Kwa -kwc I L Likwala -kwd I L Kwaio -kwe I L Kwerba -kwf I L Kwara'ae -kwg I L Sara Kaba Deme -kwh I L Kowiai -kwi I L Awa-Cuaiquer -kwj I L Kwanga -kwk I L Kwak'wala -kwl I L Kofyar -kwm I L Kwambi -kwn I L Kwangali -kwo I L Kwomtari -kwp I L Kodia -kwr I L Kwer -kws I L Kwese -kwt I L Kwesten -kwu I L Kwakum -kwv I L Sara Kaba Náà -kww I L Kwinti -kwx I L Khirwar -kwy I L San Salvador Kongo -kwz I E Kwadi -kxa I L Kairiru -kxb I L Krobu -kxc I L Konso -kxd I L Brunei -kxf I L Manumanaw Karen -kxh I L Karo (Ethiopia) -kxi I L Keningau Murut -kxj I L Kulfa -kxk I L Zayein Karen -kxm I L Northern Khmer -kxn I L Kanowit-Tanjong Melanau -kxo I E Kanoé -kxp I L Wadiyara Koli -kxq I L Smärky Kanum -kxr I L Koro (Papua New Guinea) -kxs I L Kangjia -kxt I L Koiwat -kxv I L Kuvi -kxw I L Konai -kxx I L Likuba -kxy I L Kayong -kxz I L Kerewo -kya I L Kwaya -kyb I L Butbut Kalinga -kyc I L Kyaka -kyd I L Karey -kye I L Krache -kyf I L Kouya -kyg I L Keyagana -kyh I L Karok -kyi I L Kiput -kyj I L Karao -kyk I L Kamayo -kyl I L Kalapuya -kym I L Kpatili -kyn I L Northern Binukidnon -kyo I L Kelon -kyp I L Kang -kyq I L Kenga -kyr I L Kuruáya -kys I L Baram Kayan -kyt I L Kayagar -kyu I L Western Kayah -kyv I L Kayort -kyw I L Kudmali -kyx I L Rapoisi -kyy I L Kambaira -kyz I L Kayabí -kza I L Western Karaboro -kzb I L Kaibobo -kzc I L Bondoukou Kulango -kzd I L Kadai -kze I L Kosena -kzf I L Da'a Kaili -kzg I L Kikai -kzi I L Kelabit -kzk I E Kazukuru -kzl I L Kayeli -kzm I L Kais -kzn I L Kokola -kzo I L Kaningi -kzp I L Kaidipang -kzq I L Kaike -kzr I L Karang -kzs I L Sugut Dusun -kzu I L Kayupulau -kzv I L Komyandaret -kzw I E Karirí-Xocó -kzx I E Kamarian -kzy I L Kango (Tshopo District) -kzz I L Kalabra -laa I L Southern Subanen -lab I H Linear A -lac I L Lacandon -lad lad lad I L Ladino -lae I L Pattani -laf I L Lafofa -lag I L Rangi -lah lah lah M L Lahnda -lai I L Lambya -laj I L Lango (Uganda) -lal I L Lalia -lam lam lam I L Lamba -lan I L Laru -lao lao lao lo I L Lao -lap I L Laka (Chad) -laq I L Qabiao -lar I L Larteh -las I L Lama (Togo) -lat lat lat la I H Latin -lau I L Laba -lav lav lav lv M L Latvian -law I L Lauje -lax I L Tiwa -lay I L Lama Bai -laz I E Aribwatsa -lbb I L Label -lbc I L Lakkia -lbe I L Lak -lbf I L Tinani -lbg I L Laopang -lbi I L La'bi -lbj I L Ladakhi -lbk I L Central Bontok -lbl I L Libon Bikol -lbm I L Lodhi -lbn I L Rmeet -lbo I L Laven -lbq I L Wampar -lbr I L Lohorung -lbs I L Libyan Sign Language -lbt I L Lachi -lbu I L Labu -lbv I L Lavatbura-Lamusong -lbw I L Tolaki -lbx I L Lawangan -lby I E Lamalama -lbz I L Lardil -lcc I L Legenyem -lcd I L Lola -lce I L Loncong -lcf I L Lubu -lch I L Luchazi -lcl I L Lisela -lcm I L Tungag -lcp I L Western Lawa -lcq I L Luhu -lcs I L Lisabata-Nuniali -lda I L Kla-Dan -ldb I L Dũya -ldd I L Luri -ldg I L Lenyima -ldh I L Lamja-Dengsa-Tola -ldi I L Laari -ldj I L Lemoro -ldk I L Leelau -ldl I L Kaan -ldm I L Landoma -ldn I C Láadan -ldo I L Loo -ldp I L Tso -ldq I L Lufu -lea I L Lega-Shabunda -leb I L Lala-Bisa -lec I L Leco -led I L Lendu -lee I L Lyélé -lef I L Lelemi -leh I L Lenje -lei I L Lemio -lej I L Lengola -lek I L Leipon -lel I L Lele (Democratic Republic of Congo) -lem I L Nomaande -len I E Lenca -leo I L Leti (Cameroon) -lep I L Lepcha -leq I L Lembena -ler I L Lenkau -les I L Lese -let I L Lesing-Gelimi -leu I L Kara (Papua New Guinea) -lev I L Lamma -lew I L Ledo Kaili -lex I L Luang -ley I L Lemolang -lez lez lez I L Lezghian -lfa I L Lefa -lfb I L Buu (Cameroon) -lfn I C Lingua Franca Nova -lga I L Lungga -lgb I L Laghu -lgg I L Lugbara -lgh I L Laghuu -lgi I L Lengilu -lgk I L Lingarak -lgl I L Wala -lgm I L Lega-Mwenga -lgn I L T'apo -lgo I L Lango (South Sudan) -lgq I L Logba -lgr I L Lengo -lgs I L Guinea-Bissau Sign Language -lgt I L Pahi -lgu I L Longgu -lgz I L Ligenza -lha I L Laha (Viet Nam) -lhh I L Laha (Indonesia) -lhi I L Lahu Shi -lhl I L Lahul Lohar -lhm I L Lhomi -lhn I L Lahanan -lhp I L Lhokpu -lhs I E Mlahsö -lht I L Lo-Toga -lhu I L Lahu -lia I L West-Central Limba -lib I L Likum -lic I L Hlai -lid I L Nyindrou -lie I L Likila -lif I L Limbu -lig I L Ligbi -lih I L Lihir -lij I L Ligurian -lik I L Lika -lil I L Lillooet -lim lim lim li I L Limburgan -lin lin lin ln I L Lingala -lio I L Liki -lip I L Sekpele -liq I L Libido -lir I L Liberian English -lis I L Lisu -lit lit lit lt I L Lithuanian -liu I L Logorik -liv I L Liv -liw I L Col -lix I L Liabuku -liy I L Banda-Bambari -liz I L Libinza -lja I E Golpa -lje I L Rampi -lji I L Laiyolo -ljl I L Li'o -ljp I L Lampung Api -ljw I L Yirandali -ljx I E Yuru -lka I L Lakalei -lkb I L Kabras -lkc I L Kucong -lkd I L Lakondê -lke I L Kenyi -lkh I L Lakha -lki I L Laki -lkj I L Remun -lkl I L Laeko-Libuat -lkm I E Kalaamaya -lkn I L Lakon -lko I L Khayo -lkr I L Päri -lks I L Kisa -lkt I L Lakota -lku I E Kungkari -lky I L Lokoya -lla I L Lala-Roba -llb I L Lolo -llc I L Lele (Guinea) -lld I L Ladin -lle I L Lele (Papua New Guinea) -llf I E Hermit -llg I L Lole -llh I L Lamu -lli I L Teke-Laali -llj I E Ladji Ladji -llk I E Lelak -lll I L Lilau -llm I L Lasalimu -lln I L Lele (Chad) -llp I L North Efate -llq I L Lolak -lls I L Lithuanian Sign Language -llu I L Lau -llx I L Lauan -lma I L East Limba -lmb I L Merei -lmc I E Limilngan -lmd I L Lumun -lme I L Pévé -lmf I L South Lembata -lmg I L Lamogai -lmh I L Lambichhong -lmi I L Lombi -lmj I L West Lembata -lmk I L Lamkang -lml I L Hano -lmn I L Lambadi -lmo I L Lombard -lmp I L Limbum -lmq I L Lamatuka -lmr I L Lamalera -lmu I L Lamenu -lmv I L Lomaiviti -lmw I L Lake Miwok -lmx I L Laimbue -lmy I L Lamboya -lna I L Langbashe -lnb I L Mbalanhu -lnd I L Lundayeh -lng I H Langobardic -lnh I L Lanoh -lni I L Daantanai' -lnj I E Leningitij -lnl I L South Central Banda -lnm I L Langam -lnn I L Lorediakarkar -lns I L Lamnso' -lnu I L Longuda -lnw I E Lanima -lnz I L Lonzo -loa I L Loloda -lob I L Lobi -loc I L Inonhan -loe I L Saluan -lof I L Logol -log I L Logo -loh I L Laarim -loi I L Loma (Côte d'Ivoire) -loj I L Lou -lok I L Loko -lol lol lol I L Mongo -lom I L Loma (Liberia) -lon I L Malawi Lomwe -loo I L Lombo -lop I L Lopa -loq I L Lobala -lor I L Téén -los I L Loniu -lot I L Otuho -lou I L Louisiana Creole -lov I L Lopi -low I L Tampias Lobu -lox I L Loun -loy I L Loke -loz loz loz I L Lozi -lpa I L Lelepa -lpe I L Lepki -lpn I L Long Phuri Naga -lpo I L Lipo -lpx I L Lopit -lqr I L Logir -lra I L Rara Bakati' -lrc I L Northern Luri -lre I E Laurentian -lrg I E Laragia -lri I L Marachi -lrk I L Loarki -lrl I L Lari -lrm I L Marama -lrn I L Lorang -lro I L Laro -lrr I L Southern Yamphu -lrt I L Larantuka Malay -lrv I L Larevat -lrz I L Lemerig -lsa I L Lasgerdi -lsb I L Burundian Sign Language -lsc I L Albarradas Sign Language -lsd I L Lishana Deni -lse I L Lusengo -lsh I L Lish -lsi I L Lashi -lsl I L Latvian Sign Language -lsm I L Saamia -lsn I L Tibetan Sign Language -lso I L Laos Sign Language -lsp I L Panamanian Sign Language -lsr I L Aruop -lss I L Lasi -lst I L Trinidad and Tobago Sign Language -lsv I L Sivia Sign Language -lsw I L Seychelles Sign Language -lsy I L Mauritian Sign Language -ltc I H Late Middle Chinese -ltg I L Latgalian -lth I L Thur -lti I L Leti (Indonesia) -ltn I L Latundê -lto I L Tsotso -lts I L Tachoni -ltu I L Latu -ltz ltz ltz lb I L Luxembourgish -lua lua lua I L Luba-Lulua -lub lub lub lu I L Luba-Katanga -luc I L Aringa -lud I L Ludian -lue I L Luvale -luf I L Laua -lug lug lug lg I L Ganda -luh I L Leizhou Chinese -lui lui lui I E Luiseño -luj I L Luna -luk I L Lunanakha -lul I L Olu'bo -lum I L Luimbi -lun lun lun I L Lunda -luo luo luo I L Luo (Kenya and Tanzania) -lup I L Lumbu -luq I L Lucumi -lur I L Laura -lus lus lus I L Lushai -lut I E Lushootseed -luu I L Lumba-Yakkha -luv I L Luwati -luw I L Luo (Cameroon) -luy M L Luyia -luz I L Southern Luri -lva I L Maku'a -lvi I L Lavi -lvk I L Lavukaleve -lvl I L Lwel -lvs I L Standard Latvian -lvu I L Levuka -lwa I L Lwalu -lwe I L Lewo Eleng -lwg I L Wanga -lwh I L White Lachi -lwl I L Eastern Lawa -lwm I L Laomian -lwo I L Luwo -lws I L Malawian Sign Language -lwt I L Lewotobi -lwu I L Lawu -lww I L Lewo -lxm I L Lakurumau -lya I L Layakha -lyg I L Lyngngam -lyn I L Luyana -lzh I H Literary Chinese -lzl I L Litzlitz -lzn I L Leinong Naga -lzz I L Laz -maa I L San Jerónimo Tecóatl Mazatec -mab I L Yutanduchi Mixtec -mad mad mad I L Madurese -mae I L Bo-Rukul -maf I L Mafa -mag mag mag I L Magahi -mah mah mah mh I L Marshallese -mai mai mai I L Maithili -maj I L Jalapa De Díaz Mazatec -mak mak mak I L Makasar -mal mal mal ml I L Malayalam -mam I L Mam -man man man M L Mandingo -maq I L Chiquihuitlán Mazatec -mar mar mar mr I L Marathi -mas mas mas I L Masai -mat I L San Francisco Matlatzinca -mau I L Huautla Mazatec -mav I L Sateré-Mawé -maw I L Mampruli -max I L North Moluccan Malay -maz I L Central Mazahua -mba I L Higaonon -mbb I L Western Bukidnon Manobo -mbc I L Macushi -mbd I L Dibabawon Manobo -mbe I E Molale -mbf I L Baba Malay -mbh I L Mangseng -mbi I L Ilianen Manobo -mbj I L Nadëb -mbk I L Malol -mbl I L Maxakalí -mbm I L Ombamba -mbn I L Macaguán -mbo I L Mbo (Cameroon) -mbp I L Malayo -mbq I L Maisin -mbr I L Nukak Makú -mbs I L Sarangani Manobo -mbt I L Matigsalug Manobo -mbu I L Mbula-Bwazza -mbv I L Mbulungish -mbw I L Maring -mbx I L Mari (East Sepik Province) -mby I L Memoni -mbz I L Amoltepec Mixtec -mca I L Maca -mcb I L Machiguenga -mcc I L Bitur -mcd I L Sharanahua -mce I L Itundujia Mixtec -mcf I L Matsés -mcg I L Mapoyo -mch I L Maquiritari -mci I L Mese -mcj I L Mvanip -mck I L Mbunda -mcl I E Macaguaje -mcm I L Malaccan Creole Portuguese -mcn I L Masana -mco I L Coatlán Mixe -mcp I L Makaa -mcq I L Ese -mcr I L Menya -mcs I L Mambai -mct I L Mengisa -mcu I L Cameroon Mambila -mcv I L Minanibai -mcw I L Mawa (Chad) -mcx I L Mpiemo -mcy I L South Watut -mcz I L Mawan -mda I L Mada (Nigeria) -mdb I L Morigi -mdc I L Soq -mdd I L Mbum -mde I L Maba (Chad) -mdf mdf mdf I L Moksha -mdg I L Massalat -mdh I L Maguindanaon -mdi I L Mamvu -mdj I L Mangbetu -mdk I L Mangbutu -mdl I L Maltese Sign Language -mdm I L Mayogo -mdn I L Mbati -mdp I L Mbala -mdq I L Mbole -mdr mdr mdr I L Mandar -mds I L Maria (Papua New Guinea) -mdt I L Mbere -mdu I L Mboko -mdv I L Santa Lucía Monteverde Mixtec -mdw I L Mbosi -mdx I L Dizin -mdy I L Male -mdz I L Suruí Do Pará -mea I L Menka -meb I L Ikobi -mec I L Marra -med I L Melpa -mee I L Mengen -mef I L Megam -meh I L Southwestern Tlaxiaco Mixtec -mei I L Midob -mej I L Meyah -mek I L Mekeo -mel I L Central Melanau -mem I E Mangala -men men men I L Mende (Sierra Leone) -meo I L Kedah Malay -mep I L Miriwoong -meq I L Merey -mer I L Meru -mes I L Masmaje -met I L Mato -meu I L Motu -mev I L Mano -mew I L Maaka -mey I L Hassaniyya -mez I L Menominee -mfa I L Pattani Malay -mfb I L Bangka -mfc I L Mba -mfd I L Mendankwe-Nkwen -mfe I L Morisyen -mff I L Naki -mfg I L Mogofin -mfh I L Matal -mfi I L Wandala -mfj I L Mefele -mfk I L North Mofu -mfl I L Putai -mfm I L Marghi South -mfn I L Cross River Mbembe -mfo I L Mbe -mfp I L Makassar Malay -mfq I L Moba -mfr I L Marrithiyel -mfs I L Mexican Sign Language -mft I L Mokerang -mfu I L Mbwela -mfv I L Mandjak -mfw I E Mulaha -mfx I L Melo -mfy I L Mayo -mfz I L Mabaan -mga mga mga I H Middle Irish (900-1200) -mgb I L Mararit -mgc I L Morokodo -mgd I L Moru -mge I L Mango -mgf I L Maklew -mgg I L Mpumpong -mgh I L Makhuwa-Meetto -mgi I L Lijili -mgj I L Abureni -mgk I L Mawes -mgl I L Maleu-Kilenge -mgm I L Mambae -mgn I L Mbangi -mgo I L Meta' -mgp I L Eastern Magar -mgq I L Malila -mgr I L Mambwe-Lungu -mgs I L Manda (Tanzania) -mgt I L Mongol -mgu I L Mailu -mgv I L Matengo -mgw I L Matumbi -mgy I L Mbunga -mgz I L Mbugwe -mha I L Manda (India) -mhb I L Mahongwe -mhc I L Mocho -mhd I L Mbugu -mhe I L Besisi -mhf I L Mamaa -mhg I L Margu -mhi I L Ma'di -mhj I L Mogholi -mhk I L Mungaka -mhl I L Mauwake -mhm I L Makhuwa-Moniga -mhn I L Mòcheno -mho I L Mashi (Zambia) -mhp I L Balinese Malay -mhq I L Mandan -mhr I L Eastern Mari -mhs I L Buru (Indonesia) -mht I L Mandahuaca -mhu I L Digaro-Mishmi -mhw I L Mbukushu -mhx I L Maru -mhy I L Ma'anyan -mhz I L Mor (Mor Islands) -mia I L Miami -mib I L Atatláhuca Mixtec -mic mic mic I L Mi'kmaq -mid I L Mandaic -mie I L Ocotepec Mixtec -mif I L Mofu-Gudur -mig I L San Miguel El Grande Mixtec -mih I L Chayuco Mixtec -mii I L Chigmecatitlán Mixtec -mij I L Abar -mik I L Mikasuki -mil I L Peñoles Mixtec -mim I L Alacatlatzala Mixtec -min min min I L Minangkabau -mio I L Pinotepa Nacional Mixtec -mip I L Apasco-Apoala Mixtec -miq I L Mískito -mir I L Isthmus Mixe -mis mis mis S S Uncoded languages -mit I L Southern Puebla Mixtec -miu I L Cacaloxtepec Mixtec -miw I L Akoye -mix I L Mixtepec Mixtec -miy I L Ayutla Mixtec -miz I L Coatzospan Mixtec -mjb I L Makalero -mjc I L San Juan Colorado Mixtec -mjd I L Northwest Maidu -mje I E Muskum -mjg I L Tu -mjh I L Mwera (Nyasa) -mji I L Kim Mun -mjj I L Mawak -mjk I L Matukar -mjl I L Mandeali -mjm I L Medebur -mjn I L Ma (Papua New Guinea) -mjo I L Malankuravan -mjp I L Malapandaram -mjq I E Malaryan -mjr I L Malavedan -mjs I L Miship -mjt I L Sauria Paharia -mju I L Manna-Dora -mjv I L Mannan -mjw I L Karbi -mjx I L Mahali -mjy I E Mahican -mjz I L Majhi -mka I L Mbre -mkb I L Mal Paharia -mkc I L Siliput -mkd mac mkd mk I L Macedonian -mke I L Mawchi -mkf I L Miya -mkg I L Mak (China) -mki I L Dhatki -mkj I L Mokilese -mkk I L Byep -mkl I L Mokole -mkm I L Moklen -mkn I L Kupang Malay -mko I L Mingang Doso -mkp I L Moikodi -mkq I E Bay Miwok -mkr I L Malas -mks I L Silacayoapan Mixtec -mkt I L Vamale -mku I L Konyanka Maninka -mkv I L Mafea -mkw I L Kituba (Congo) -mkx I L Kinamiging Manobo -mky I L East Makian -mkz I L Makasae -mla I L Malo -mlb I L Mbule -mlc I L Cao Lan -mle I L Manambu -mlf I L Mal -mlg mlg mlg mg M L Malagasy -mlh I L Mape -mli I L Malimpung -mlj I L Miltu -mlk I L Ilwana -mll I L Malua Bay -mlm I L Mulam -mln I L Malango -mlo I L Mlomp -mlp I L Bargam -mlq I L Western Maninkakan -mlr I L Vame -mls I L Masalit -mlt mlt mlt mt I L Maltese -mlu I L To'abaita -mlv I L Motlav -mlw I L Moloko -mlx I L Malfaxal -mlz I L Malaynon -mma I L Mama -mmb I L Momina -mmc I L Michoacán Mazahua -mmd I L Maonan -mme I L Mae -mmf I L Mundat -mmg I L North Ambrym -mmh I L Mehináku -mmi I L Hember Avu -mmj I L Majhwar -mmk I L Mukha-Dora -mml I L Man Met -mmm I L Maii -mmn I L Mamanwa -mmo I L Mangga Buang -mmp I L Siawi -mmq I L Musak -mmr I L Western Xiangxi Miao -mmt I L Malalamai -mmu I L Mmaala -mmv I E Miriti -mmw I L Emae -mmx I L Madak -mmy I L Migaama -mmz I L Mabaale -mna I L Mbula -mnb I L Muna -mnc mnc mnc I L Manchu -mnd I L Mondé -mne I L Naba -mnf I L Mundani -mng I L Eastern Mnong -mnh I L Mono (Democratic Republic of Congo) -mni mni mni I L Manipuri -mnj I L Munji -mnk I L Mandinka -mnl I L Tiale -mnm I L Mapena -mnn I L Southern Mnong -mnp I L Min Bei Chinese -mnq I L Minriq -mnr I L Mono (USA) -mns I L Mansi -mnu I L Mer -mnv I L Rennell-Bellona -mnw I L Mon -mnx I L Manikion -mny I L Manyawa -mnz I L Moni -moa I L Mwan -moc I L Mocoví -mod I E Mobilian -moe I L Innu -mog I L Mongondow -moh moh moh I L Mohawk -moi I L Mboi -moj I L Monzombo -mok I L Morori -mom I E Mangue -mon mon mon mn M L Mongolian -moo I L Monom -mop I L Mopán Maya -moq I L Mor (Bomberai Peninsula) -mor I L Moro -mos mos mos I L Mossi -mot I L Barí -mou I L Mogum -mov I L Mohave -mow I L Moi (Congo) -mox I L Molima -moy I L Shekkacho -moz I L Mukulu -mpa I L Mpoto -mpb I L Malak Malak -mpc I L Mangarrayi -mpd I L Machinere -mpe I L Majang -mpg I L Marba -mph I L Maung -mpi I L Mpade -mpj I L Martu Wangka -mpk I L Mbara (Chad) -mpl I L Middle Watut -mpm I L Yosondúa Mixtec -mpn I L Mindiri -mpo I L Miu -mpp I L Migabac -mpq I L Matís -mpr I L Vangunu -mps I L Dadibi -mpt I L Mian -mpu I L Makuráp -mpv I L Mungkip -mpw I L Mapidian -mpx I L Misima-Panaeati -mpy I L Mapia -mpz I L Mpi -mqa I L Maba (Indonesia) -mqb I L Mbuko -mqc I L Mangole -mqe I L Matepi -mqf I L Momuna -mqg I L Kota Bangun Kutai Malay -mqh I L Tlazoyaltepec Mixtec -mqi I L Mariri -mqj I L Mamasa -mqk I L Rajah Kabunsuwan Manobo -mql I L Mbelime -mqm I L South Marquesan -mqn I L Moronene -mqo I L Modole -mqp I L Manipa -mqq I L Minokok -mqr I L Mander -mqs I L West Makian -mqt I L Mok -mqu I L Mandari -mqv I L Mosimo -mqw I L Murupi -mqx I L Mamuju -mqy I L Manggarai -mqz I L Pano -mra I L Mlabri -mrb I L Marino -mrc I L Maricopa -mrd I L Western Magar -mre I E Martha's Vineyard Sign Language -mrf I L Elseng -mrg I L Mising -mrh I L Mara Chin -mri mao mri mi I L Maori -mrj I L Western Mari -mrk I L Hmwaveke -mrl I L Mortlockese -mrm I L Merlav -mrn I L Cheke Holo -mro I L Mru -mrp I L Morouas -mrq I L North Marquesan -mrr I L Maria (India) -mrs I L Maragus -mrt I L Marghi Central -mru I L Mono (Cameroon) -mrv I L Mangareva -mrw I L Maranao -mrx I L Maremgi -mry I L Mandaya -mrz I L Marind -msa may msa ms M L Malay (macrolanguage) -msb I L Masbatenyo -msc I L Sankaran Maninka -msd I L Yucatec Maya Sign Language -mse I L Musey -msf I L Mekwei -msg I L Moraid -msh I L Masikoro Malagasy -msi I L Sabah Malay -msj I L Ma (Democratic Republic of Congo) -msk I L Mansaka -msl I L Molof -msm I L Agusan Manobo -msn I L Vurës -mso I L Mombum -msp I E Maritsauá -msq I L Caac -msr I L Mongolian Sign Language -mss I L West Masela -msu I L Musom -msv I L Maslam -msw I L Mansoanka -msx I L Moresada -msy I L Aruamu -msz I L Momare -mta I L Cotabato Manobo -mtb I L Anyin Morofo -mtc I L Munit -mtd I L Mualang -mte I L Mono (Solomon Islands) -mtf I L Murik (Papua New Guinea) -mtg I L Una -mth I L Munggui -mti I L Maiwa (Papua New Guinea) -mtj I L Moskona -mtk I L Mbe' -mtl I L Montol -mtm I E Mator -mtn I E Matagalpa -mto I L Totontepec Mixe -mtp I L Wichí Lhamtés Nocten -mtq I L Muong -mtr I L Mewari -mts I L Yora -mtt I L Mota -mtu I L Tututepec Mixtec -mtv I L Asaro'o -mtw I L Southern Binukidnon -mtx I L Tidaá Mixtec -mty I L Nabi -mua I L Mundang -mub I L Mubi -muc I L Ajumbu -mud I L Mednyj Aleut -mue I L Media Lengua -mug I L Musgu -muh I L Mündü -mui I L Musi -muj I L Mabire -muk I L Mugom -mul mul mul S S Multiple languages -mum I L Maiwala -muo I L Nyong -mup I L Malvi -muq I L Eastern Xiangxi Miao -mur I L Murle -mus mus mus I L Creek -mut I L Western Muria -muu I L Yaaku -muv I L Muthuvan -mux I L Bo-Ung -muy I L Muyang -muz I L Mursi -mva I L Manam -mvb I E Mattole -mvd I L Mamboru -mve I L Marwari (Pakistan) -mvf I L Peripheral Mongolian -mvg I L Yucuañe Mixtec -mvh I L Mulgi -mvi I L Miyako -mvk I L Mekmek -mvl I E Mbara (Australia) -mvn I L Minaveha -mvo I L Marovo -mvp I L Duri -mvq I L Moere -mvr I L Marau -mvs I L Massep -mvt I L Mpotovoro -mvu I L Marfa -mvv I L Tagal Murut -mvw I L Machinga -mvx I L Meoswar -mvy I L Indus Kohistani -mvz I L Mesqan -mwa I L Mwatebu -mwb I L Juwal -mwc I L Are -mwe I L Mwera (Chimwera) -mwf I L Murrinh-Patha -mwg I L Aiklep -mwh I L Mouk-Aria -mwi I L Labo -mwk I L Kita Maninkakan -mwl mwl mwl I L Mirandese -mwm I L Sar -mwn I L Nyamwanga -mwo I L Central Maewo -mwp I L Kala Lagaw Ya -mwq I L Mün Chin -mwr mwr mwr M L Marwari -mws I L Mwimbi-Muthambi -mwt I L Moken -mwu I E Mittu -mwv I L Mentawai -mww I L Hmong Daw -mwz I L Moingi -mxa I L Northwest Oaxaca Mixtec -mxb I L Tezoatlán Mixtec -mxc I L Manyika -mxd I L Modang -mxe I L Mele-Fila -mxf I L Malgbe -mxg I L Mbangala -mxh I L Mvuba -mxi I H Mozarabic -mxj I L Miju-Mishmi -mxk I L Monumbo -mxl I L Maxi Gbe -mxm I L Meramera -mxn I L Moi (Indonesia) -mxo I L Mbowe -mxp I L Tlahuitoltepec Mixe -mxq I L Juquila Mixe -mxr I L Murik (Malaysia) -mxs I L Huitepec Mixtec -mxt I L Jamiltepec Mixtec -mxu I L Mada (Cameroon) -mxv I L Metlatónoc Mixtec -mxw I L Namo -mxx I L Mahou -mxy I L Southeastern Nochixtlán Mixtec -mxz I L Central Masela -mya bur mya my I L Burmese -myb I L Mbay -myc I L Mayeka -mye I L Myene -myf I L Bambassi -myg I L Manta -myh I L Makah -myj I L Mangayat -myk I L Mamara Senoufo -myl I L Moma -mym I L Me'en -myo I L Anfillo -myp I L Pirahã -myr I L Muniche -mys I E Mesmes -myu I L Mundurukú -myv myv myv I L Erzya -myw I L Muyuw -myx I L Masaaba -myy I L Macuna -myz I H Classical Mandaic -mza I L Santa María Zacatepec Mixtec -mzb I L Tumzabt -mzc I L Madagascar Sign Language -mzd I L Malimba -mze I L Morawa -mzg I L Monastic Sign Language -mzh I L Wichí Lhamtés Güisnay -mzi I L Ixcatlán Mazatec -mzj I L Manya -mzk I L Nigeria Mambila -mzl I L Mazatlán Mixe -mzm I L Mumuye -mzn I L Mazanderani -mzo I E Matipuhy -mzp I L Movima -mzq I L Mori Atas -mzr I L Marúbo -mzs I L Macanese -mzt I L Mintil -mzu I L Inapang -mzv I L Manza -mzw I L Deg -mzx I L Mawayana -mzy I L Mozambican Sign Language -mzz I L Maiadomu -naa I L Namla -nab I L Southern Nambikuára -nac I L Narak -nae I E Naka'ela -naf I L Nabak -nag I L Naga Pidgin -naj I L Nalu -nak I L Nakanai -nal I L Nalik -nam I L Ngan'gityemerri -nan I L Min Nan Chinese -nao I L Naaba -nap nap nap I L Neapolitan -naq I L Khoekhoe -nar I L Iguta -nas I L Naasioi -nat I L Ca̱hungwa̱rya̱ -nau nau nau na I L Nauru -nav nav nav nv I L Navajo -naw I L Nawuri -nax I L Nakwi -nay I E Ngarrindjeri -naz I L Coatepec Nahuatl -nba I L Nyemba -nbb I L Ndoe -nbc I L Chang Naga -nbd I L Ngbinda -nbe I L Konyak Naga -nbg I L Nagarchal -nbh I L Ngamo -nbi I L Mao Naga -nbj I L Ngarinyman -nbk I L Nake -nbl nbl nbl nr I L South Ndebele -nbm I L Ngbaka Ma'bo -nbn I L Kuri -nbo I L Nkukoli -nbp I L Nnam -nbq I L Nggem -nbr I L Numana -nbs I L Namibian Sign Language -nbt I L Na -nbu I L Rongmei Naga -nbv I L Ngamambo -nbw I L Southern Ngbandi -nby I L Ningera -nca I L Iyo -ncb I L Central Nicobarese -ncc I L Ponam -ncd I L Nachering -nce I L Yale -ncf I L Notsi -ncg I L Nisga'a -nch I L Central Huasteca Nahuatl -nci I H Classical Nahuatl -ncj I L Northern Puebla Nahuatl -nck I L Na-kara -ncl I L Michoacán Nahuatl -ncm I L Nambo -ncn I L Nauna -nco I L Sibe -ncq I L Northern Katang -ncr I L Ncane -ncs I L Nicaraguan Sign Language -nct I L Chothe Naga -ncu I L Chumburung -ncx I L Central Puebla Nahuatl -ncz I E Natchez -nda I L Ndasa -ndb I L Kenswei Nsei -ndc I L Ndau -ndd I L Nde-Nsele-Nta -nde nde nde nd I L North Ndebele -ndf I H Nadruvian -ndg I L Ndengereko -ndh I L Ndali -ndi I L Samba Leko -ndj I L Ndamba -ndk I L Ndaka -ndl I L Ndolo -ndm I L Ndam -ndn I L Ngundi -ndo ndo ndo ng I L Ndonga -ndp I L Ndo -ndq I L Ndombe -ndr I L Ndoola -nds nds nds I L Low German -ndt I L Ndunga -ndu I L Dugun -ndv I L Ndut -ndw I L Ndobo -ndx I L Nduga -ndy I L Lutos -ndz I L Ndogo -nea I L Eastern Ngad'a -neb I L Toura (Côte d'Ivoire) -nec I L Nedebang -ned I L Nde-Gbite -nee I L Nêlêmwa-Nixumwak -nef I L Nefamese -neg I L Negidal -neh I L Nyenkha -nei I H Neo-Hittite -nej I L Neko -nek I L Neku -nem I L Nemi -nen I L Nengone -neo I L Ná-Meo -nep nep nep ne M L Nepali (macrolanguage) -neq I L North Central Mixe -ner I L Yahadian -nes I L Bhoti Kinnauri -net I L Nete -neu I C Neo -nev I L Nyaheun -new new new I L Nepal Bhasa -nex I L Neme -ney I L Neyo -nez I L Nez Perce -nfa I L Dhao -nfd I L Ahwai -nfl I L Ayiwo -nfr I L Nafaanra -nfu I L Mfumte -nga I L Ngbaka -ngb I L Northern Ngbandi -ngc I L Ngombe (Democratic Republic of Congo) -ngd I L Ngando (Central African Republic) -nge I L Ngemba -ngg I L Ngbaka Manza -ngh I L Nǁng -ngi I L Ngizim -ngj I L Ngie -ngk I L Dalabon -ngl I L Lomwe -ngm I L Ngatik Men's Creole -ngn I L Ngwo -ngp I L Ngulu -ngq I L Ngurimi -ngr I L Engdewu -ngs I L Gvoko -ngt I L Kriang -ngu I L Guerrero Nahuatl -ngv I E Nagumi -ngw I L Ngwaba -ngx I L Nggwahyi -ngy I L Tibea -ngz I L Ngungwel -nha I L Nhanda -nhb I L Beng -nhc I E Tabasco Nahuatl -nhd I L Chiripá -nhe I L Eastern Huasteca Nahuatl -nhf I L Nhuwala -nhg I L Tetelcingo Nahuatl -nhh I L Nahari -nhi I L Zacatlán-Ahuacatlán-Tepetzintla Nahuatl -nhk I L Isthmus-Cosoleacaque Nahuatl -nhm I L Morelos Nahuatl -nhn I L Central Nahuatl -nho I L Takuu -nhp I L Isthmus-Pajapan Nahuatl -nhq I L Huaxcaleca Nahuatl -nhr I L Naro -nht I L Ometepec Nahuatl -nhu I L Noone -nhv I L Temascaltepec Nahuatl -nhw I L Western Huasteca Nahuatl -nhx I L Isthmus-Mecayapan Nahuatl -nhy I L Northern Oaxaca Nahuatl -nhz I L Santa María La Alta Nahuatl -nia nia nia I L Nias -nib I L Nakame -nid I E Ngandi -nie I L Niellim -nif I L Nek -nig I E Ngalakgan -nih I L Nyiha (Tanzania) -nii I L Nii -nij I L Ngaju -nik I L Southern Nicobarese -nil I L Nila -nim I L Nilamba -nin I L Ninzo -nio I L Nganasan -niq I L Nandi -nir I L Nimboran -nis I L Nimi -nit I L Southeastern Kolami -niu niu niu I L Niuean -niv I L Gilyak -niw I L Nimo -nix I L Hema -niy I L Ngiti -niz I L Ningil -nja I L Nzanyi -njb I L Nocte Naga -njd I L Ndonde Hamba -njh I L Lotha Naga -nji I L Gudanji -njj I L Njen -njl I L Njalgulgule -njm I L Angami Naga -njn I L Liangmai Naga -njo I L Ao Naga -njr I L Njerep -njs I L Nisa -njt I L Ndyuka-Trio Pidgin -nju I L Ngadjunmaya -njx I L Kunyi -njy I L Njyem -njz I L Nyishi -nka I L Nkoya -nkb I L Khoibu Naga -nkc I L Nkongho -nkd I L Koireng -nke I L Duke -nkf I L Inpui Naga -nkg I L Nekgini -nkh I L Khezha Naga -nki I L Thangal Naga -nkj I L Nakai -nkk I L Nokuku -nkm I L Namat -nkn I L Nkangala -nko I L Nkonya -nkp I E Niuatoputapu -nkq I L Nkami -nkr I L Nukuoro -nks I L North Asmat -nkt I L Nyika (Tanzania) -nku I L Bouna Kulango -nkv I L Nyika (Malawi and Zambia) -nkw I L Nkutu -nkx I L Nkoroo -nkz I L Nkari -nla I L Ngombale -nlc I L Nalca -nld dut nld nl I L Dutch -nle I L East Nyala -nlg I L Gela -nli I L Grangali -nlj I L Nyali -nlk I L Ninia Yali -nll I L Nihali -nlm I L Mankiyali -nlo I L Ngul -nlq I L Lao Naga -nlu I L Nchumbulu -nlv I L Orizaba Nahuatl -nlw I E Walangama -nlx I L Nahali -nly I L Nyamal -nlz I L Nalögo -nma I L Maram Naga -nmb I L Big Nambas -nmc I L Ngam -nmd I L Ndumu -nme I L Mzieme Naga -nmf I L Tangkhul Naga (India) -nmg I L Kwasio -nmh I L Monsang Naga -nmi I L Nyam -nmj I L Ngombe (Central African Republic) -nmk I L Namakura -nml I L Ndemli -nmm I L Manangba -nmn I L ǃXóõ -nmo I L Moyon Naga -nmp I E Nimanbur -nmq I L Nambya -nmr I E Nimbari -nms I L Letemboi -nmt I L Namonuito -nmu I L Northeast Maidu -nmv I E Ngamini -nmw I L Nimoa -nmx I L Nama (Papua New Guinea) -nmy I L Namuyi -nmz I L Nawdm -nna I L Nyangumarta -nnb I L Nande -nnc I L Nancere -nnd I L West Ambae -nne I L Ngandyera -nnf I L Ngaing -nng I L Maring Naga -nnh I L Ngiemboon -nni I L North Nuaulu -nnj I L Nyangatom -nnk I L Nankina -nnl I L Northern Rengma Naga -nnm I L Namia -nnn I L Ngete -nno nno nno nn I L Norwegian Nynorsk -nnp I L Wancho Naga -nnq I L Ngindo -nnr I E Narungga -nnt I E Nanticoke -nnu I L Dwang -nnv I E Nugunu (Australia) -nnw I L Southern Nuni -nny I E Nyangga -nnz I L Nda'nda' -noa I L Woun Meu -nob nob nob nb I L Norwegian Bokmål -noc I L Nuk -nod I L Northern Thai -noe I L Nimadi -nof I L Nomane -nog nog nog I L Nogai -noh I L Nomu -noi I L Noiri -noj I L Nonuya -nok I E Nooksack -nol I E Nomlaki -non non non I H Old Norse -nop I L Numanggang -noq I L Ngongo -nor nor nor no M L Norwegian -nos I L Eastern Nisu -not I L Nomatsiguenga -nou I L Ewage-Notu -nov I C Novial -now I L Nyambo -noy I L Noy -noz I L Nayi -npa I L Nar Phu -npb I L Nupbikha -npg I L Ponyo-Gongwang Naga -nph I L Phom Naga -npi I L Nepali (individual language) -npl I L Southeastern Puebla Nahuatl -npn I L Mondropolon -npo I L Pochuri Naga -nps I L Nipsan -npu I L Puimei Naga -npx I L Noipx -npy I L Napu -nqg I L Southern Nago -nqk I L Kura Ede Nago -nql I L Ngendelengo -nqm I L Ndom -nqn I L Nen -nqo nqo nqo I L N'Ko -nqq I L Kyan-Karyaw Naga -nqt I L Nteng -nqy I L Akyaung Ari Naga -nra I L Ngom -nrb I L Nara -nrc I H Noric -nre I L Southern Rengma Naga -nrf I L Jèrriais -nrg I L Narango -nri I L Chokri Naga -nrk I L Ngarla -nrl I L Ngarluma -nrm I L Narom -nrn I E Norn -nrp I H North Picene -nrr I E Norra -nrt I E Northern Kalapuya -nru I L Narua -nrx I E Ngurmbur -nrz I L Lala -nsa I L Sangtam Naga -nsb I E Lower Nossob -nsc I L Nshi -nsd I L Southern Nisu -nse I L Nsenga -nsf I L Northwestern Nisu -nsg I L Ngasa -nsh I L Ngoshie -nsi I L Nigerian Sign Language -nsk I L Naskapi -nsl I L Norwegian Sign Language -nsm I L Sumi Naga -nsn I L Nehan -nso nso nso I L Pedi -nsp I L Nepalese Sign Language -nsq I L Northern Sierra Miwok -nsr I L Maritime Sign Language -nss I L Nali -nst I L Tase Naga -nsu I L Sierra Negra Nahuatl -nsv I L Southwestern Nisu -nsw I L Navut -nsx I L Nsongo -nsy I L Nasal -nsz I L Nisenan -ntd I L Northern Tidung -ntg I E Ngantangarra -nti I L Natioro -ntj I L Ngaanyatjarra -ntk I L Ikoma-Nata-Isenye -ntm I L Nateni -nto I L Ntomba -ntp I L Northern Tepehuan -ntr I L Delo -ntu I L Natügu -ntw I E Nottoway -ntx I L Tangkhul Naga (Myanmar) -nty I L Mantsi -ntz I L Natanzi -nua I L Yuanga -nuc I E Nukuini -nud I L Ngala -nue I L Ngundu -nuf I L Nusu -nug I E Nungali -nuh I L Ndunda -nui I L Ngumbi -nuj I L Nyole -nuk I L Nuu-chah-nulth -nul I E Nusa Laut -num I L Niuafo'ou -nun I L Anong -nuo I L Nguôn -nup I L Nupe-Nupe-Tako -nuq I L Nukumanu -nur I L Nukuria -nus I L Nuer -nut I L Nung (Viet Nam) -nuu I L Ngbundu -nuv I L Northern Nuni -nuw I L Nguluwan -nux I L Mehek -nuy I L Nunggubuyu -nuz I L Tlamacazapa Nahuatl -nvh I L Nasarian -nvm I L Namiae -nvo I L Nyokon -nwa I E Nawathinehena -nwb I L Nyabwa -nwc nwc nwc I H Classical Newari -nwe I L Ngwe -nwg I E Ngayawung -nwi I L Southwest Tanna -nwm I L Nyamusa-Molo -nwo I E Nauo -nwr I L Nawaru -nww I L Ndwewe -nwx I H Middle Newar -nwy I E Nottoway-Meherrin -nxa I L Nauete -nxd I L Ngando (Democratic Republic of Congo) -nxe I L Nage -nxg I L Ngad'a -nxi I L Nindi -nxk I L Koki Naga -nxl I L South Nuaulu -nxm I H Numidian -nxn I E Ngawun -nxo I L Ndambomo -nxq I L Naxi -nxr I L Ninggerum -nxx I L Nafri -nya nya nya ny I L Chichewa -nyb I L Nyangbo -nyc I L Nyanga-li -nyd I L Nyore -nye I L Nyengo -nyf I L Giryama -nyg I L Nyindu -nyh I L Nyikina -nyi I L Ama (Sudan) -nyj I L Nyanga -nyk I L Nyaneka -nyl I L Nyeu -nym nym nym I L Nyamwezi -nyn nyn nyn I L Nyankole -nyo nyo nyo I L Nyoro -nyp I E Nyang'i -nyq I L Nayini -nyr I L Nyiha (Malawi) -nys I L Nyungar -nyt I E Nyawaygi -nyu I L Nyungwe -nyv I E Nyulnyul -nyw I L Nyaw -nyx I E Nganyaywana -nyy I L Nyakyusa-Ngonde -nza I L Tigon Mbembe -nzb I L Njebi -nzd I L Nzadi -nzi nzi nzi I L Nzima -nzk I L Nzakara -nzm I L Zeme Naga -nzr I L Dir-Nyamzak-Mbarimi -nzs I L New Zealand Sign Language -nzu I L Teke-Nzikou -nzy I L Nzakambay -nzz I L Nanga Dama Dogon -oaa I L Orok -oac I L Oroch -oak I L Noakhali -oar I H Old Aramaic (up to 700 BCE) -oav I H Old Avar -obi I E Obispeño -obk I L Southern Bontok -obl I L Oblo -obm I H Moabite -obo I L Obo Manobo -obr I H Old Burmese -obt I H Old Breton -obu I L Obulom -oca I L Ocaina -och I H Old Chinese -oci oci oci oc I L Occitan (post 1500) -ocm I H Old Cham -oco I H Old Cornish -ocu I L Atzingo Matlatzinca -oda I L Odut -odk I L Od -odt I H Old Dutch -odu I L Odual -ofo I E Ofo -ofs I H Old Frisian -ofu I L Efutop -ogb I L Ogbia -ogc I L Ogbah -oge I H Old Georgian -ogg I L Ogbogolo -ogo I L Khana -ogu I L Ogbronuagum -oht I H Old Hittite -ohu I H Old Hungarian -oia I L Oirata -oie I L Okolie -oin I L Inebu One -ojb I L Northwestern Ojibwa -ojc I L Central Ojibwa -ojg I L Eastern Ojibwa -oji oji oji oj M L Ojibwa -ojp I H Old Japanese -ojs I L Severn Ojibwa -ojv I L Ontong Java -ojw I L Western Ojibwa -oka I L Okanagan -okb I L Okobo -okc I L Kobo -okd I L Okodia -oke I L Okpe (Southwestern Edo) -okg I E Koko Babangk -okh I L Koresh-e Rostam -oki I L Okiek -okj I E Oko-Juwoi -okk I L Kwamtim One -okl I E Old Kentish Sign Language -okm I H Middle Korean (10th-16th cent.) -okn I L Oki-No-Erabu -oko I H Old Korean (3rd-9th cent.) -okr I L Kirike -oks I L Oko-Eni-Osayen -oku I L Oku -okv I L Orokaiva -okx I L Okpe (Northwestern Edo) -okz I H Old Khmer -ola I L Walungge -olb I L Oli-Bodiman -old I L Mochi -ole I L Olekha -olk I E Olkol -olm I L Oloma -olo I L Livvi -olr I L Olrat -olt I H Old Lithuanian -olu I L Kuvale -oma I L Omaha-Ponca -omb I L East Ambae -omc I E Mochica -omg I L Omagua -omi I L Omi -omk I E Omok -oml I L Ombo -omn I H Minoan -omo I L Utarmbung -omp I H Old Manipuri -omr I H Old Marathi -omt I L Omotik -omu I E Omurano -omw I L South Tairora -omx I H Old Mon -omy I H Old Malay -ona I L Ona -onb I L Lingao -one I L Oneida -ong I L Olo -oni I L Onin -onj I L Onjob -onk I L Kabore One -onn I L Onobasulu -ono I L Onondaga -onp I L Sartang -onr I L Northern One -ons I L Ono -ont I L Ontenu -onu I L Unua -onw I H Old Nubian -onx I L Onin Based Pidgin -ood I L Tohono O'odham -oog I L Ong -oon I L Önge -oor I L Oorlams -oos I H Old Ossetic -opa I L Okpamheri -opk I L Kopkaka -opm I L Oksapmin -opo I L Opao -opt I E Opata -opy I L Ofayé -ora I L Oroha -orc I L Orma -ore I L Orejón -org I L Oring -orh I L Oroqen -ori ori ori or M L Oriya (macrolanguage) -orm orm orm om M L Oromo -orn I L Orang Kanaq -oro I L Orokolo -orr I L Oruma -ors I L Orang Seletar -ort I L Adivasi Oriya -oru I L Ormuri -orv I H Old Russian -orw I L Oro Win -orx I L Oro -ory I L Odia -orz I L Ormu -osa osa osa I L Osage -osc I H Oscan -osd I L Digor Ossetic -osi I L Osing -osn I H Old Sundanese -oso I L Ososo -osp I H Old Spanish -oss oss oss os I L Iron Ossetic -ost I L Osatu -osu I L Southern One -osx I H Old Saxon -ota ota ota I H Ottoman Turkish (1500-1928) -otb I H Old Tibetan -otd I L Ot Danum -ote I L Mezquital Otomi -oti I E Oti -otk I H Old Turkish -otl I L Tilapa Otomi -otm I L Eastern Highland Otomi -otn I L Tenango Otomi -otq I L Querétaro Otomi -otr I L Otoro -ots I L Estado de México Otomi -ott I L Temoaya Otomi -otu I E Otuke -otw I L Ottawa -otx I L Texcatepec Otomi -oty I H Old Tamil -otz I L Ixtenco Otomi -oua I L Tagargrent -oub I L Glio-Oubi -oue I L Oune -oui I H Old Uighur -oum I E Ouma -ovd I L Elfdalian -owi I L Owiniga -owl I H Old Welsh -oyb I L Oy -oyd I L Oyda -oym I L Wayampi -oyy I L Oya'oya -ozm I L Koonzime -pab I L Parecís -pac I L Pacoh -pad I L Paumarí -pae I L Pagibete -paf I E Paranawát -pag pag pag I L Pangasinan -pah I L Tenharim -pai I L Pe -pak I L Parakanã -pal pal pal I H Pahlavi -pam pam pam I L Pampanga -pan pan pan pa I L Panjabi -pao I L Northern Paiute -pap pap pap I L Papiamento -paq I L Parya -par I L Panamint -pas I L Papasena -pau pau pau I L Palauan -pav I L Pakaásnovos -paw I L Pawnee -pax I E Pankararé -pay I L Pech -paz I E Pankararú -pbb I L Páez -pbc I L Patamona -pbe I L Mezontla Popoloca -pbf I L Coyotepec Popoloca -pbg I E Paraujano -pbh I L E'ñapa Woromaipu -pbi I L Parkwa -pbl I L Mak (Nigeria) -pbm I L Puebla Mazatec -pbn I L Kpasam -pbo I L Papel -pbp I L Badyara -pbr I L Pangwa -pbs I L Central Pame -pbt I L Southern Pashto -pbu I L Northern Pashto -pbv I L Pnar -pby I L Pyu (Papua New Guinea) -pca I L Santa Inés Ahuatempan Popoloca -pcb I L Pear -pcc I L Bouyei -pcd I L Picard -pce I L Ruching Palaung -pcf I L Paliyan -pcg I L Paniya -pch I L Pardhan -pci I L Duruwa -pcj I L Parenga -pck I L Paite Chin -pcl I L Pardhi -pcm I L Nigerian Pidgin -pcn I L Piti -pcp I L Pacahuara -pcw I L Pyapun -pda I L Anam -pdc I L Pennsylvania German -pdi I L Pa Di -pdn I L Podena -pdo I L Padoe -pdt I L Plautdietsch -pdu I L Kayan -pea I L Peranakan Indonesian -peb I E Eastern Pomo -ped I L Mala (Papua New Guinea) -pee I L Taje -pef I E Northeastern Pomo -peg I L Pengo -peh I L Bonan -pei I L Chichimeca-Jonaz -pej I E Northern Pomo -pek I L Penchal -pel I L Pekal -pem I L Phende -peo peo peo I H Old Persian (ca. 600-400 B.C.) -pep I L Kunja -peq I L Southern Pomo -pes I L Iranian Persian -pev I L Pémono -pex I L Petats -pey I L Petjo -pez I L Eastern Penan -pfa I L Pááfang -pfe I L Pere -pfl I L Pfaelzisch -pga I L Sudanese Creole Arabic -pgd I H Gāndhārī -pgg I L Pangwali -pgi I L Pagi -pgk I L Rerep -pgl I H Primitive Irish -pgn I H Paelignian -pgs I L Pangseng -pgu I L Pagu -pgz I L Papua New Guinean Sign Language -pha I L Pa-Hng -phd I L Phudagi -phg I L Phuong -phh I L Phukha -phj I L Pahari -phk I L Phake -phl I L Phalura -phm I L Phimbi -phn phn phn I H Phoenician -pho I L Phunoi -phq I L Phana' -phr I L Pahari-Potwari -pht I L Phu Thai -phu I L Phuan -phv I L Pahlavani -phw I L Phangduwali -pia I L Pima Bajo -pib I L Yine -pic I L Pinji -pid I L Piaroa -pie I E Piro -pif I L Pingelapese -pig I L Pisabo -pih I L Pitcairn-Norfolk -pij I E Pijao -pil I L Yom -pim I E Powhatan -pin I L Piame -pio I L Piapoco -pip I L Pero -pir I L Piratapuyo -pis I L Pijin -pit I E Pitta Pitta -piu I L Pintupi-Luritja -piv I L Pileni -piw I L Pimbwe -pix I L Piu -piy I L Piya-Kwonci -piz I L Pije -pjt I L Pitjantjatjara -pka I H Ardhamāgadhī Prākrit -pkb I L Pokomo -pkc I H Paekche -pkg I L Pak-Tong -pkh I L Pankhu -pkn I L Pakanha -pko I L Pökoot -pkp I L Pukapuka -pkr I L Attapady Kurumba -pks I L Pakistan Sign Language -pkt I L Maleng -pku I L Paku -pla I L Miani -plb I L Polonombauk -plc I L Central Palawano -pld I L Polari -ple I L Palu'e -plg I L Pilagá -plh I L Paulohi -pli pli pli pi I H Pali -plk I L Kohistani Shina -pll I L Shwe Palaung -pln I L Palenquero -plo I L Oluta Popoluca -plq I H Palaic -plr I L Palaka Senoufo -pls I L San Marcos Tlacoyalco Popoloca -plt I L Plateau Malagasy -plu I L Palikúr -plv I L Southwest Palawano -plw I L Brooke's Point Palawano -ply I L Bolyu -plz I L Paluan -pma I L Paama -pmb I L Pambia -pmd I E Pallanganmiddang -pme I L Pwaamei -pmf I L Pamona -pmh I H Māhārāṣṭri Prākrit -pmi I L Northern Pumi -pmj I L Southern Pumi -pml I E Lingua Franca -pmm I L Pomo -pmn I L Pam -pmo I L Pom -pmq I L Northern Pame -pmr I L Paynamar -pms I L Piemontese -pmt I L Tuamotuan -pmw I L Plains Miwok -pmx I L Poumei Naga -pmy I L Papuan Malay -pmz I E Southern Pame -pna I L Punan Bah-Biau -pnb I L Western Panjabi -pnc I L Pannei -pnd I L Mpinda -pne I L Western Penan -png I L Pangu -pnh I L Penrhyn -pni I L Aoheng -pnj I E Pinjarup -pnk I L Paunaka -pnl I L Paleni -pnm I L Punan Batu 1 -pnn I L Pinai-Hagahai -pno I E Panobo -pnp I L Pancana -pnq I L Pana (Burkina Faso) -pnr I L Panim -pns I L Ponosakan -pnt I L Pontic -pnu I L Jiongnai Bunu -pnv I L Pinigura -pnw I L Banyjima -pnx I L Phong-Kniang -pny I L Pinyin -pnz I L Pana (Central African Republic) -poc I L Poqomam -poe I L San Juan Atzingo Popoloca -pof I L Poke -pog I E Potiguára -poh I L Poqomchi' -poi I L Highland Popoluca -pok I L Pokangá -pol pol pol pl I L Polish -pom I L Southeastern Pomo -pon pon pon I L Pohnpeian -poo I E Central Pomo -pop I L Pwapwâ -poq I L Texistepec Popoluca -por por por pt I L Portuguese -pos I L Sayula Popoluca -pot I L Potawatomi -pov I L Upper Guinea Crioulo -pow I L San Felipe Otlaltepec Popoloca -pox I E Polabian -poy I L Pogolo -ppe I L Papi -ppi I L Paipai -ppk I L Uma -ppl I L Pipil -ppm I L Papuma -ppn I L Papapana -ppo I L Folopa -ppp I L Pelende -ppq I L Pei -pps I L San Luís Temalacayuca Popoloca -ppt I L Pare -ppu I E Papora -pqa I L Pa'a -pqm I L Malecite-Passamaquoddy -prc I L Parachi -prd I L Parsi-Dari -pre I L Principense -prf I L Paranan -prg I L Prussian -prh I L Porohanon -pri I L Paicî -prk I L Parauk -prl I L Peruvian Sign Language -prm I L Kibiri -prn I L Prasuni -pro pro pro I H Old Provençal (to 1500) -prq I L Ashéninka Perené -prr I E Puri -prs I L Dari -prt I L Phai -pru I L Puragi -prw I L Parawen -prx I L Purik -prz I L Providencia Sign Language -psa I L Asue Awyu -psc I L Iranian Sign Language -psd I L Plains Indian Sign Language -pse I L Central Malay -psg I L Penang Sign Language -psh I L Southwest Pashai -psi I L Southeast Pashai -psl I L Puerto Rican Sign Language -psm I E Pauserna -psn I L Panasuan -pso I L Polish Sign Language -psp I L Philippine Sign Language -psq I L Pasi -psr I L Portuguese Sign Language -pss I L Kaulong -pst I L Central Pashto -psu I H Sauraseni Prākrit -psw I L Port Sandwich -psy I E Piscataway -pta I L Pai Tavytera -pth I E Pataxó Hã-Ha-Hãe -pti I L Pindiini -ptn I L Patani -pto I L Zo'é -ptp I L Patep -ptq I L Pattapu -ptr I L Piamatsina -ptt I L Enrekang -ptu I L Bambam -ptv I L Port Vato -ptw I E Pentlatch -pty I L Pathiya -pua I L Western Highland Purepecha -pub I L Purum -puc I L Punan Merap -pud I L Punan Aput -pue I E Puelche -puf I L Punan Merah -pug I L Phuie -pui I L Puinave -puj I L Punan Tubu -pum I L Puma -puo I L Puoc -pup I L Pulabu -puq I E Puquina -pur I L Puruborá -pus pus pus ps M L Pushto -put I L Putoh -puu I L Punu -puw I L Puluwatese -pux I L Puare -puy I E Purisimeño -pwa I L Pawaia -pwb I L Panawa -pwg I L Gapapaiwa -pwi I E Patwin -pwm I L Molbog -pwn I L Paiwan -pwo I L Pwo Western Karen -pwr I L Powari -pww I L Pwo Northern Karen -pxm I L Quetzaltepec Mixe -pye I L Pye Krumen -pym I L Fyam -pyn I L Poyanáwa -pys I L Paraguayan Sign Language -pyu I L Puyuma -pyx I H Pyu (Myanmar) -pyy I L Pyen -pze I L Pesse -pzh I L Pazeh -pzn I L Jejara Naga -qua I L Quapaw -qub I L Huallaga Huánuco Quechua -quc I L K'iche' -qud I L Calderón Highland Quichua -que que que qu M L Quechua -quf I L Lambayeque Quechua -qug I L Chimborazo Highland Quichua -quh I L South Bolivian Quechua -qui I L Quileute -quk I L Chachapoyas Quechua -qul I L North Bolivian Quechua -qum I L Sipacapense -qun I E Quinault -qup I L Southern Pastaza Quechua -quq I L Quinqui -qur I L Yanahuanca Pasco Quechua -qus I L Santiago del Estero Quichua -quv I L Sacapulteco -quw I L Tena Lowland Quichua -qux I L Yauyos Quechua -quy I L Ayacucho Quechua -quz I L Cusco Quechua -qva I L Ambo-Pasco Quechua -qvc I L Cajamarca Quechua -qve I L Eastern Apurímac Quechua -qvh I L Huamalíes-Dos de Mayo Huánuco Quechua -qvi I L Imbabura Highland Quichua -qvj I L Loja Highland Quichua -qvl I L Cajatambo North Lima Quechua -qvm I L Margos-Yarowilca-Lauricocha Quechua -qvn I L North Junín Quechua -qvo I L Napo Lowland Quechua -qvp I L Pacaraos Quechua -qvs I L San Martín Quechua -qvw I L Huaylla Wanca Quechua -qvy I L Queyu -qvz I L Northern Pastaza Quichua -qwa I L Corongo Ancash Quechua -qwc I H Classical Quechua -qwh I L Huaylas Ancash Quechua -qwm I E Kuman (Russia) -qws I L Sihuas Ancash Quechua -qwt I E Kwalhioqua-Tlatskanai -qxa I L Chiquián Ancash Quechua -qxc I L Chincha Quechua -qxh I L Panao Huánuco Quechua -qxl I L Salasaca Highland Quichua -qxn I L Northern Conchucos Ancash Quechua -qxo I L Southern Conchucos Ancash Quechua -qxp I L Puno Quechua -qxq I L Qashqa'i -qxr I L Cañar Highland Quichua -qxs I L Southern Qiang -qxt I L Santa Ana de Tusi Pasco Quechua -qxu I L Arequipa-La Unión Quechua -qxw I L Jauja Wanca Quechua -qya I C Quenya -qyp I E Quiripi -raa I L Dungmali -rab I L Camling -rac I L Rasawa -rad I L Rade -raf I L Western Meohang -rag I L Logooli -rah I L Rabha -rai I L Ramoaaina -raj raj raj M L Rajasthani -rak I L Tulu-Bohuai -ral I L Ralte -ram I L Canela -ran I L Riantana -rao I L Rao -rap rap rap I L Rapanui -raq I L Saam -rar rar rar I L Rarotongan -ras I L Tegali -rat I L Razajerdi -rau I L Raute -rav I L Sampang -raw I L Rawang -rax I L Rang -ray I L Rapa -raz I L Rahambuu -rbb I L Rumai Palaung -rbk I L Northern Bontok -rbl I L Miraya Bikol -rbp I E Barababaraba -rcf I L Réunion Creole French -rdb I L Rudbari -rea I L Rerau -reb I L Rembong -ree I L Rejang Kayan -reg I L Kara (Tanzania) -rei I L Reli -rej I L Rejang -rel I L Rendille -rem I E Remo -ren I L Rengao -rer I E Rer Bare -res I L Reshe -ret I L Retta -rey I L Reyesano -rga I L Roria -rge I L Romano-Greek -rgk I E Rangkas -rgn I L Romagnol -rgr I L Resígaro -rgs I L Southern Roglai -rgu I L Ringgou -rhg I L Rohingya -rhp I L Yahang -ria I L Riang (India) -rib I L Bribri Sign Language -rif I L Tarifit -ril I L Riang Lang -rim I L Nyaturu -rin I L Nungu -rir I L Ribun -rit I L Ritharrngu -riu I L Riung -rjg I L Rajong -rji I L Raji -rjs I L Rajbanshi -rka I L Kraol -rkb I L Rikbaktsa -rkh I L Rakahanga-Manihiki -rki I L Rakhine -rkm I L Marka -rkt I L Rangpuri -rkw I E Arakwal -rma I L Rama -rmb I L Rembarrnga -rmc I L Carpathian Romani -rmd I E Traveller Danish -rme I L Angloromani -rmf I L Kalo Finnish Romani -rmg I L Traveller Norwegian -rmh I L Murkim -rmi I L Lomavren -rmk I L Romkun -rml I L Baltic Romani -rmm I L Roma -rmn I L Balkan Romani -rmo I L Sinte Romani -rmp I L Rempi -rmq I L Caló -rms I L Romanian Sign Language -rmt I L Domari -rmu I L Tavringer Romani -rmv I C Romanova -rmw I L Welsh Romani -rmx I L Romam -rmy I L Vlax Romani -rmz I L Marma -rnb I L Brunca Sign Language -rnd I L Ruund -rng I L Ronga -rnl I L Ranglong -rnn I L Roon -rnp I L Rongpo -rnr I E Nari Nari -rnw I L Rungwa -rob I L Tae' -roc I L Cacgia Roglai -rod I L Rogo -roe I L Ronji -rof I L Rombo -rog I L Northern Roglai -roh roh roh rm I L Romansh -rol I L Romblomanon -rom rom rom M L Romany -ron rum ron ro I L Romanian -roo I L Rotokas -rop I L Kriol -ror I L Rongga -rou I L Runga -row I L Dela-Oenale -rpn I L Repanbitip -rpt I L Rapting -rri I L Ririo -rrm I E Moriori -rro I L Waima -rrt I E Arritinngithigh -rsb I L Romano-Serbian -rsk I L Ruthenian -rsl I L Russian Sign Language -rsm I L Miriwoong Sign Language -rsn I L Rwandan Sign Language -rsw I L Rishiwa -rtc I L Rungtu Chin -rth I L Ratahan -rtm I L Rotuman -rts I E Yurats -rtw I L Rathawi -rub I L Gungu -ruc I L Ruuli -rue I L Rusyn -ruf I L Luguru -rug I L Roviana -ruh I L Ruga -rui I L Rufiji -ruk I L Che -run run run rn I L Rundi -ruo I L Istro Romanian -rup rup rup I L Macedo-Romanian -ruq I L Megleno Romanian -rus rus rus ru I L Russian -rut I L Rutul -ruu I L Lanas Lobu -ruy I L Mala (Nigeria) -ruz I L Ruma -rwa I L Rawo -rwk I L Rwa -rwl I L Ruwila -rwm I L Amba (Uganda) -rwo I L Rawa -rwr I L Marwari (India) -rxd I L Ngardi -rxw I E Karuwali -ryn I L Northern Amami-Oshima -rys I L Yaeyama -ryu I L Central Okinawan -rzh I L Rāziḥī -saa I L Saba -sab I L Buglere -sac I L Meskwaki -sad sad sad I L Sandawe -sae I L Sabanê -saf I L Safaliba -sag sag sag sg I L Sango -sah sah sah I L Yakut -saj I L Sahu -sak I L Sake -sam sam sam I E Samaritan Aramaic -san san san sa M H Sanskrit -sao I L Sause -saq I L Samburu -sar I E Saraveca -sas sas sas I L Sasak -sat sat sat I L Santali -sau I L Saleman -sav I L Saafi-Saafi -saw I L Sawi -sax I L Sa -say I L Saya -saz I L Saurashtra -sba I L Ngambay -sbb I L Simbo -sbc I L Kele (Papua New Guinea) -sbd I L Southern Samo -sbe I L Saliba -sbf I L Chabu -sbg I L Seget -sbh I L Sori-Harengan -sbi I L Seti -sbj I L Surbakhal -sbk I L Safwa -sbl I L Botolan Sambal -sbm I L Sagala -sbn I L Sindhi Bhil -sbo I L Sabüm -sbp I L Sangu (Tanzania) -sbq I L Sileibi -sbr I L Sembakung Murut -sbs I L Subiya -sbt I L Kimki -sbu I L Stod Bhoti -sbv I H Sabine -sbw I L Simba -sbx I L Seberuang -sby I L Soli -sbz I L Sara Kaba -scb I L Chut -sce I L Dongxiang -scf I L San Miguel Creole French -scg I L Sanggau -sch I L Sakachep -sci I L Sri Lankan Creole Malay -sck I L Sadri -scl I L Shina -scn scn scn I L Sicilian -sco sco sco I L Scots -scp I L Hyolmo -scq I L Sa'och -scs I L North Slavey -sct I L Southern Katang -scu I L Shumcho -scv I L Sheni -scw I L Sha -scx I H Sicel -scz I L Shaetlan -sda I L Toraja-Sa'dan -sdb I L Shabak -sdc I L Sassarese Sardinian -sde I L Surubu -sdf I L Sarli -sdg I L Savi -sdh I L Southern Kurdish -sdj I L Suundi -sdk I L Sos Kundi -sdl I L Saudi Arabian Sign Language -sdn I L Gallurese Sardinian -sdo I L Bukar-Sadung Bidayuh -sdp I L Sherdukpen -sdq I L Semandang -sdr I L Oraon Sadri -sds I E Sened -sdt I E Shuadit -sdu I L Sarudu -sdx I L Sibu Melanau -sdz I L Sallands -sea I L Semai -seb I L Shempire Senoufo -sec I L Sechelt -sed I L Sedang -see I L Seneca -sef I L Cebaara Senoufo -seg I L Segeju -seh I L Sena -sei I L Seri -sej I L Sene -sek I L Sekani -sel sel sel I L Selkup -sen I L Nanerigé Sénoufo -seo I L Suarmin -sep I L Sìcìté Sénoufo -seq I L Senara Sénoufo -ser I L Serrano -ses I L Koyraboro Senni Songhai -set I L Sentani -seu I L Serui-Laut -sev I L Nyarafolo Senoufo -sew I L Sewa Bay -sey I L Secoya -sez I L Senthang Chin -sfb I L Langue des signes de Belgique Francophone -sfe I L Eastern Subanen -sfm I L Small Flowery Miao -sfs I L South African Sign Language -sfw I L Sehwi -sga sga sga I H Old Irish (to 900) -sgb I L Mag-antsi Ayta -sgc I L Kipsigis -sgd I L Surigaonon -sge I L Segai -sgg I L Swiss-German Sign Language -sgh I L Shughni -sgi I L Suga -sgj I L Surgujia -sgk I L Sangkong -sgm I E Singa -sgp I L Singpho -sgr I L Sangisari -sgs I L Samogitian -sgt I L Brokpake -sgu I L Salas -sgw I L Sebat Bet Gurage -sgx I L Sierra Leone Sign Language -sgy I L Sanglechi -sgz I L Sursurunga -sha I L Shall-Zwall -shb I L Ninam -shc I L Sonde -shd I L Kundal Shahi -she I L Sheko -shg I L Shua -shh I L Shoshoni -shi I L Tachelhit -shj I L Shatt -shk I L Shilluk -shl I L Shendu -shm I L Shahrudi -shn shn shn I L Shan -sho I L Shanga -shp I L Shipibo-Conibo -shq I L Sala -shr I L Shi -shs I L Shuswap -sht I E Shasta -shu I L Chadian Arabic -shv I L Shehri -shw I L Shwai -shx I L She -shy I L Tachawit -shz I L Syenara Senoufo -sia I E Akkala Sami -sib I L Sebop -sid sid sid I L Sidamo -sie I L Simaa -sif I L Siamou -sig I L Paasaal -sih I L Zire -sii I L Shom Peng -sij I L Numbami -sik I L Sikiana -sil I L Tumulung Sisaala -sim I L Mende (Papua New Guinea) -sin sin sin si I L Sinhala -sip I L Sikkimese -siq I L Sonia -sir I L Siri -sis I E Siuslaw -siu I L Sinagen -siv I L Sumariup -siw I L Siwai -six I L Sumau -siy I L Sivandi -siz I L Siwi -sja I L Epena -sjb I L Sajau Basap -sjc I L Shaojiang Chinese -sjd I L Kildin Sami -sje I L Pite Sami -sjg I L Assangori -sjk I E Kemi Sami -sjl I L Sajalong -sjm I L Mapun -sjn I C Sindarin -sjo I L Xibe -sjp I L Surjapuri -sjr I L Siar-Lak -sjs I E Senhaja De Srair -sjt I L Ter Sami -sju I L Ume Sami -sjw I L Shawnee -ska I L Skagit -skb I L Saek -skc I L Ma Manda -skd I L Southern Sierra Miwok -ske I L Seke (Vanuatu) -skf I L Sakirabiá -skg I L Sakalava Malagasy -skh I L Sikule -ski I L Sika -skj I L Seke (Nepal) -skm I L Kutong -skn I L Kolibugan Subanon -sko I L Seko Tengah -skp I L Sekapan -skq I L Sininkere -skr I L Saraiki -sks I L Maia -skt I L Sakata -sku I L Sakao -skv I L Skou -skw I E Skepi Creole Dutch -skx I L Seko Padang -sky I L Sikaiana -skz I L Sekar -slc I L Sáliba -sld I L Sissala -sle I L Sholaga -slf I L Swiss-Italian Sign Language -slg I L Selungai Murut -slh I L Southern Puget Sound Salish -sli I L Lower Silesian -slj I L Salumá -slk slo slk sk I L Slovak -sll I L Salt-Yui -slm I L Pangutaran Sama -sln I E Salinan -slp I L Lamaholot -slr I L Salar -sls I L Singapore Sign Language -slt I L Sila -slu I L Selaru -slv slv slv sl I L Slovenian -slw I L Sialum -slx I L Salampasu -sly I L Selayar -slz I L Ma'ya -sma sma sma I L Southern Sami -smb I L Simbari -smc I E Som -sme sme sme se I L Northern Sami -smf I L Auwe -smg I L Simbali -smh I L Samei -smj smj smj I L Lule Sami -smk I L Bolinao -sml I L Central Sama -smm I L Musasa -smn smn smn I L Inari Sami -smo smo smo sm I L Samoan -smp I E Samaritan -smq I L Samo -smr I L Simeulue -sms sms sms I L Skolt Sami -smt I L Simte -smu I E Somray -smv I L Samvedi -smw I L Sumbawa -smx I L Samba -smy I L Semnani -smz I L Simeku -sna sna sna sn I L Shona -snc I L Sinaugoro -snd snd snd sd I L Sindhi -sne I L Bau Bidayuh -snf I L Noon -sng I L Sanga (Democratic Republic of Congo) -sni I E Sensi -snj I L Riverain Sango -snk snk snk I L Soninke -snl I L Sangil -snm I L Southern Ma'di -snn I L Siona -sno I L Snohomish -snp I L Siane -snq I L Sangu (Gabon) -snr I L Sihan -sns I L South West Bay -snu I L Senggi -snv I L Sa'ban -snw I L Selee -snx I L Sam -sny I L Saniyo-Hiyewe -snz I L Kou -soa I L Thai Song -sob I L Sobei -soc I L So (Democratic Republic of Congo) -sod I L Songoora -soe I L Songomeno -sog sog sog I H Sogdian -soh I L Aka -soi I L Sonha -soj I L Soi -sok I L Sokoro -sol I L Solos -som som som so I L Somali -soo I L Songo -sop I L Songe -soq I L Kanasi -sor I L Somrai -sos I L Seeku -sot sot sot st I L Southern Sotho -sou I L Southern Thai -sov I L Sonsorol -sow I L Sowanda -sox I L Swo -soy I L Miyobe -soz I L Temi -spa spa spa es I L Spanish -spb I L Sepa (Indonesia) -spc I L Sapé -spd I L Saep -spe I L Sepa (Papua New Guinea) -spg I L Sian -spi I L Saponi -spk I L Sengo -spl I L Selepet -spm I L Akukem -spn I L Sanapaná -spo I L Spokane -spp I L Supyire Senoufo -spq I L Loreto-Ucayali Spanish -spr I L Saparua -sps I L Saposa -spt I L Spiti Bhoti -spu I L Sapuan -spv I L Sambalpuri -spx I H South Picene -spy I L Sabaot -sqa I L Shama-Sambuga -sqh I L Shau -sqi alb sqi sq M L Albanian -sqk I L Albanian Sign Language -sqm I L Suma -sqn I E Susquehannock -sqo I L Sorkhei -sqq I L Sou -sqr I H Siculo Arabic -sqs I L Sri Lankan Sign Language -sqt I L Soqotri -squ I L Squamish -sqx I L Kufr Qassem Sign Language (KQSL) -sra I L Saruga -srb I L Sora -src I L Logudorese Sardinian -srd srd srd sc M L Sardinian -sre I L Sara -srf I L Nafi -srg I L Sulod -srh I L Sarikoli -sri I L Siriano -srk I L Serudung Murut -srl I L Isirawa -srm I L Saramaccan -srn srn srn I L Sranan Tongo -sro I L Campidanese Sardinian -srp srp srp sr I L Serbian -srq I L Sirionó -srr srr srr I L Serer -srs I L Tsuut'ina -srt I L Sauri -sru I L Suruí -srv I L Southern Sorsoganon -srw I L Serua -srx I L Sirmauri -sry I L Sera -srz I L Shahmirzadi -ssb I L Southern Sama -ssc I L Suba-Simbiti -ssd I L Siroi -sse I L Balangingi -ssf I L Thao -ssg I L Seimat -ssh I L Shihhi Arabic -ssi I L Sansi -ssj I L Sausi -ssk I L Sunam -ssl I L Western Sisaala -ssm I L Semnam -ssn I L Waata -sso I L Sissano -ssp I L Spanish Sign Language -ssq I L So'a -ssr I L Swiss-French Sign Language -sss I L Sô -sst I L Sinasina -ssu I L Susuami -ssv I L Shark Bay -ssw ssw ssw ss I L Swati -ssx I L Samberigi -ssy I L Saho -ssz I L Sengseng -sta I L Settla -stb I L Northern Subanen -std I L Sentinel -ste I L Liana-Seti -stf I L Seta -stg I L Trieng -sth I L Shelta -sti I L Bulo Stieng -stj I L Matya Samo -stk I L Arammba -stl I L Stellingwerfs -stm I L Setaman -stn I L Owa -sto I L Stoney -stp I L Southeastern Tepehuan -stq I L Saterfriesisch -str I L Straits Salish -sts I L Shumashti -stt I L Budeh Stieng -stu I L Samtao -stv I L Silt'e -stw I L Satawalese -sty I L Siberian Tatar -sua I L Sulka -sub I L Suku -suc I L Western Subanon -sue I L Suena -sug I L Suganga -sui I L Suki -suj I L Shubi -suk suk suk I L Sukuma -sun sun sun su I L Sundanese -suo I L Bouni -suq I L Tirmaga-Chai Suri -sur I L Mwaghavul -sus sus sus I L Susu -sut I E Subtiaba -suv I L Puroik -suw I L Sumbwa -sux sux sux I H Sumerian -suy I L Suyá -suz I L Sunwar -sva I L Svan -svb I L Ulau-Suain -svc I L Vincentian Creole English -sve I L Serili -svk I L Slovakian Sign Language -svm I L Slavomolisano -svs I L Savosavo -svx I H Skalvian -swa swa swa sw M L Swahili (macrolanguage) -swb I L Maore Comorian -swc I L Congo Swahili -swe swe swe sv I L Swedish -swf I L Sere -swg I L Swabian -swh I L Swahili (individual language) -swi I L Sui -swj I L Sira -swk I L Malawi Sena -swl I L Swedish Sign Language -swm I L Samosa -swn I L Sawknah -swo I L Shanenawa -swp I L Suau -swq I L Sharwa -swr I L Saweru -sws I L Seluwasan -swt I L Sawila -swu I L Suwawa -swv I L Shekhawati -sww I E Sowa -swx I L Suruahá -swy I L Sarua -sxb I L Suba -sxc I H Sicanian -sxe I L Sighu -sxg I L Shuhi -sxk I E Southern Kalapuya -sxl I E Selian -sxm I L Samre -sxn I L Sangir -sxo I H Sorothaptic -sxr I L Saaroa -sxs I L Sasaru -sxu I L Upper Saxon -sxw I L Saxwe Gbe -sya I L Siang -syb I L Central Subanen -syc syc syc I H Classical Syriac -syi I L Seki -syk I L Sukur -syl I L Sylheti -sym I L Maya Samo -syn I L Senaya -syo I L Suoy -syr syr syr M L Syriac -sys I L Sinyar -syw I L Kagate -syx I L Samay -syy I L Al-Sayyid Bedouin Sign Language -sza I L Semelai -szb I L Ngalum -szc I L Semaq Beri -sze I L Seze -szg I L Sengele -szl I L Silesian -szn I L Sula -szp I L Suabo -szs I L Solomon Islands Sign Language -szv I L Isubu -szw I L Sawai -szy I L Sakizaya -taa I L Lower Tanana -tab I L Tabassaran -tac I L Lowland Tarahumara -tad I L Tause -tae I L Tariana -taf I L Tapirapé -tag I L Tagoi -tah tah tah ty I L Tahitian -taj I L Eastern Tamang -tak I L Tala -tal I L Tal -tam tam tam ta I L Tamil -tan I L Tangale -tao I L Yami -tap I L Taabwa -taq I L Tamasheq -tar I L Central Tarahumara -tas I E Tay Boi -tat tat tat tt I L Tatar -tau I L Upper Tanana -tav I L Tatuyo -taw I L Tai -tax I L Tamki -tay I L Atayal -taz I L Tocho -tba I L Aikanã -tbc I L Takia -tbd I L Kaki Ae -tbe I L Tanimbili -tbf I L Mandara -tbg I L North Tairora -tbh I E Dharawal -tbi I L Gaam -tbj I L Tiang -tbk I L Calamian Tagbanwa -tbl I L Tboli -tbm I L Tagbu -tbn I L Barro Negro Tunebo -tbo I L Tawala -tbp I L Taworta -tbr I L Tumtum -tbs I L Tanguat -tbt I L Tembo (Kitembo) -tbu I E Tubar -tbv I L Tobo -tbw I L Tagbanwa -tbx I L Kapin -tby I L Tabaru -tbz I L Ditammari -tca I L Ticuna -tcb I L Tanacross -tcc I L Datooga -tcd I L Tafi -tce I L Southern Tutchone -tcf I L Malinaltepec Me'phaa -tcg I L Tamagario -tch I L Turks And Caicos Creole English -tci I L Wára -tck I L Tchitchege -tcl I E Taman (Myanmar) -tcm I L Tanahmerah -tcn I L Tichurong -tco I L Taungyo -tcp I L Tawr Chin -tcq I L Kaiy -tcs I L Torres Strait Creole -tct I L T'en -tcu I L Southeastern Tarahumara -tcw I L Tecpatlán Totonac -tcx I L Toda -tcy I L Tulu -tcz I L Thado Chin -tda I L Tagdal -tdb I L Panchpargania -tdc I L Emberá-Tadó -tdd I L Tai Nüa -tde I L Tiranige Diga Dogon -tdf I L Talieng -tdg I L Western Tamang -tdh I L Thulung -tdi I L Tomadino -tdj I L Tajio -tdk I L Tambas -tdl I L Sur -tdm I L Taruma -tdn I L Tondano -tdo I L Teme -tdq I L Tita -tdr I L Todrah -tds I L Doutai -tdt I L Tetun Dili -tdv I L Toro -tdx I L Tandroy-Mahafaly Malagasy -tdy I L Tadyawan -tea I L Temiar -teb I E Tetete -tec I L Terik -ted I L Tepo Krumen -tee I L Huehuetla Tepehua -tef I L Teressa -teg I L Teke-Tege -teh I L Tehuelche -tei I L Torricelli -tek I L Ibali Teke -tel tel tel te I L Telugu -tem tem tem I L Timne -ten I E Tama (Colombia) -teo I L Teso -tep I E Tepecano -teq I L Temein -ter ter ter I L Tereno -tes I L Tengger -tet tet tet I L Tetum -teu I L Soo -tev I L Teor -tew I L Tewa (USA) -tex I L Tennet -tey I L Tulishi -tez I L Tetserret -tfi I L Tofin Gbe -tfn I L Tanaina -tfo I L Tefaro -tfr I L Teribe -tft I L Ternate -tga I L Sagalla -tgb I L Tobilung -tgc I L Tigak -tgd I L Ciwogai -tge I L Eastern Gorkha Tamang -tgf I L Chalikha -tgh I L Tobagonian Creole English -tgi I L Lawunuia -tgj I L Tagin -tgk tgk tgk tg I L Tajik -tgl tgl tgl tl I L Tagalog -tgn I L Tandaganon -tgo I L Sudest -tgp I L Tangoa -tgq I L Tring -tgr I L Tareng -tgs I L Nume -tgt I L Central Tagbanwa -tgu I L Tanggu -tgv I E Tingui-Boto -tgw I L Tagwana Senoufo -tgx I L Tagish -tgy I E Togoyo -tgz I E Tagalaka -tha tha tha th I L Thai -thd I L Kuuk Thaayorre -the I L Chitwania Tharu -thf I L Thangmi -thh I L Northern Tarahumara -thi I L Tai Long -thk I L Tharaka -thl I L Dangaura Tharu -thm I L Aheu -thn I L Thachanadan -thp I L Thompson -thq I L Kochila Tharu -thr I L Rana Tharu -ths I L Thakali -tht I L Tahltan -thu I L Thuri -thv I L Tahaggart Tamahaq -thy I L Tha -thz I L Tayart Tamajeq -tia I L Tidikelt Tamazight -tic I L Tira -tif I L Tifal -tig tig tig I L Tigre -tih I L Timugon Murut -tii I L Tiene -tij I L Tilung -tik I L Tikar -til I E Tillamook -tim I L Timbe -tin I L Tindi -tio I L Teop -tip I L Trimuris -tiq I L Tiéfo -tir tir tir ti I L Tigrinya -tis I L Masadiit Itneg -tit I L Tinigua -tiu I L Adasen -tiv tiv tiv I L Tiv -tiw I L Tiwi -tix I L Southern Tiwa -tiy I L Tiruray -tiz I L Tai Hongjin -tja I L Tajuasohn -tjg I L Tunjung -tji I L Northern Tujia -tjj I L Tjungundji -tjl I L Tai Laing -tjm I E Timucua -tjn I E Tonjon -tjo I L Temacine Tamazight -tjp I L Tjupany -tjs I L Southern Tujia -tju I E Tjurruru -tjw I L Djabwurrung -tka I E Truká -tkb I L Buksa -tkd I L Tukudede -tke I L Takwane -tkf I E Tukumanféd -tkg I L Tesaka Malagasy -tkl tkl tkl I L Tokelau -tkm I E Takelma -tkn I L Toku-No-Shima -tkp I L Tikopia -tkq I L Tee -tkr I L Tsakhur -tks I L Takestani -tkt I L Kathoriya Tharu -tku I L Upper Necaxa Totonac -tkv I L Mur Pano -tkw I L Teanu -tkx I L Tangko -tkz I L Takua -tla I L Southwestern Tepehuan -tlb I L Tobelo -tlc I L Yecuatla Totonac -tld I L Talaud -tlf I L Telefol -tlg I L Tofanma -tlh tlh tlh I C Klingon -tli tli tli I L Tlingit -tlj I L Talinga-Bwisi -tlk I L Taloki -tll I L Tetela -tlm I L Tolomako -tln I L Talondo' -tlo I L Talodi -tlp I L Filomena Mata-Coahuitlán Totonac -tlq I L Tai Loi -tlr I L Talise -tls I L Tambotalo -tlt I L Sou Nama -tlu I L Tulehu -tlv I L Taliabu -tlx I L Khehek -tly I L Talysh -tma I L Tama (Chad) -tmb I L Katbol -tmc I L Tumak -tmd I L Haruai -tme I E Tremembé -tmf I L Toba-Maskoy -tmg I E Ternateño -tmh tmh tmh M L Tamashek -tmi I L Tutuba -tmj I L Samarokena -tml I L Tamnim Citak -tmm I L Tai Thanh -tmn I L Taman (Indonesia) -tmo I L Temoq -tmq I L Tumleo -tmr I E Jewish Babylonian Aramaic (ca. 200-1200 CE) -tms I L Tima -tmt I L Tasmate -tmu I L Iau -tmv I L Tembo (Motembo) -tmw I L Temuan -tmy I L Tami -tmz I E Tamanaku -tna I L Tacana -tnb I L Western Tunebo -tnc I L Tanimuca-Retuarã -tnd I L Angosturas Tunebo -tng I L Tobanga -tnh I L Maiani -tni I L Tandia -tnk I L Kwamera -tnl I L Lenakel -tnm I L Tabla -tnn I L North Tanna -tno I L Toromono -tnp I L Whitesands -tnq I E Taino -tnr I L Ménik -tns I L Tenis -tnt I L Tontemboan -tnu I L Tay Khang -tnv I L Tangchangya -tnw I L Tonsawang -tnx I L Tanema -tny I L Tongwe -tnz I L Ten'edn -tob I L Toba -toc I L Coyutla Totonac -tod I L Toma -tof I L Gizrra -tog tog tog I L Tonga (Nyasa) -toh I L Gitonga -toi I L Tonga (Zambia) -toj I L Tojolabal -tok I C Toki Pona -tol I E Tolowa -tom I L Tombulu -ton ton ton to I L Tonga (Tonga Islands) -too I L Xicotepec De Juárez Totonac -top I L Papantla Totonac -toq I L Toposa -tor I L Togbo-Vara Banda -tos I L Highland Totonac -tou I L Tho -tov I L Upper Taromi -tow I L Jemez -tox I L Tobian -toy I L Topoiyo -toz I L To -tpa I L Taupota -tpc I L Azoyú Me'phaa -tpe I L Tippera -tpf I L Tarpia -tpg I L Kula -tpi tpi tpi I L Tok Pisin -tpj I L Tapieté -tpk I E Tupinikin -tpl I L Tlacoapa Me'phaa -tpm I L Tampulma -tpn I E Tupinambá -tpo I L Tai Pao -tpp I L Pisaflores Tepehua -tpq I L Tukpa -tpr I L Tuparí -tpt I L Tlachichilco Tepehua -tpu I L Tampuan -tpv I L Tanapag -tpx I L Acatepec Me'phaa -tpy I L Trumai -tpz I L Tinputz -tqb I L Tembé -tql I L Lehali -tqm I L Turumsa -tqn I L Tenino -tqo I L Toaripi -tqp I L Tomoip -tqq I L Tunni -tqr I E Torona -tqt I L Western Totonac -tqu I L Touo -tqw I E Tonkawa -tra I L Tirahi -trb I L Terebu -trc I L Copala Triqui -trd I L Turi -tre I L East Tarangan -trf I L Trinidadian Creole English -trg I L Lishán Didán -trh I L Turaka -tri I L Trió -trj I L Toram -trl I L Traveller Scottish -trm I L Tregami -trn I L Trinitario -tro I L Tarao Naga -trp I L Kok Borok -trq I L San Martín Itunyoso Triqui -trr I L Taushiro -trs I L Chicahuaxtla Triqui -trt I L Tunggare -tru I L Turoyo -trv I L Sediq -trw I L Torwali -trx I L Tringgus-Sembaan Bidayuh -try I E Turung -trz I E Torá -tsa I L Tsaangi -tsb I L Tsamai -tsc I L Tswa -tsd I L Tsakonian -tse I L Tunisian Sign Language -tsg I L Tausug -tsh I L Tsuvan -tsi tsi tsi I L Tsimshian -tsj I L Tshangla -tsk I L Tseku -tsl I L Ts'ün-Lao -tsm I L Turkish Sign Language -tsn tsn tsn tn I L Tswana -tso tso tso ts I L Tsonga -tsp I L Northern Toussian -tsq I L Thai Sign Language -tsr I L Akei -tss I L Taiwan Sign Language -tst I L Tondi Songway Kiini -tsu I L Tsou -tsv I L Tsogo -tsw I L Tsishingini -tsx I L Mubami -tsy I L Tebul Sign Language -tsz I L Purepecha -tta I E Tutelo -ttb I L Gaa -ttc I L Tektiteko -ttd I L Tauade -tte I L Bwanabwana -ttf I L Tuotomb -ttg I L Tutong -tth I L Upper Ta'oih -tti I L Tobati -ttj I L Tooro -ttk I L Totoro -ttl I L Totela -ttm I L Northern Tutchone -ttn I L Towei -tto I L Lower Ta'oih -ttp I L Tombelala -ttq I L Tawallammat Tamajaq -ttr I L Tera -tts I L Northeastern Thai -ttt I L Muslim Tat -ttu I L Torau -ttv I L Titan -ttw I L Long Wat -tty I L Sikaritai -ttz I L Tsum -tua I L Wiarumus -tub I E Tübatulabal -tuc I L Mutu -tud I E Tuxá -tue I L Tuyuca -tuf I L Central Tunebo -tug I L Tunia -tuh I L Taulil -tui I L Tupuri -tuj I L Tugutil -tuk tuk tuk tk I L Turkmen -tul I L Tula -tum tum tum I L Tumbuka -tun I L Tunica -tuo I L Tucano -tuq I L Tedaga -tur tur tur tr I L Turkish -tus I L Tuscarora -tuu I L Tututni -tuv I L Turkana -tux I E Tuxináwa -tuy I L Tugen -tuz I L Turka -tva I L Vaghua -tvd I L Tsuvadi -tve I L Te'un -tvg I E Tugunese -tvi I L Tulai -tvk I L Southeast Ambrym -tvl tvl tvl I L Tuvalu -tvm I L Tela-Masbuar -tvn I L Tavoyan -tvo I L Tidore -tvs I L Taveta -tvt I L Tutsa Naga -tvu I L Tunen -tvw I L Sedoa -tvx I E Taivoan -tvy I E Timor Pidgin -twa I E Twana -twb I L Western Tawbuid -twc I E Teshenawa -twd I L Twents -twe I L Tewa (Indonesia) -twf I L Northern Tiwa -twg I L Tereweng -twh I L Tai Dón -twi twi twi tw I L Twi -twl I L Tawara -twm I L Tawang Monpa -twn I L Twendi -two I L Tswapong -twp I L Ere -twq I L Tasawaq -twr I L Southwestern Tarahumara -twt I E Turiwára -twu I L Termanu -tww I L Tuwari -twx I L Tewe -twy I L Tawoyan -txa I L Tombonuo -txb I H Tokharian B -txc I E Tsetsaut -txe I L Totoli -txg I H Tangut -txh I H Thracian -txi I L Ikpeng -txj I L Tarjumo -txm I L Tomini -txn I L West Tarangan -txo I L Toto -txq I L Tii -txr I H Tartessian -txs I L Tonsea -txt I L Citak -txu I L Kayapó -txx I L Tatana -txy I L Tanosy Malagasy -tya I L Tauya -tye I L Kyanga -tyh I L O'du -tyi I L Teke-Tsaayi -tyj I L Tai Do -tyl I L Thu Lao -tyn I L Kombai -typ I E Thaypan -tyr I L Tai Daeng -tys I L Tày Sa Pa -tyt I L Tày Tac -tyu I L Kua -tyv tyv tyv I L Tuvinian -tyx I L Teke-Tyee -tyy I L Tiyaa -tyz I L Tày -tza I L Tanzanian Sign Language -tzh I L Tzeltal -tzj I L Tz'utujil -tzl I C Talossan -tzm I L Central Atlas Tamazight -tzn I L Tugun -tzo I L Tzotzil -tzx I L Tabriak -uam I E Uamué -uan I L Kuan -uar I L Tairuma -uba I L Ubang -ubi I L Ubi -ubl I L Buhi'non Bikol -ubr I L Ubir -ubu I L Umbu-Ungu -uby I E Ubykh -uda I L Uda -ude I L Udihe -udg I L Muduga -udi I L Udi -udj I L Ujir -udl I L Wuzlam -udm udm udm I L Udmurt -udu I L Uduk -ues I L Kioko -ufi I L Ufim -uga uga uga I H Ugaritic -ugb I E Kuku-Ugbanh -uge I L Ughele -ugh I L Kubachi -ugn I L Ugandan Sign Language -ugo I L Ugong -ugy I L Uruguayan Sign Language -uha I L Uhami -uhn I L Damal -uig uig uig ug I L Uighur -uis I L Uisai -uiv I L Iyive -uji I L Tanjijili -uka I L Kaburi -ukg I L Ukuriguma -ukh I L Ukhwejo -uki I L Kui (India) -ukk I L Muak Sa-aak -ukl I L Ukrainian Sign Language -ukp I L Ukpe-Bayobiri -ukq I L Ukwa -ukr ukr ukr uk I L Ukrainian -uks I L Urubú-Kaapor Sign Language -uku I L Ukue -ukv I L Kuku -ukw I L Ukwuani-Aboh-Ndoni -uky I E Kuuk-Yak -ula I L Fungwa -ulb I L Ulukwumi -ulc I L Ulch -ule I E Lule -ulf I L Usku -uli I L Ulithian -ulk I L Meriam Mir -ull I L Ullatan -ulm I L Ulumanda' -uln I L Unserdeutsch -ulu I L Uma' Lung -ulw I L Ulwa -uly I L Buli -uma I L Umatilla -umb umb umb I L Umbundu -umc I H Marrucinian -umd I E Umbindhamu -umg I E Morrobalama -umi I L Ukit -umm I L Umon -umn I L Makyan Naga -umo I E Umotína -ump I L Umpila -umr I E Umbugarla -ums I L Pendau -umu I L Munsee -una I L North Watut -und und und S S Undetermined -une I L Uneme -ung I L Ngarinyin -uni I L Uni -unk I L Enawené-Nawé -unm I E Unami -unn I L Kurnai -unr I L Mundari -unu I L Unubahe -unx I L Munda -unz I L Unde Kaili -uon I E Kulon -upi I L Umeda -upv I L Uripiv-Wala-Rano-Atchin -ura I L Urarina -urb I L Urubú-Kaapor -urc I E Urningangg -urd urd urd ur I L Urdu -ure I L Uru -urf I E Uradhi -urg I L Urigina -urh I L Urhobo -uri I L Urim -urk I L Urak Lawoi' -url I L Urali -urm I L Urapmin -urn I L Uruangnirin -uro I L Ura (Papua New Guinea) -urp I L Uru-Pa-In -urr I L Lehalurup -urt I L Urat -uru I E Urumi -urv I E Uruava -urw I L Sop -urx I L Urimo -ury I L Orya -urz I L Uru-Eu-Wau-Wau -usa I L Usarufa -ush I L Ushojo -usi I L Usui -usk I L Usaghade -usp I L Uspanteco -uss I L us-Saare -usu I L Uya -uta I L Otank -ute I L Ute-Southern Paiute -uth I L ut-Hun -utp I L Amba (Solomon Islands) -utr I L Etulo -utu I L Utu -uum I L Urum -uur I L Ura (Vanuatu) -uuu I L U -uve I L West Uvean -uvh I L Uri -uvl I L Lote -uwa I L Kuku-Uwanh -uya I L Doko-Uyanga -uzb uzb uzb uz M L Uzbek -uzn I L Northern Uzbek -uzs I L Southern Uzbek -vaa I L Vaagri Booli -vae I L Vale -vaf I L Vafsi -vag I L Vagla -vah I L Varhadi-Nagpuri -vai vai vai I L Vai -vaj I L Sekele -val I L Vehes -vam I L Vanimo -van I L Valman -vao I L Vao -vap I L Vaiphei -var I L Huarijio -vas I L Vasavi -vau I L Vanuma -vav I L Varli -vay I L Wayu -vbb I L Southeast Babar -vbk I L Southwestern Bontok -vec I L Venetian -ved I L Veddah -vel I L Veluws -vem I L Vemgo-Mabas -ven ven ven ve I L Venda -veo I E Ventureño -vep I L Veps -ver I L Mom Jango -vgr I L Vaghri -vgt I L Vlaamse Gebarentaal -vic I L Virgin Islands Creole English -vid I L Vidunda -vie vie vie vi I L Vietnamese -vif I L Vili -vig I L Viemo -vil I L Vilela -vin I L Vinza -vis I L Vishavan -vit I L Viti -viv I L Iduna -vjk I L Bajjika -vka I E Kariyarra -vkj I L Kujarge -vkk I L Kaur -vkl I L Kulisusu -vkm I E Kamakan -vkn I L Koro Nulu -vko I L Kodeoha -vkp I L Korlai Creole Portuguese -vkt I L Tenggarong Kutai Malay -vku I L Kurrama -vkz I L Koro Zuba -vlp I L Valpei -vls I L Vlaams -vma I E Martuyhunira -vmb I E Barbaram -vmc I L Juxtlahuaca Mixtec -vmd I L Mudu Koraga -vme I L East Masela -vmf I L Mainfränkisch -vmg I L Lungalunga -vmh I L Maraghei -vmi I E Miwa -vmj I L Ixtayutla Mixtec -vmk I L Makhuwa-Shirima -vml I E Malgana -vmm I L Mitlatongo Mixtec -vmp I L Soyaltepec Mazatec -vmq I L Soyaltepec Mixtec -vmr I L Marenje -vms I E Moksela -vmu I E Muluridyi -vmv I E Valley Maidu -vmw I L Makhuwa -vmx I L Tamazola Mixtec -vmy I L Ayautla Mazatec -vmz I L Mazatlán Mazatec -vnk I L Vano -vnm I L Vinmavis -vnp I L Vunapu -vol vol vol vo I C Volapük -vor I L Voro -vot vot vot I L Votic -vra I L Vera'a -vro I L Võro -vrs I L Varisi -vrt I L Burmbar -vsi I L Moldova Sign Language -vsl I L Venezuelan Sign Language -vsn I H Vedic Sanskrit -vsv I L Valencian Sign Language -vto I L Vitou -vum I L Vumbu -vun I L Vunjo -vut I L Vute -vwa I L Awa (China) -waa I L Walla Walla -wab I L Yote -wac I E Wasco-Wishram -wad I L Wamesa -wae I L Walser -waf I E Wakoná -wag I L Wa'ema -wah I L Watubela -wai I L Wares -waj I L Waffa -wal wal wal I L Wolaytta -wam I E Wampanoag -wan I L Wan -wao I E Wappo -wap I L Wapishana -waq I L Wagiman -war war war I L Waray (Philippines) -was was was I L Washo -wat I L Kaninuwa -wau I L Waurá -wav I L Waka -waw I L Waiwai -wax I L Watam -way I L Wayana -waz I L Wampur -wba I L Warao -wbb I L Wabo -wbe I L Waritai -wbf I L Wara -wbh I L Wanda -wbi I L Vwanji -wbj I L Alagwa -wbk I L Waigali -wbl I L Wakhi -wbm I L Wa -wbp I L Warlpiri -wbq I L Waddar -wbr I L Wagdi -wbs I L West Bengal Sign Language -wbt I L Warnman -wbv I L Wajarri -wbw I L Woi -wca I L Yanomámi -wci I L Waci Gbe -wdd I L Wandji -wdg I L Wadaginam -wdj I L Wadjiginy -wdk I E Wadikali -wdt I L Wendat -wdu I E Wadjigu -wdy I E Wadjabangayi -wea I E Wewaw -wec I L Wè Western -wed I L Wedau -weg I L Wergaia -weh I L Weh -wei I L Kiunum -wem I L Weme Gbe -weo I L Wemale -wep I L Westphalien -wer I L Weri -wes I L Cameroon Pidgin -wet I L Perai -weu I L Rawngtu Chin -wew I L Wejewa -wfg I L Yafi -wga I E Wagaya -wgb I L Wagawaga -wgg I E Wangkangurru -wgi I L Wahgi -wgo I L Waigeo -wgu I E Wirangu -wgy I L Warrgamay -wha I L Sou Upaa -whg I L North Wahgi -whk I L Wahau Kenyah -whu I L Wahau Kayan -wib I L Southern Toussian -wic I E Wichita -wie I E Wik-Epa -wif I E Wik-Keyangan -wig I L Wik Ngathan -wih I L Wik-Me'anha -wii I L Minidien -wij I L Wik-Iiyanh -wik I L Wikalkan -wil I E Wilawila -wim I L Wik-Mungkan -win I L Ho-Chunk -wir I E Wiraféd -wiu I L Wiru -wiv I L Vitu -wiy I E Wiyot -wja I L Waja -wji I L Warji -wka I E Kw'adza -wkb I L Kumbaran -wkd I L Wakde -wkl I L Kalanadi -wkr I L Keerray-Woorroong -wku I L Kunduvadi -wkw I E Wakawaka -wky I E Wangkayutyuru -wla I L Walio -wlc I L Mwali Comorian -wle I L Wolane -wlg I L Kunbarlang -wlh I L Welaun -wli I L Waioli -wlk I E Wailaki -wll I L Wali (Sudan) -wlm I H Middle Welsh -wln wln wln wa I L Walloon -wlo I L Wolio -wlr I L Wailapa -wls I L Wallisian -wlu I E Wuliwuli -wlv I L Wichí Lhamtés Vejoz -wlw I L Walak -wlx I L Wali (Ghana) -wly I E Waling -wma I E Mawa (Nigeria) -wmb I L Wambaya -wmc I L Wamas -wmd I L Mamaindé -wme I L Wambule -wmg I L Western Minyag -wmh I L Waima'a -wmi I E Wamin -wmm I L Maiwa (Indonesia) -wmn I E Waamwang -wmo I L Wom (Papua New Guinea) -wms I L Wambon -wmt I L Walmajarri -wmw I L Mwani -wmx I L Womo -wnb I L Mokati -wnc I L Wantoat -wnd I E Wandarang -wne I L Waneci -wng I L Wanggom -wni I L Ndzwani Comorian -wnk I L Wanukaka -wnm I E Wanggamala -wnn I E Wunumara -wno I L Wano -wnp I L Wanap -wnu I L Usan -wnw I L Wintu -wny I L Wanyi -woa I L Kuwema -wob I L Wè Northern -woc I L Wogeo -wod I L Wolani -woe I L Woleaian -wof I L Gambian Wolof -wog I L Wogamusin -woi I L Kamang -wok I L Longto -wol wol wol wo I L Wolof -wom I L Wom (Nigeria) -won I L Wongo -woo I L Manombai -wor I L Woria -wos I L Hanga Hundi -wow I L Wawonii -woy I E Weyto -wpc I L Maco -wrb I E Waluwarra -wrg I E Warungu -wrh I E Wiradjuri -wri I E Wariyangga -wrk I L Garrwa -wrl I L Warlmanpa -wrm I L Warumungu -wrn I L Warnang -wro I E Worrorra -wrp I L Waropen -wrr I L Wardaman -wrs I L Waris -wru I L Waru -wrv I L Waruna -wrw I E Gugu Warra -wrx I L Wae Rana -wry I L Merwari -wrz I E Waray (Australia) -wsa I L Warembori -wsg I L Adilabad Gondi -wsi I L Wusi -wsk I L Waskia -wsr I L Owenia -wss I L Wasa -wsu I E Wasu -wsv I E Wotapuri-Katarqalai -wtb I L Matambwe -wtf I L Watiwa -wth I E Wathawurrung -wti I L Berta -wtk I L Watakataui -wtm I L Mewati -wtw I L Wotu -wua I L Wikngenchera -wub I L Wunambal -wud I L Wudu -wuh I L Wutunhua -wul I L Silimo -wum I L Wumbvu -wun I L Bungu -wur I E Wurrugu -wut I L Wutung -wuu I L Wu Chinese -wuv I L Wuvulu-Aua -wux I L Wulna -wuy I L Wauyai -wwa I L Waama -wwb I E Wakabunga -wwo I L Wetamut -wwr I E Warrwa -www I L Wawa -wxa I L Waxianghua -wxw I E Wardandi -wyb I L Wangaaybuwan-Ngiyambaa -wyi I E Woiwurrung -wym I L Wymysorys -wyn I L Wyandot -wyr I L Wayoró -wyy I L Western Fijian -xaa I H Andalusian Arabic -xab I L Sambe -xac I L Kachari -xad I E Adai -xae I H Aequian -xag I H Aghwan -xai I E Kaimbé -xaj I E Ararandewára -xak I E Máku -xal xal xal I L Kalmyk -xam I E ǀXam -xan I L Xamtanga -xao I L Khao -xap I E Apalachee -xaq I H Aquitanian -xar I E Karami -xas I E Kamas -xat I L Katawixi -xau I L Kauwera -xav I L Xavánte -xaw I L Kawaiisu -xay I L Kayan Mahakam -xbb I E Lower Burdekin -xbc I H Bactrian -xbd I E Bindal -xbe I E Bigambal -xbg I E Bunganditj -xbi I L Kombio -xbj I E Birrpayi -xbm I H Middle Breton -xbn I E Kenaboi -xbo I H Bolgarian -xbp I E Bibbulman -xbr I L Kambera -xbw I E Kambiwá -xby I L Batjala -xcb I H Cumbric -xcc I H Camunic -xce I H Celtiberian -xcg I H Cisalpine Gaulish -xch I E Chemakum -xcl I H Classical Armenian -xcm I E Comecrudo -xcn I E Cotoname -xco I H Chorasmian -xcr I H Carian -xct I H Classical Tibetan -xcu I H Curonian -xcv I E Chuvantsy -xcw I E Coahuilteco -xcy I E Cayuse -xda I L Darkinyung -xdc I H Dacian -xdk I E Dharuk -xdm I H Edomite -xdo I L Kwandu -xdq I L Kaitag -xdy I L Malayic Dayak -xeb I H Eblan -xed I L Hdi -xeg I E ǁXegwi -xel I L Kelo -xem I L Kembayan -xep I H Epi-Olmec -xer I L Xerénte -xes I L Kesawai -xet I L Xetá -xeu I L Keoru-Ahia -xfa I H Faliscan -xga I H Galatian -xgb I E Gbin -xgd I E Gudang -xgf I E Gabrielino-Fernandeño -xgg I E Goreng -xgi I E Garingbal -xgl I H Galindan -xgm I E Dharumbal -xgr I E Garza -xgu I L Unggumi -xgw I E Guwa -xha I H Harami -xhc I H Hunnic -xhd I H Hadrami -xhe I L Khetrani -xhm I H Middle Khmer (1400 to 1850 CE) -xho xho xho xh I L Xhosa -xhr I H Hernican -xht I H Hattic -xhu I H Hurrian -xhv I L Khua -xib I H Iberian -xii I L Xiri -xil I H Illyrian -xin I E Xinca -xir I E Xiriâna -xis I L Kisan -xiv I H Indus Valley Language -xiy I L Xipaya -xjb I E Minjungbal -xjt I E Jaitmatang -xka I L Kalkoti -xkb I L Northern Nago -xkc I L Kho'ini -xkd I L Mendalam Kayan -xke I L Kereho -xkf I L Khengkha -xkg I L Kagoro -xki I L Kenyan Sign Language -xkj I L Kajali -xkk I L Kachok -xkl I L Mainstream Kenyah -xkn I L Kayan River Kayan -xko I L Kiorr -xkp I L Kabatei -xkq I L Koroni -xkr I E Xakriabá -xks I L Kumbewaha -xkt I L Kantosi -xku I L Kaamba -xkv I L Kgalagadi -xkw I L Kembra -xkx I L Karore -xky I L Uma' Lasan -xkz I L Kurtokha -xla I L Kamula -xlb I E Loup B -xlc I H Lycian -xld I H Lydian -xle I H Lemnian -xlg I H Ligurian (Ancient) -xli I H Liburnian -xln I H Alanic -xlo I E Loup A -xlp I H Lepontic -xls I H Lusitanian -xlu I H Cuneiform Luwian -xly I H Elymian -xma I L Mushungulu -xmb I L Mbonga -xmc I L Makhuwa-Marrevone -xmd I L Mbudum -xme I H Median -xmf I L Mingrelian -xmg I L Mengaka -xmh I L Kugu-Muminh -xmj I L Majera -xmk I H Ancient Macedonian -xml I L Malaysian Sign Language -xmm I L Manado Malay -xmn I H Manichaean Middle Persian -xmo I L Morerebi -xmp I E Kuku-Mu'inh -xmq I E Kuku-Mangk -xmr I H Meroitic -xms I L Moroccan Sign Language -xmt I L Matbat -xmu I E Kamu -xmv I L Antankarana Malagasy -xmw I L Tsimihety Malagasy -xmx I L Salawati -xmy I L Mayaguduna -xmz I L Mori Bawah -xna I H Ancient North Arabian -xnb I L Kanakanabu -xng I H Middle Mongolian -xnh I L Kuanhua -xni I E Ngarigu -xnj I L Ngoni (Tanzania) -xnk I E Nganakarti -xnm I E Ngumbarl -xnn I L Northern Kankanay -xno I H Anglo-Norman -xnq I L Ngoni (Mozambique) -xnr I L Kangri -xns I L Kanashi -xnt I E Narragansett -xnu I E Nukunul -xny I L Nyiyaparli -xnz I L Kenzi -xoc I E O'chi'chi' -xod I L Kokoda -xog I L Soga -xoi I L Kominimung -xok I L Xokleng -xom I L Komo (Sudan) -xon I L Konkomba -xoo I E Xukurú -xop I L Kopar -xor I L Korubo -xow I L Kowaki -xpa I E Pirriya -xpb I E Northeastern Tasmanian -xpc I H Pecheneg -xpd I E Oyster Bay Tasmanian -xpe I L Liberia Kpelle -xpf I E Southeast Tasmanian -xpg I H Phrygian -xph I E North Midlands Tasmanian -xpi I H Pictish -xpj I E Mpalitjanh -xpk I L Kulina Pano -xpl I E Port Sorell Tasmanian -xpm I E Pumpokol -xpn I E Kapinawá -xpo I E Pochutec -xpp I H Puyo-Paekche -xpq I E Mohegan-Pequot -xpr I H Parthian -xps I H Pisidian -xpt I E Punthamara -xpu I H Punic -xpv I E Northern Tasmanian -xpw I E Northwestern Tasmanian -xpx I E Southwestern Tasmanian -xpy I H Puyo -xpz I E Bruny Island Tasmanian -xqa I H Karakhanid -xqt I H Qatabanian -xra I L Krahô -xrb I L Eastern Karaboro -xrd I E Gundungurra -xre I L Kreye -xrg I E Minang -xri I L Krikati-Timbira -xrm I H Armazic -xrn I E Arin -xrr I H Raetic -xrt I E Aranama-Tamique -xru I L Marriammu -xrw I L Karawa -xsa I H Sabaean -xsb I L Sambal -xsc I H Scythian -xsd I H Sidetic -xse I L Sempan -xsh I L Shamang -xsi I L Sio -xsj I L Subi -xsl I L South Slavey -xsm I L Kasem -xsn I L Sanga (Nigeria) -xso I E Solano -xsp I L Silopi -xsq I L Makhuwa-Saka -xsr I L Sherpa -xsu I L Sanumá -xsv I E Sudovian -xsy I L Saisiyat -xta I L Alcozauca Mixtec -xtb I L Chazumba Mixtec -xtc I L Katcha-Kadugli-Miri -xtd I L Diuxi-Tilantongo Mixtec -xte I L Ketengban -xtg I H Transalpine Gaulish -xth I E Yitha Yitha -xti I L Sinicahua Mixtec -xtj I L San Juan Teita Mixtec -xtl I L Tijaltepec Mixtec -xtm I L Magdalena Peñasco Mixtec -xtn I L Northern Tlaxiaco Mixtec -xto I H Tokharian A -xtp I L San Miguel Piedras Mixtec -xtq I H Tumshuqese -xtr I H Early Tripuri -xts I L Sindihui Mixtec -xtt I L Tacahua Mixtec -xtu I L Cuyamecalco Mixtec -xtv I E Thawa -xtw I L Tawandê -xty I L Yoloxochitl Mixtec -xua I L Alu Kurumba -xub I L Betta Kurumba -xud I E Umiida -xug I L Kunigami -xuj I L Jennu Kurumba -xul I E Ngunawal -xum I H Umbrian -xun I E Unggaranggu -xuo I L Kuo -xup I E Upper Umpqua -xur I H Urartian -xut I E Kuthant -xuu I L Kxoe -xve I H Venetic -xvi I L Kamviri -xvn I H Vandalic -xvo I H Volscian -xvs I H Vestinian -xwa I L Kwaza -xwc I E Woccon -xwd I E Wadi Wadi -xwe I L Xwela Gbe -xwg I L Kwegu -xwj I E Wajuk -xwk I E Wangkumara -xwl I L Western Xwla Gbe -xwo I E Written Oirat -xwr I L Kwerba Mamberamo -xwt I E Wotjobaluk -xww I E Wemba Wemba -xxb I E Boro (Ghana) -xxk I L Ke'o -xxm I E Minkin -xxr I E Koropó -xxt I E Tambora -xya I E Yaygir -xyb I E Yandjibara -xyj I E Mayi-Yapi -xyk I E Mayi-Kulan -xyl I E Yalakalore -xyt I E Mayi-Thakurti -xyy I L Yorta Yorta -xzh I H Zhang-Zhung -xzm I E Zemgalian -xzp I H Ancient Zapotec -yaa I L Yaminahua -yab I L Yuhup -yac I L Pass Valley Yali -yad I L Yagua -yae I L Pumé -yaf I L Yaka (Democratic Republic of Congo) -yag I L Yámana -yah I L Yazgulyam -yai I L Yagnobi -yaj I L Banda-Yangere -yak I L Yakama -yal I L Yalunka -yam I L Yamba -yan I L Mayangna -yao yao yao I L Yao -yap yap yap I L Yapese -yaq I L Yaqui -yar I L Yabarana -yas I L Nugunu (Cameroon) -yat I L Yambeta -yau I L Yuwana -yav I L Yangben -yaw I L Yawalapití -yax I L Yauma -yay I L Agwagwune -yaz I L Lokaa -yba I L Yala -ybb I L Yemba -ybe I L West Yugur -ybh I L Yakha -ybi I L Yamphu -ybj I L Hasha -ybk I L Bokha -ybl I L Yukuben -ybm I L Yaben -ybn I E Yabaâna -ybo I L Yabong -ybx I L Yawiyo -yby I L Yaweyuha -ych I L Chesu -ycl I L Lolopo -ycn I L Yucuna -ycp I L Chepya -ycr I L Yilan Creole -yda I E Yanda -ydd I L Eastern Yiddish -yde I L Yangum Dey -ydg I L Yidgha -ydk I L Yoidik -yea I L Ravula -yec I L Yeniche -yee I L Yimas -yei I E Yeni -yej I L Yevanic -yel I L Yela -yer I L Tarok -yes I L Nyankpa -yet I L Yetfa -yeu I L Yerukula -yev I L Yapunda -yey I L Yeyi -yga I E Malyangapa -ygi I E Yiningayi -ygl I L Yangum Gel -ygm I L Yagomi -ygp I L Gepo -ygr I L Yagaria -ygs I L Yolŋu Sign Language -ygu I L Yugul -ygw I L Yagwoia -yha I L Baha Buyang -yhd I L Judeo-Iraqi Arabic -yhl I L Hlepho Phowa -yhs I L Yan-nhaŋu Sign Language -yia I L Yinggarda -yid yid yid yi M L Yiddish -yif I L Ache -yig I L Wusa Nasu -yih I E Western Yiddish -yii I L Yidiny -yij I L Yindjibarndi -yik I L Dongshanba Lalo -yil I E Yindjilandji -yim I L Yimchungru Naga -yin I L Riang Lai -yip I L Pholo -yiq I L Miqie -yir I L North Awyu -yis I L Yis -yit I L Eastern Lalu -yiu I L Awu -yiv I L Northern Nisu -yix I L Axi Yi -yiz I L Azhe -yka I L Yakan -ykg I L Northern Yukaghir -ykh I L Khamnigan Mongol -yki I L Yoke -ykk I L Yakaikeke -ykl I L Khlula -ykm I L Kap -ykn I L Kua-nsi -yko I L Iyasa -ykr I L Yekora -ykt I L Kathu -yku I L Kuamasi -yky I L Yakoma -yla I L Yaul -ylb I L Yaleba -yle I L Yele -ylg I L Yelogu -yli I L Angguruk Yali -yll I L Yil -ylm I L Limi -yln I L Langnian Buyang -ylo I L Naluo Yi -ylr I E Yalarnnga -ylu I L Aribwaung -yly I L Nyâlayu -ymb I L Yambes -ymc I L Southern Muji -ymd I L Muda -yme I E Yameo -ymg I L Yamongeri -ymh I L Mili -ymi I L Moji -ymk I L Makwe -yml I L Iamalele -ymm I L Maay -ymn I L Yamna -ymo I L Yangum Mon -ymp I L Yamap -ymq I L Qila Muji -ymr I L Malasar -yms I H Mysian -ymx I L Northern Muji -ymz I L Muzi -yna I L Aluo -ynb I L Yamben -ynd I E Yandruwandha -yne I L Lang'e -yng I L Yango -ynk I L Naukan Yupik -ynl I L Yangulam -ynn I E Yana -yno I L Yong -ynq I L Yendang -yns I L Yansi -ynu I E Yahuna -yob I E Yoba -yog I L Yogad -yoi I L Yonaguni -yok I L Yokuts -yom I L Yombe -yon I L Yongkom -yor yor yor yo I L Yoruba -yot I L Yotti -yox I L Yoron -yoy I L Yoy -ypa I L Phala -ypb I L Labo Phowa -ypg I L Phola -yph I L Phupha -ypm I L Phuma -ypn I L Ani Phowa -ypo I L Alo Phola -ypp I L Phupa -ypz I L Phuza -yra I L Yerakai -yrb I L Yareba -yre I L Yaouré -yrk I L Nenets -yrl I L Nhengatu -yrm I L Yirrk-Mel -yrn I L Yerong -yro I L Yaroamë -yrs I L Yarsun -yrw I L Yarawata -yry I L Yarluyandi -ysc I E Yassic -ysd I L Samatao -ysg I L Sonaga -ysl I L Yugoslavian Sign Language -ysm I L Myanmar Sign Language -ysn I L Sani -yso I L Nisi (China) -ysp I L Southern Lolopo -ysr I E Sirenik Yupik -yss I L Yessan-Mayo -ysy I L Sanie -yta I L Talu -ytl I L Tanglang -ytp I L Thopho -ytw I L Yout Wam -yty I E Yatay -yua I L Yucateco -yub I E Yugambal -yuc I L Yuchi -yud I L Judeo-Tripolitanian Arabic -yue I L Yue Chinese -yuf I L Havasupai-Walapai-Yavapai -yug I E Yug -yui I L Yurutí -yuj I L Karkar-Yuri -yuk I E Yuki -yul I L Yulu -yum I L Quechan -yun I L Bena (Nigeria) -yup I L Yukpa -yuq I L Yuqui -yur I E Yurok -yut I L Yopno -yuw I L Yau (Morobe Province) -yux I L Southern Yukaghir -yuy I L East Yugur -yuz I L Yuracare -yva I L Yawa -yvt I E Yavitero -ywa I L Kalou -ywg I L Yinhawangka -ywl I L Western Lalu -ywn I L Yawanawa -ywq I L Wuding-Luquan Yi -ywr I L Yawuru -ywt I L Xishanba Lalo -ywu I L Wumeng Nasu -yww I E Yawarawarga -yxa I E Mayawali -yxg I E Yagara -yxl I E Yardliyawarra -yxm I E Yinwum -yxu I E Yuyu -yxy I E Yabula Yabula -yyr I E Yir Yoront -yyu I L Yau (Sandaun Province) -yyz I L Ayizi -yzg I L E'ma Buyang -yzk I L Zokhuo -zaa I L Sierra de Juárez Zapotec -zab I L Western Tlacolula Valley Zapotec -zac I L Ocotlán Zapotec -zad I L Cajonos Zapotec -zae I L Yareni Zapotec -zaf I L Ayoquesco Zapotec -zag I L Zaghawa -zah I L Zangwal -zai I L Isthmus Zapotec -zaj I L Zaramo -zak I L Zanaki -zal I L Zauzou -zam I L Miahuatlán Zapotec -zao I L Ozolotepec Zapotec -zap zap zap M L Zapotec -zaq I L Aloápam Zapotec -zar I L Rincón Zapotec -zas I L Santo Domingo Albarradas Zapotec -zat I L Tabaa Zapotec -zau I L Zangskari -zav I L Yatzachi Zapotec -zaw I L Mitla Zapotec -zax I L Xadani Zapotec -zay I L Zayse-Zergulla -zaz I L Zari -zba I C Balaibalan -zbc I L Central Berawan -zbe I L East Berawan -zbl zbl zbl I C Blissymbols -zbt I L Batui -zbu I L Bu (Bauchi State) -zbw I L West Berawan -zca I L Coatecas Altas Zapotec -zcd I L Las Delicias Zapotec -zch I L Central Hongshuihe Zhuang -zdj I L Ngazidja Comorian -zea I L Zeeuws -zeg I L Zenag -zeh I L Eastern Hongshuihe Zhuang -zem I L Zeem -zen zen zen I L Zenaga -zga I L Kinga -zgb I L Guibei Zhuang -zgh zgh zgh I L Standard Moroccan Tamazight -zgm I L Minz Zhuang -zgn I L Guibian Zhuang -zgr I L Magori -zha zha zha za M L Zhuang -zhb I L Zhaba -zhd I L Dai Zhuang -zhi I L Zhire -zhk I L Kurdish Sign Language -zhn I L Nong Zhuang -zho chi zho zh M L Chinese -zhw I L Zhoa -zia I L Zia -zib I L Zimbabwe Sign Language -zik I L Zimakani -zil I L Zialo -zim I L Mesme -zin I L Zinza -ziw I L Zigula -ziz I L Zizilivakan -zka I L Kaimbulawa -zkd I L Kadu -zkg I H Koguryo -zkh I H Khorezmian -zkk I E Karankawa -zkn I L Kanan -zko I E Kott -zkp I E São Paulo Kaingáng -zkr I L Zakhring -zkt I H Kitan -zku I L Kaurna -zkv I E Krevinian -zkz I H Khazar -zla I L Zula -zlj I L Liujiang Zhuang -zlm I L Malay (individual language) -zln I L Lianshan Zhuang -zlq I L Liuqian Zhuang -zlu I L Zul -zma I L Manda (Australia) -zmb I L Zimba -zmc I E Margany -zmd I L Maridan -zme I E Mangerr -zmf I L Mfinu -zmg I L Marti Ke -zmh I E Makolkol -zmi I L Negeri Sembilan Malay -zmj I L Maridjabin -zmk I E Mandandanyi -zml I E Matngala -zmm I L Marimanindji -zmn I L Mbangwe -zmo I L Molo -zmp I L Mbuun -zmq I L Mituku -zmr I L Maranunggu -zms I L Mbesa -zmt I L Maringarr -zmu I E Muruwari -zmv I E Mbariman-Gudhinma -zmw I L Mbo (Democratic Republic of Congo) -zmx I L Bomitaba -zmy I L Mariyedi -zmz I L Mbandja -zna I L Zan Gula -zne I L Zande (individual language) -zng I L Mang -znk I E Manangkari -zns I L Mangas -zoc I L Copainalá Zoque -zoh I L Chimalapa Zoque -zom I L Zou -zoo I L Asunción Mixtepec Zapotec -zoq I L Tabasco Zoque -zor I L Rayón Zoque -zos I L Francisco León Zoque -zpa I L Lachiguiri Zapotec -zpb I L Yautepec Zapotec -zpc I L Choapan Zapotec -zpd I L Southeastern Ixtlán Zapotec -zpe I L Petapa Zapotec -zpf I L San Pedro Quiatoni Zapotec -zpg I L Guevea De Humboldt Zapotec -zph I L Totomachapan Zapotec -zpi I L Santa María Quiegolani Zapotec -zpj I L Quiavicuzas Zapotec -zpk I L Tlacolulita Zapotec -zpl I L Lachixío Zapotec -zpm I L Mixtepec Zapotec -zpn I L Santa Inés Yatzechi Zapotec -zpo I L Amatlán Zapotec -zpp I L El Alto Zapotec -zpq I L Zoogocho Zapotec -zpr I L Santiago Xanica Zapotec -zps I L Coatlán Zapotec -zpt I L San Vicente Coatlán Zapotec -zpu I L Yalálag Zapotec -zpv I L Chichicapan Zapotec -zpw I L Zaniza Zapotec -zpx I L San Baltazar Loxicha Zapotec -zpy I L Mazaltepec Zapotec -zpz I L Texmelucan Zapotec -zqe I L Qiubei Zhuang -zra I H Kara (Korea) -zrg I L Mirgan -zrn I L Zerenkel -zro I L Záparo -zrp I E Zarphatic -zrs I L Mairasi -zsa I L Sarasira -zsk I H Kaskean -zsl I L Zambian Sign Language -zsm I L Standard Malay -zsr I L Southern Rincon Zapotec -zsu I L Sukurum -zte I L Elotepec Zapotec -ztg I L Xanaguía Zapotec -ztl I L Lapaguía-Guivini Zapotec -ztm I L San Agustín Mixtepec Zapotec -ztn I L Santa Catarina Albarradas Zapotec -ztp I L Loxicha Zapotec -ztq I L Quioquitani-Quierí Zapotec -zts I L Tilquiapan Zapotec -ztt I L Tejalapan Zapotec -ztu I L Güilá Zapotec -ztx I L Zaachila Zapotec -zty I L Yatee Zapotec -zuh I L Tokano -zul zul zul zu I L Zulu -zum I L Kumzari -zun zun zun I L Zuni -zuy I L Zumaya -zwa I L Zay -zxx zxx zxx S S No linguistic content -zyb I L Yongbei Zhuang -zyg I L Yang Zhuang -zyj I L Youjiang Zhuang -zyn I L Yongnan Zhuang -zyp I L Zyphe Chin -zza zza zza M L Zaza -zzj I L Zuojiang Zhuang diff --git a/LanguageData/iso6393.json b/LanguageData/iso6393.json deleted file mode 100644 index 43e31be..0000000 --- a/LanguageData/iso6393.json +++ /dev/null @@ -1,48603 +0,0 @@ -{ - "RecordList": [ - { - "Id": "aaa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ghotuo" - }, - { - "Id": "aab", - "Scope": "I", - "LanguageType": "L", - "RefName": "Alumu-Tesu" - }, - { - "Id": "aac", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ari" - }, - { - "Id": "aad", - "Scope": "I", - "LanguageType": "L", - "RefName": "Amal" - }, - { - "Id": "aae", - "Scope": "I", - "LanguageType": "L", - "RefName": "Arb\u00EBresh\u00EB Albanian" - }, - { - "Id": "aaf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aranadan" - }, - { - "Id": "aag", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ambrak" - }, - { - "Id": "aah", - "Scope": "I", - "LanguageType": "L", - "RefName": "Abu\u0027 Arapesh" - }, - { - "Id": "aai", - "Scope": "I", - "LanguageType": "L", - "RefName": "Arifama-Miniafia" - }, - { - "Id": "aak", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ankave" - }, - { - "Id": "aal", - "Scope": "I", - "LanguageType": "L", - "RefName": "Afade" - }, - { - "Id": "aan", - "Scope": "I", - "LanguageType": "L", - "RefName": "Anamb\u00E9" - }, - { - "Id": "aao", - "Scope": "I", - "LanguageType": "L", - "RefName": "Algerian Saharan Arabic" - }, - { - "Id": "aap", - "Scope": "I", - "LanguageType": "L", - "RefName": "Par\u00E1 Ar\u00E1ra" - }, - { - "Id": "aaq", - "Scope": "I", - "LanguageType": "E", - "RefName": "Eastern Abnaki" - }, - { - "Id": "aar", - "Part2B": "aar", - "Part2T": "aar", - "Part1": "aa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Afar" - }, - { - "Id": "aas", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aas\u00E1x" - }, - { - "Id": "aat", - "Scope": "I", - "LanguageType": "L", - "RefName": "Arvanitika Albanian" - }, - { - "Id": "aau", - "Scope": "I", - "LanguageType": "L", - "RefName": "Abau" - }, - { - "Id": "aaw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Solong" - }, - { - "Id": "aax", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mandobo Atas" - }, - { - "Id": "aaz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Amarasi" - }, - { - "Id": "aba", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ab\u00E9" - }, - { - "Id": "abb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bankon" - }, - { - "Id": "abc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ambala Ayta" - }, - { - "Id": "abd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Manide" - }, - { - "Id": "abe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Abnaki" - }, - { - "Id": "abf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Abai Sungai" - }, - { - "Id": "abg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Abaga" - }, - { - "Id": "abh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tajiki Arabic" - }, - { - "Id": "abi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Abidji" - }, - { - "Id": "abj", - "Scope": "I", - "LanguageType": "E", - "RefName": "Aka-Bea" - }, - { - "Id": "abk", - "Part2B": "abk", - "Part2T": "abk", - "Part1": "ab", - "Scope": "I", - "LanguageType": "L", - "RefName": "Abkhazian" - }, - { - "Id": "abl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lampung Nyo" - }, - { - "Id": "abm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Abanyom" - }, - { - "Id": "abn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Abua" - }, - { - "Id": "abo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Abon" - }, - { - "Id": "abp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Abellen Ayta" - }, - { - "Id": "abq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Abaza" - }, - { - "Id": "abr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Abron" - }, - { - "Id": "abs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ambonese Malay" - }, - { - "Id": "abt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ambulas" - }, - { - "Id": "abu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Abure" - }, - { - "Id": "abv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Baharna Arabic" - }, - { - "Id": "abw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pal" - }, - { - "Id": "abx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Inabaknon" - }, - { - "Id": "aby", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aneme Wake" - }, - { - "Id": "abz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Abui" - }, - { - "Id": "aca", - "Scope": "I", - "LanguageType": "L", - "RefName": "Achagua" - }, - { - "Id": "acb", - "Scope": "I", - "LanguageType": "L", - "RefName": "\u00C1nc\u00E1" - }, - { - "Id": "acd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gikyode" - }, - { - "Id": "ace", - "Part2B": "ace", - "Part2T": "ace", - "Scope": "I", - "LanguageType": "L", - "RefName": "Achinese" - }, - { - "Id": "acf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Saint Lucian Creole French" - }, - { - "Id": "ach", - "Part2B": "ach", - "Part2T": "ach", - "Scope": "I", - "LanguageType": "L", - "RefName": "Acoli" - }, - { - "Id": "aci", - "Scope": "I", - "LanguageType": "E", - "RefName": "Aka-Cari" - }, - { - "Id": "ack", - "Scope": "I", - "LanguageType": "E", - "RefName": "Aka-Kora" - }, - { - "Id": "acl", - "Scope": "I", - "LanguageType": "E", - "RefName": "Akar-Bale" - }, - { - "Id": "acm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mesopotamian Arabic" - }, - { - "Id": "acn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Achang" - }, - { - "Id": "acp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Acipa" - }, - { - "Id": "acq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ta\u0027izzi-Adeni Arabic" - }, - { - "Id": "acr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Achi" - }, - { - "Id": "acs", - "Scope": "I", - "LanguageType": "E", - "RefName": "Acro\u00E1" - }, - { - "Id": "act", - "Scope": "I", - "LanguageType": "L", - "RefName": "Achterhoeks" - }, - { - "Id": "acu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Achuar-Shiwiar" - }, - { - "Id": "acv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Achumawi" - }, - { - "Id": "acw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hijazi Arabic" - }, - { - "Id": "acx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Omani Arabic" - }, - { - "Id": "acy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cypriot Arabic" - }, - { - "Id": "acz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Acheron" - }, - { - "Id": "ada", - "Part2B": "ada", - "Part2T": "ada", - "Scope": "I", - "LanguageType": "L", - "RefName": "Adangme" - }, - { - "Id": "adb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Atauran" - }, - { - "Id": "add", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lidzonka" - }, - { - "Id": "ade", - "Scope": "I", - "LanguageType": "L", - "RefName": "Adele" - }, - { - "Id": "adf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dhofari Arabic" - }, - { - "Id": "adg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Andegerebinha" - }, - { - "Id": "adh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Adhola" - }, - { - "Id": "adi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Adi" - }, - { - "Id": "adj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Adioukrou" - }, - { - "Id": "adl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Galo" - }, - { - "Id": "adn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Adang" - }, - { - "Id": "ado", - "Scope": "I", - "LanguageType": "L", - "RefName": "Abu" - }, - { - "Id": "adq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Adangbe" - }, - { - "Id": "adr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Adonara" - }, - { - "Id": "ads", - "Scope": "I", - "LanguageType": "L", - "RefName": "Adamorobe Sign Language" - }, - { - "Id": "adt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Adnyamathanha" - }, - { - "Id": "adu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aduge" - }, - { - "Id": "adw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Amundava" - }, - { - "Id": "adx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Amdo Tibetan" - }, - { - "Id": "ady", - "Part2B": "ady", - "Part2T": "ady", - "Scope": "I", - "LanguageType": "L", - "RefName": "Adyghe" - }, - { - "Id": "adz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Adzera" - }, - { - "Id": "aea", - "Scope": "I", - "LanguageType": "E", - "RefName": "Areba" - }, - { - "Id": "aeb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tunisian Arabic" - }, - { - "Id": "aec", - "Scope": "I", - "LanguageType": "L", - "RefName": "Saidi Arabic" - }, - { - "Id": "aed", - "Scope": "I", - "LanguageType": "L", - "RefName": "Argentine Sign Language" - }, - { - "Id": "aee", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northeast Pashai" - }, - { - "Id": "aek", - "Scope": "I", - "LanguageType": "L", - "RefName": "Haeke" - }, - { - "Id": "ael", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ambele" - }, - { - "Id": "aem", - "Scope": "I", - "LanguageType": "L", - "RefName": "Arem" - }, - { - "Id": "aen", - "Scope": "I", - "LanguageType": "L", - "RefName": "Armenian Sign Language" - }, - { - "Id": "aeq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aer" - }, - { - "Id": "aer", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Arrernte" - }, - { - "Id": "aes", - "Scope": "I", - "LanguageType": "E", - "RefName": "Alsea" - }, - { - "Id": "aeu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Akeu" - }, - { - "Id": "aew", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ambakich" - }, - { - "Id": "aey", - "Scope": "I", - "LanguageType": "L", - "RefName": "Amele" - }, - { - "Id": "aez", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aeka" - }, - { - "Id": "afb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gulf Arabic" - }, - { - "Id": "afd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Andai" - }, - { - "Id": "afe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Putukwam" - }, - { - "Id": "afg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Afghan Sign Language" - }, - { - "Id": "afh", - "Part2B": "afh", - "Part2T": "afh", - "Scope": "I", - "LanguageType": "C", - "RefName": "Afrihili" - }, - { - "Id": "afi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Akrukay" - }, - { - "Id": "afk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nanubae" - }, - { - "Id": "afn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Defaka" - }, - { - "Id": "afo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eloyi" - }, - { - "Id": "afp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tapei" - }, - { - "Id": "afr", - "Part2B": "afr", - "Part2T": "afr", - "Part1": "af", - "Scope": "I", - "LanguageType": "L", - "RefName": "Afrikaans" - }, - { - "Id": "afs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Afro-Seminole Creole" - }, - { - "Id": "aft", - "Scope": "I", - "LanguageType": "L", - "RefName": "Afitti" - }, - { - "Id": "afu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Awutu" - }, - { - "Id": "afz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Obokuitai" - }, - { - "Id": "aga", - "Scope": "I", - "LanguageType": "E", - "RefName": "Aguano" - }, - { - "Id": "agb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Legbo" - }, - { - "Id": "agc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Agatu" - }, - { - "Id": "agd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Agarabi" - }, - { - "Id": "age", - "Scope": "I", - "LanguageType": "L", - "RefName": "Angal" - }, - { - "Id": "agf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Arguni" - }, - { - "Id": "agg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Angor" - }, - { - "Id": "agh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngelima" - }, - { - "Id": "agi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Agariya" - }, - { - "Id": "agj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Argobba" - }, - { - "Id": "agk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Isarog Agta" - }, - { - "Id": "agl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Fembe" - }, - { - "Id": "agm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Angaataha" - }, - { - "Id": "agn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Agutaynen" - }, - { - "Id": "ago", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tainae" - }, - { - "Id": "agq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aghem" - }, - { - "Id": "agr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aguaruna" - }, - { - "Id": "ags", - "Scope": "I", - "LanguageType": "L", - "RefName": "Esimbi" - }, - { - "Id": "agt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Central Cagayan Agta" - }, - { - "Id": "agu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aguacateco" - }, - { - "Id": "agv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Remontado Dumagat" - }, - { - "Id": "agw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kahua" - }, - { - "Id": "agx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aghul" - }, - { - "Id": "agy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Alta" - }, - { - "Id": "agz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mt. Iriga Agta" - }, - { - "Id": "aha", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ahanta" - }, - { - "Id": "ahb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Axamb" - }, - { - "Id": "ahg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Qimant" - }, - { - "Id": "ahh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aghu" - }, - { - "Id": "ahi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tiagbamrin Aizi" - }, - { - "Id": "ahk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Akha" - }, - { - "Id": "ahl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Igo" - }, - { - "Id": "ahm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mobumrin Aizi" - }, - { - "Id": "ahn", - "Scope": "I", - "LanguageType": "L", - "RefName": "\u00C0h\u00E0n" - }, - { - "Id": "aho", - "Scope": "I", - "LanguageType": "E", - "RefName": "Ahom" - }, - { - "Id": "ahp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aproumu Aizi" - }, - { - "Id": "ahr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ahirani" - }, - { - "Id": "ahs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ashe" - }, - { - "Id": "aht", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ahtena" - }, - { - "Id": "aia", - "Scope": "I", - "LanguageType": "L", - "RefName": "Arosi" - }, - { - "Id": "aib", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ainu (China)" - }, - { - "Id": "aic", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ainbai" - }, - { - "Id": "aid", - "Scope": "I", - "LanguageType": "E", - "RefName": "Alngith" - }, - { - "Id": "aie", - "Scope": "I", - "LanguageType": "L", - "RefName": "Amara" - }, - { - "Id": "aif", - "Scope": "I", - "LanguageType": "L", - "RefName": "Agi" - }, - { - "Id": "aig", - "Scope": "I", - "LanguageType": "L", - "RefName": "Antigua and Barbuda Creole English" - }, - { - "Id": "aih", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ai-Cham" - }, - { - "Id": "aii", - "Scope": "I", - "LanguageType": "L", - "RefName": "Assyrian Neo-Aramaic" - }, - { - "Id": "aij", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lishanid Noshan" - }, - { - "Id": "aik", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ake" - }, - { - "Id": "ail", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aimele" - }, - { - "Id": "aim", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aimol" - }, - { - "Id": "ain", - "Part2B": "ain", - "Part2T": "ain", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ainu (Japan)" - }, - { - "Id": "aio", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aiton" - }, - { - "Id": "aip", - "Scope": "I", - "LanguageType": "L", - "RefName": "Burumakok" - }, - { - "Id": "aiq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aimaq" - }, - { - "Id": "air", - "Scope": "I", - "LanguageType": "L", - "RefName": "Airoran" - }, - { - "Id": "ait", - "Scope": "I", - "LanguageType": "E", - "RefName": "Arikem" - }, - { - "Id": "aiw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aari" - }, - { - "Id": "aix", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aighon" - }, - { - "Id": "aiy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ali" - }, - { - "Id": "aja", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aja (South Sudan)" - }, - { - "Id": "ajg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aja (Benin)" - }, - { - "Id": "aji", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aji\u00EB" - }, - { - "Id": "ajn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Andajin" - }, - { - "Id": "ajs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Algerian Jewish Sign Language" - }, - { - "Id": "aju", - "Scope": "I", - "LanguageType": "L", - "RefName": "Judeo-Moroccan Arabic" - }, - { - "Id": "ajw", - "Scope": "I", - "LanguageType": "E", - "RefName": "Ajawa" - }, - { - "Id": "ajz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Amri Karbi" - }, - { - "Id": "aka", - "Part2B": "aka", - "Part2T": "aka", - "Part1": "ak", - "Scope": "M", - "LanguageType": "L", - "RefName": "Akan" - }, - { - "Id": "akb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Batak Angkola" - }, - { - "Id": "akc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mpur" - }, - { - "Id": "akd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ukpet-Ehom" - }, - { - "Id": "ake", - "Scope": "I", - "LanguageType": "L", - "RefName": "Akawaio" - }, - { - "Id": "akf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Akpa" - }, - { - "Id": "akg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Anakalangu" - }, - { - "Id": "akh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Angal Heneng" - }, - { - "Id": "aki", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aiome" - }, - { - "Id": "akj", - "Scope": "I", - "LanguageType": "E", - "RefName": "Aka-Jeru" - }, - { - "Id": "akk", - "Part2B": "akk", - "Part2T": "akk", - "Scope": "I", - "LanguageType": "H", - "RefName": "Akkadian" - }, - { - "Id": "akl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aklanon" - }, - { - "Id": "akm", - "Scope": "I", - "LanguageType": "E", - "RefName": "Aka-Bo" - }, - { - "Id": "ako", - "Scope": "I", - "LanguageType": "L", - "RefName": "Akurio" - }, - { - "Id": "akp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Siwu" - }, - { - "Id": "akq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ak" - }, - { - "Id": "akr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Araki" - }, - { - "Id": "aks", - "Scope": "I", - "LanguageType": "L", - "RefName": "Akaselem" - }, - { - "Id": "akt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Akolet" - }, - { - "Id": "aku", - "Scope": "I", - "LanguageType": "L", - "RefName": "Akum" - }, - { - "Id": "akv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Akhvakh" - }, - { - "Id": "akw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Akwa" - }, - { - "Id": "akx", - "Scope": "I", - "LanguageType": "E", - "RefName": "Aka-Kede" - }, - { - "Id": "aky", - "Scope": "I", - "LanguageType": "E", - "RefName": "Aka-Kol" - }, - { - "Id": "akz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Alabama" - }, - { - "Id": "ala", - "Scope": "I", - "LanguageType": "L", - "RefName": "Alago" - }, - { - "Id": "alc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Qawasqar" - }, - { - "Id": "ald", - "Scope": "I", - "LanguageType": "L", - "RefName": "Alladian" - }, - { - "Id": "ale", - "Part2B": "ale", - "Part2T": "ale", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aleut" - }, - { - "Id": "alf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Alege" - }, - { - "Id": "alh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Alawa" - }, - { - "Id": "ali", - "Scope": "I", - "LanguageType": "L", - "RefName": "Amaimon" - }, - { - "Id": "alj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Alangan" - }, - { - "Id": "alk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Alak" - }, - { - "Id": "all", - "Scope": "I", - "LanguageType": "L", - "RefName": "Allar" - }, - { - "Id": "alm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Amblong" - }, - { - "Id": "aln", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gheg Albanian" - }, - { - "Id": "alo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Larike-Wakasihu" - }, - { - "Id": "alp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Alune" - }, - { - "Id": "alq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Algonquin" - }, - { - "Id": "alr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Alutor" - }, - { - "Id": "als", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tosk Albanian" - }, - { - "Id": "alt", - "Part2B": "alt", - "Part2T": "alt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Altai" - }, - { - "Id": "alu", - "Scope": "I", - "LanguageType": "L", - "RefName": "\u0027Are\u0027are" - }, - { - "Id": "alw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Alaba-K\u2019abeena" - }, - { - "Id": "alx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Amol" - }, - { - "Id": "aly", - "Scope": "I", - "LanguageType": "L", - "RefName": "Alyawarr" - }, - { - "Id": "alz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Alur" - }, - { - "Id": "ama", - "Scope": "I", - "LanguageType": "E", - "RefName": "Amanay\u00E9" - }, - { - "Id": "amb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ambo" - }, - { - "Id": "amc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Amahuaca" - }, - { - "Id": "ame", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yanesha\u0027" - }, - { - "Id": "amf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hamer-Banna" - }, - { - "Id": "amg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Amurdak" - }, - { - "Id": "amh", - "Part2B": "amh", - "Part2T": "amh", - "Part1": "am", - "Scope": "I", - "LanguageType": "L", - "RefName": "Amharic" - }, - { - "Id": "ami", - "Scope": "I", - "LanguageType": "L", - "RefName": "Amis" - }, - { - "Id": "amj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Amdang" - }, - { - "Id": "amk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ambai" - }, - { - "Id": "aml", - "Scope": "I", - "LanguageType": "L", - "RefName": "War-Jaintia" - }, - { - "Id": "amm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ama (Papua New Guinea)" - }, - { - "Id": "amn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Amanab" - }, - { - "Id": "amo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Amo" - }, - { - "Id": "amp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Alamblak" - }, - { - "Id": "amq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Amahai" - }, - { - "Id": "amr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Amarakaeri" - }, - { - "Id": "ams", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Amami-Oshima" - }, - { - "Id": "amt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Amto" - }, - { - "Id": "amu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Guerrero Amuzgo" - }, - { - "Id": "amv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ambelau" - }, - { - "Id": "amw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Neo-Aramaic" - }, - { - "Id": "amx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Anmatyerre" - }, - { - "Id": "amy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ami" - }, - { - "Id": "amz", - "Scope": "I", - "LanguageType": "E", - "RefName": "Atampaya" - }, - { - "Id": "ana", - "Scope": "I", - "LanguageType": "E", - "RefName": "Andaqui" - }, - { - "Id": "anb", - "Scope": "I", - "LanguageType": "E", - "RefName": "Andoa" - }, - { - "Id": "anc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngas" - }, - { - "Id": "and", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ansus" - }, - { - "Id": "ane", - "Scope": "I", - "LanguageType": "L", - "RefName": "X\u00E2r\u00E2c\u00F9\u00F9" - }, - { - "Id": "anf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Animere" - }, - { - "Id": "ang", - "Part2B": "ang", - "Part2T": "ang", - "Scope": "I", - "LanguageType": "H", - "RefName": "Old English (ca. 450-1100)" - }, - { - "Id": "anh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nend" - }, - { - "Id": "ani", - "Scope": "I", - "LanguageType": "L", - "RefName": "Andi" - }, - { - "Id": "anj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Anor" - }, - { - "Id": "ank", - "Scope": "I", - "LanguageType": "L", - "RefName": "Goemai" - }, - { - "Id": "anl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Anu-Hkongso Chin" - }, - { - "Id": "anm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Anal" - }, - { - "Id": "ann", - "Scope": "I", - "LanguageType": "L", - "RefName": "Obolo" - }, - { - "Id": "ano", - "Scope": "I", - "LanguageType": "L", - "RefName": "Andoque" - }, - { - "Id": "anp", - "Part2B": "anp", - "Part2T": "anp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Angika" - }, - { - "Id": "anq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jarawa (India)" - }, - { - "Id": "anr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Andh" - }, - { - "Id": "ans", - "Scope": "I", - "LanguageType": "E", - "RefName": "Anserma" - }, - { - "Id": "ant", - "Scope": "I", - "LanguageType": "L", - "RefName": "Antakarinya" - }, - { - "Id": "anu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Anuak" - }, - { - "Id": "anv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Denya" - }, - { - "Id": "anw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Anaang" - }, - { - "Id": "anx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Andra-Hus" - }, - { - "Id": "any", - "Scope": "I", - "LanguageType": "L", - "RefName": "Anyin" - }, - { - "Id": "anz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Anem" - }, - { - "Id": "aoa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Angolar" - }, - { - "Id": "aob", - "Scope": "I", - "LanguageType": "L", - "RefName": "Abom" - }, - { - "Id": "aoc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pemon" - }, - { - "Id": "aod", - "Scope": "I", - "LanguageType": "L", - "RefName": "Andarum" - }, - { - "Id": "aoe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Angal Enen" - }, - { - "Id": "aof", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bragat" - }, - { - "Id": "aog", - "Scope": "I", - "LanguageType": "L", - "RefName": "Angoram" - }, - { - "Id": "aoi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Anindilyakwa" - }, - { - "Id": "aoj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mufian" - }, - { - "Id": "aok", - "Scope": "I", - "LanguageType": "L", - "RefName": "Arh\u00F6" - }, - { - "Id": "aol", - "Scope": "I", - "LanguageType": "L", - "RefName": "Alor" - }, - { - "Id": "aom", - "Scope": "I", - "LanguageType": "L", - "RefName": "\u00D6mie" - }, - { - "Id": "aon", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bumbita Arapesh" - }, - { - "Id": "aor", - "Scope": "I", - "LanguageType": "E", - "RefName": "Aore" - }, - { - "Id": "aos", - "Scope": "I", - "LanguageType": "L", - "RefName": "Taikat" - }, - { - "Id": "aot", - "Scope": "I", - "LanguageType": "L", - "RefName": "Atong (India)" - }, - { - "Id": "aou", - "Scope": "I", - "LanguageType": "L", - "RefName": "A\u0027ou" - }, - { - "Id": "aox", - "Scope": "I", - "LanguageType": "L", - "RefName": "Atorada" - }, - { - "Id": "aoz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Uab Meto" - }, - { - "Id": "apb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sa\u0027a" - }, - { - "Id": "apc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Levantine Arabic" - }, - { - "Id": "apd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sudanese Arabic" - }, - { - "Id": "ape", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bukiyip" - }, - { - "Id": "apf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pahanan Agta" - }, - { - "Id": "apg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ampanang" - }, - { - "Id": "aph", - "Scope": "I", - "LanguageType": "L", - "RefName": "Athpariya" - }, - { - "Id": "api", - "Scope": "I", - "LanguageType": "L", - "RefName": "Apiak\u00E1" - }, - { - "Id": "apj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jicarilla Apache" - }, - { - "Id": "apk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kiowa Apache" - }, - { - "Id": "apl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lipan Apache" - }, - { - "Id": "apm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mescalero-Chiricahua Apache" - }, - { - "Id": "apn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Apinay\u00E9" - }, - { - "Id": "apo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ambul" - }, - { - "Id": "app", - "Scope": "I", - "LanguageType": "L", - "RefName": "Apma" - }, - { - "Id": "apq", - "Scope": "I", - "LanguageType": "L", - "RefName": "A-Pucikwar" - }, - { - "Id": "apr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Arop-Lokep" - }, - { - "Id": "aps", - "Scope": "I", - "LanguageType": "L", - "RefName": "Arop-Sissano" - }, - { - "Id": "apt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Apatani" - }, - { - "Id": "apu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Apurin\u00E3" - }, - { - "Id": "apv", - "Scope": "I", - "LanguageType": "E", - "RefName": "Alapmunte" - }, - { - "Id": "apw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Apache" - }, - { - "Id": "apx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aputai" - }, - { - "Id": "apy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Apala\u00ED" - }, - { - "Id": "apz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Safeyoka" - }, - { - "Id": "aqc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Archi" - }, - { - "Id": "aqd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ampari Dogon" - }, - { - "Id": "aqg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Arigidi" - }, - { - "Id": "aqk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aninka" - }, - { - "Id": "aqm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Atohwaim" - }, - { - "Id": "aqn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Alta" - }, - { - "Id": "aqp", - "Scope": "I", - "LanguageType": "E", - "RefName": "Atakapa" - }, - { - "Id": "aqr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Arh\u00E2" - }, - { - "Id": "aqt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Angait\u00E9" - }, - { - "Id": "aqz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Akuntsu" - }, - { - "Id": "ara", - "Part2B": "ara", - "Part2T": "ara", - "Part1": "ar", - "Scope": "M", - "LanguageType": "L", - "RefName": "Arabic" - }, - { - "Id": "arb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Standard Arabic" - }, - { - "Id": "arc", - "Part2B": "arc", - "Part2T": "arc", - "Scope": "I", - "LanguageType": "H", - "RefName": "Official Aramaic (700-300 BCE)" - }, - { - "Id": "ard", - "Scope": "I", - "LanguageType": "E", - "RefName": "Arabana" - }, - { - "Id": "are", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Arrarnta" - }, - { - "Id": "arg", - "Part2B": "arg", - "Part2T": "arg", - "Part1": "an", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aragonese" - }, - { - "Id": "arh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Arhuaco" - }, - { - "Id": "ari", - "Scope": "I", - "LanguageType": "L", - "RefName": "Arikara" - }, - { - "Id": "arj", - "Scope": "I", - "LanguageType": "E", - "RefName": "Arapaso" - }, - { - "Id": "ark", - "Scope": "I", - "LanguageType": "L", - "RefName": "Arikap\u00FA" - }, - { - "Id": "arl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Arabela" - }, - { - "Id": "arn", - "Part2B": "arn", - "Part2T": "arn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mapudungun" - }, - { - "Id": "aro", - "Scope": "I", - "LanguageType": "L", - "RefName": "Araona" - }, - { - "Id": "arp", - "Part2B": "arp", - "Part2T": "arp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Arapaho" - }, - { - "Id": "arq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Algerian Arabic" - }, - { - "Id": "arr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Karo (Brazil)" - }, - { - "Id": "ars", - "Scope": "I", - "LanguageType": "L", - "RefName": "Najdi Arabic" - }, - { - "Id": "aru", - "Scope": "I", - "LanguageType": "E", - "RefName": "Aru\u00E1 (Amazonas State)" - }, - { - "Id": "arv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Arbore" - }, - { - "Id": "arw", - "Part2B": "arw", - "Part2T": "arw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Arawak" - }, - { - "Id": "arx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aru\u00E1 (Rodonia State)" - }, - { - "Id": "ary", - "Scope": "I", - "LanguageType": "L", - "RefName": "Moroccan Arabic" - }, - { - "Id": "arz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Egyptian Arabic" - }, - { - "Id": "asa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Asu (Tanzania)" - }, - { - "Id": "asb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Assiniboine" - }, - { - "Id": "asc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Casuarina Coast Asmat" - }, - { - "Id": "ase", - "Scope": "I", - "LanguageType": "L", - "RefName": "American Sign Language" - }, - { - "Id": "asf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Auslan" - }, - { - "Id": "asg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cishingini" - }, - { - "Id": "ash", - "Scope": "I", - "LanguageType": "E", - "RefName": "Abishira" - }, - { - "Id": "asi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Buruwai" - }, - { - "Id": "asj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sari" - }, - { - "Id": "ask", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ashkun" - }, - { - "Id": "asl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Asilulu" - }, - { - "Id": "asm", - "Part2B": "asm", - "Part2T": "asm", - "Part1": "as", - "Scope": "I", - "LanguageType": "L", - "RefName": "Assamese" - }, - { - "Id": "asn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Xing\u00FA Asurin\u00ED" - }, - { - "Id": "aso", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dano" - }, - { - "Id": "asp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Algerian Sign Language" - }, - { - "Id": "asq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Austrian Sign Language" - }, - { - "Id": "asr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Asuri" - }, - { - "Id": "ass", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ipulo" - }, - { - "Id": "ast", - "Part2B": "ast", - "Part2T": "ast", - "Scope": "I", - "LanguageType": "L", - "RefName": "Asturian" - }, - { - "Id": "asu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tocantins Asurini" - }, - { - "Id": "asv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Asoa" - }, - { - "Id": "asw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Australian Aborigines Sign Language" - }, - { - "Id": "asx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Muratayak" - }, - { - "Id": "asy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yaosakor Asmat" - }, - { - "Id": "asz", - "Scope": "I", - "LanguageType": "L", - "RefName": "As" - }, - { - "Id": "ata", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pele-Ata" - }, - { - "Id": "atb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zaiwa" - }, - { - "Id": "atc", - "Scope": "I", - "LanguageType": "E", - "RefName": "Atsahuaca" - }, - { - "Id": "atd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ata Manobo" - }, - { - "Id": "ate", - "Scope": "I", - "LanguageType": "L", - "RefName": "Atemble" - }, - { - "Id": "atg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ivbie North-Okpela-Arhe" - }, - { - "Id": "ati", - "Scope": "I", - "LanguageType": "L", - "RefName": "Atti\u00E9" - }, - { - "Id": "atj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Atikamekw" - }, - { - "Id": "atk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ati" - }, - { - "Id": "atl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mt. Iraya Agta" - }, - { - "Id": "atm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ata" - }, - { - "Id": "atn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ashtiani" - }, - { - "Id": "ato", - "Scope": "I", - "LanguageType": "L", - "RefName": "Atong (Cameroon)" - }, - { - "Id": "atp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pudtol Atta" - }, - { - "Id": "atq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aralle-Tabulahan" - }, - { - "Id": "atr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Waimiri-Atroari" - }, - { - "Id": "ats", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gros Ventre" - }, - { - "Id": "att", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pamplona Atta" - }, - { - "Id": "atu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Reel" - }, - { - "Id": "atv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Altai" - }, - { - "Id": "atw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Atsugewi" - }, - { - "Id": "atx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Arutani" - }, - { - "Id": "aty", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aneityum" - }, - { - "Id": "atz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Arta" - }, - { - "Id": "aua", - "Scope": "I", - "LanguageType": "L", - "RefName": "Asumboa" - }, - { - "Id": "aub", - "Scope": "I", - "LanguageType": "L", - "RefName": "Alugu" - }, - { - "Id": "auc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Waorani" - }, - { - "Id": "aud", - "Scope": "I", - "LanguageType": "L", - "RefName": "Anuta" - }, - { - "Id": "aug", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aguna" - }, - { - "Id": "auh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aushi" - }, - { - "Id": "aui", - "Scope": "I", - "LanguageType": "L", - "RefName": "Anuki" - }, - { - "Id": "auj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Awjilah" - }, - { - "Id": "auk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Heyo" - }, - { - "Id": "aul", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aulua" - }, - { - "Id": "aum", - "Scope": "I", - "LanguageType": "L", - "RefName": "Asu (Nigeria)" - }, - { - "Id": "aun", - "Scope": "I", - "LanguageType": "L", - "RefName": "Molmo One" - }, - { - "Id": "auo", - "Scope": "I", - "LanguageType": "E", - "RefName": "Auyokawa" - }, - { - "Id": "aup", - "Scope": "I", - "LanguageType": "L", - "RefName": "Makayam" - }, - { - "Id": "auq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Anus" - }, - { - "Id": "aur", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aruek" - }, - { - "Id": "aut", - "Scope": "I", - "LanguageType": "L", - "RefName": "Austral" - }, - { - "Id": "auu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Auye" - }, - { - "Id": "auw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Awyi" - }, - { - "Id": "aux", - "Scope": "I", - "LanguageType": "E", - "RefName": "Aur\u00E1" - }, - { - "Id": "auy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Awiyaana" - }, - { - "Id": "auz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Uzbeki Arabic" - }, - { - "Id": "ava", - "Part2B": "ava", - "Part2T": "ava", - "Part1": "av", - "Scope": "I", - "LanguageType": "L", - "RefName": "Avaric" - }, - { - "Id": "avb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Avau" - }, - { - "Id": "avd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Alviri-Vidari" - }, - { - "Id": "ave", - "Part2B": "ave", - "Part2T": "ave", - "Part1": "ae", - "Scope": "I", - "LanguageType": "H", - "RefName": "Avestan" - }, - { - "Id": "avi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Avikam" - }, - { - "Id": "avk", - "Scope": "I", - "LanguageType": "C", - "RefName": "Kotava" - }, - { - "Id": "avl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Egyptian Bedawi Arabic" - }, - { - "Id": "avm", - "Scope": "I", - "LanguageType": "E", - "RefName": "Angkamuthi" - }, - { - "Id": "avn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Avatime" - }, - { - "Id": "avo", - "Scope": "I", - "LanguageType": "E", - "RefName": "Agavotaguerra" - }, - { - "Id": "avs", - "Scope": "I", - "LanguageType": "E", - "RefName": "Aushiri" - }, - { - "Id": "avt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Au" - }, - { - "Id": "avu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Avokaya" - }, - { - "Id": "avv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Av\u00E1-Canoeiro" - }, - { - "Id": "awa", - "Part2B": "awa", - "Part2T": "awa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Awadhi" - }, - { - "Id": "awb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Awa (Papua New Guinea)" - }, - { - "Id": "awc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cicipu" - }, - { - "Id": "awe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Awet\u00ED" - }, - { - "Id": "awg", - "Scope": "I", - "LanguageType": "E", - "RefName": "Anguthimri" - }, - { - "Id": "awh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Awbono" - }, - { - "Id": "awi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aekyom" - }, - { - "Id": "awk", - "Scope": "I", - "LanguageType": "E", - "RefName": "Awabakal" - }, - { - "Id": "awm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Arawum" - }, - { - "Id": "awn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Awngi" - }, - { - "Id": "awo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Awak" - }, - { - "Id": "awr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Awera" - }, - { - "Id": "aws", - "Scope": "I", - "LanguageType": "L", - "RefName": "South Awyu" - }, - { - "Id": "awt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Arawet\u00E9" - }, - { - "Id": "awu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Central Awyu" - }, - { - "Id": "awv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jair Awyu" - }, - { - "Id": "aww", - "Scope": "I", - "LanguageType": "L", - "RefName": "Awun" - }, - { - "Id": "awx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Awara" - }, - { - "Id": "awy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Edera Awyu" - }, - { - "Id": "axb", - "Scope": "I", - "LanguageType": "E", - "RefName": "Abipon" - }, - { - "Id": "axe", - "Scope": "I", - "LanguageType": "E", - "RefName": "Ayerrerenge" - }, - { - "Id": "axg", - "Scope": "I", - "LanguageType": "E", - "RefName": "Mato Grosso Ar\u00E1ra" - }, - { - "Id": "axk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yaka (Central African Republic)" - }, - { - "Id": "axl", - "Scope": "I", - "LanguageType": "E", - "RefName": "Lower Southern Aranda" - }, - { - "Id": "axm", - "Scope": "I", - "LanguageType": "H", - "RefName": "Middle Armenian" - }, - { - "Id": "axx", - "Scope": "I", - "LanguageType": "L", - "RefName": "X\u00E2r\u00E2gur\u00E8" - }, - { - "Id": "aya", - "Scope": "I", - "LanguageType": "L", - "RefName": "Awar" - }, - { - "Id": "ayb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ayizo Gbe" - }, - { - "Id": "ayc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Aymara" - }, - { - "Id": "ayd", - "Scope": "I", - "LanguageType": "E", - "RefName": "Ayabadhu" - }, - { - "Id": "aye", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ayere" - }, - { - "Id": "ayg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ginyanga" - }, - { - "Id": "ayh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hadrami Arabic" - }, - { - "Id": "ayi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Leyigha" - }, - { - "Id": "ayk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Akuku" - }, - { - "Id": "ayl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Libyan Arabic" - }, - { - "Id": "aym", - "Part2B": "aym", - "Part2T": "aym", - "Part1": "ay", - "Scope": "M", - "LanguageType": "L", - "RefName": "Aymara" - }, - { - "Id": "ayn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sanaani Arabic" - }, - { - "Id": "ayo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ayoreo" - }, - { - "Id": "ayp", - "Scope": "I", - "LanguageType": "L", - "RefName": "North Mesopotamian Arabic" - }, - { - "Id": "ayq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ayi (Papua New Guinea)" - }, - { - "Id": "ayr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Central Aymara" - }, - { - "Id": "ays", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sorsogon Ayta" - }, - { - "Id": "ayt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Magbukun Ayta" - }, - { - "Id": "ayu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ayu" - }, - { - "Id": "ayz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mai Brat" - }, - { - "Id": "aza", - "Scope": "I", - "LanguageType": "L", - "RefName": "Azha" - }, - { - "Id": "azb", - "Scope": "I", - "LanguageType": "L", - "RefName": "South Azerbaijani" - }, - { - "Id": "azd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Durango Nahuatl" - }, - { - "Id": "aze", - "Part2B": "aze", - "Part2T": "aze", - "Part1": "az", - "Scope": "M", - "LanguageType": "L", - "RefName": "Azerbaijani" - }, - { - "Id": "azg", - "Scope": "I", - "LanguageType": "L", - "RefName": "San Pedro Amuzgos Amuzgo" - }, - { - "Id": "azj", - "Scope": "I", - "LanguageType": "L", - "RefName": "North Azerbaijani" - }, - { - "Id": "azm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ipalapa Amuzgo" - }, - { - "Id": "azn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Durango Nahuatl" - }, - { - "Id": "azo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Awing" - }, - { - "Id": "azt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Faire Atta" - }, - { - "Id": "azz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Highland Puebla Nahuatl" - }, - { - "Id": "baa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Babatana" - }, - { - "Id": "bab", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bainouk-Gunyu\u00F1o" - }, - { - "Id": "bac", - "Scope": "I", - "LanguageType": "L", - "RefName": "Badui" - }, - { - "Id": "bae", - "Scope": "I", - "LanguageType": "E", - "RefName": "Bar\u00E9" - }, - { - "Id": "baf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nubaca" - }, - { - "Id": "bag", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tuki" - }, - { - "Id": "bah", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bahamas Creole English" - }, - { - "Id": "baj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Barakai" - }, - { - "Id": "bak", - "Part2B": "bak", - "Part2T": "bak", - "Part1": "ba", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bashkir" - }, - { - "Id": "bal", - "Part2B": "bal", - "Part2T": "bal", - "Scope": "M", - "LanguageType": "L", - "RefName": "Baluchi" - }, - { - "Id": "bam", - "Part2B": "bam", - "Part2T": "bam", - "Part1": "bm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bambara" - }, - { - "Id": "ban", - "Part2B": "ban", - "Part2T": "ban", - "Scope": "I", - "LanguageType": "L", - "RefName": "Balinese" - }, - { - "Id": "bao", - "Scope": "I", - "LanguageType": "L", - "RefName": "Waimaha" - }, - { - "Id": "bap", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bantawa" - }, - { - "Id": "bar", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bavarian" - }, - { - "Id": "bas", - "Part2B": "bas", - "Part2T": "bas", - "Scope": "I", - "LanguageType": "L", - "RefName": "Basa (Cameroon)" - }, - { - "Id": "bau", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bada (Nigeria)" - }, - { - "Id": "bav", - "Scope": "I", - "LanguageType": "L", - "RefName": "Vengo" - }, - { - "Id": "baw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bambili-Bambui" - }, - { - "Id": "bax", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bamun" - }, - { - "Id": "bay", - "Scope": "I", - "LanguageType": "L", - "RefName": "Batuley" - }, - { - "Id": "bba", - "Scope": "I", - "LanguageType": "L", - "RefName": "Baatonum" - }, - { - "Id": "bbb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Barai" - }, - { - "Id": "bbc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Batak Toba" - }, - { - "Id": "bbd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bau" - }, - { - "Id": "bbe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bangba" - }, - { - "Id": "bbf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Baibai" - }, - { - "Id": "bbg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Barama" - }, - { - "Id": "bbh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bugan" - }, - { - "Id": "bbi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Barombi" - }, - { - "Id": "bbj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ghom\u00E1l\u00E1\u0027" - }, - { - "Id": "bbk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Babanki" - }, - { - "Id": "bbl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bats" - }, - { - "Id": "bbm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Babango" - }, - { - "Id": "bbn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Uneapa" - }, - { - "Id": "bbo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Bobo Madar\u00E9" - }, - { - "Id": "bbp", - "Scope": "I", - "LanguageType": "L", - "RefName": "West Central Banda" - }, - { - "Id": "bbq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bamali" - }, - { - "Id": "bbr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Girawa" - }, - { - "Id": "bbs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bakpinka" - }, - { - "Id": "bbt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mburku" - }, - { - "Id": "bbu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kulung (Nigeria)" - }, - { - "Id": "bbv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Karnai" - }, - { - "Id": "bbw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Baba" - }, - { - "Id": "bbx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bubia" - }, - { - "Id": "bby", - "Scope": "I", - "LanguageType": "L", - "RefName": "Befang" - }, - { - "Id": "bca", - "Scope": "I", - "LanguageType": "L", - "RefName": "Central Bai" - }, - { - "Id": "bcb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bainouk-Samik" - }, - { - "Id": "bcc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Balochi" - }, - { - "Id": "bcd", - "Scope": "I", - "LanguageType": "L", - "RefName": "North Babar" - }, - { - "Id": "bce", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bamenyam" - }, - { - "Id": "bcf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bamu" - }, - { - "Id": "bcg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Baga Pokur" - }, - { - "Id": "bch", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bariai" - }, - { - "Id": "bci", - "Scope": "I", - "LanguageType": "L", - "RefName": "Baoul\u00E9" - }, - { - "Id": "bcj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bardi" - }, - { - "Id": "bck", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bunuba" - }, - { - "Id": "bcl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Central Bikol" - }, - { - "Id": "bcm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bannoni" - }, - { - "Id": "bcn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bali (Nigeria)" - }, - { - "Id": "bco", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kaluli" - }, - { - "Id": "bcp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bali (Democratic Republic of Congo)" - }, - { - "Id": "bcq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bench" - }, - { - "Id": "bcr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Babine" - }, - { - "Id": "bcs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kohumono" - }, - { - "Id": "bct", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bendi" - }, - { - "Id": "bcu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Awad Bing" - }, - { - "Id": "bcv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Shoo-Minda-Nye" - }, - { - "Id": "bcw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bana" - }, - { - "Id": "bcy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bacama" - }, - { - "Id": "bcz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bainouk-Gunyaamolo" - }, - { - "Id": "bda", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bayot" - }, - { - "Id": "bdb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Basap" - }, - { - "Id": "bdc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ember\u00E1-Baud\u00F3" - }, - { - "Id": "bdd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bunama" - }, - { - "Id": "bde", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bade" - }, - { - "Id": "bdf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Biage" - }, - { - "Id": "bdg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bonggi" - }, - { - "Id": "bdh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Baka (South Sudan)" - }, - { - "Id": "bdi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Burun" - }, - { - "Id": "bdj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bai (South Sudan)" - }, - { - "Id": "bdk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Budukh" - }, - { - "Id": "bdl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Indonesian Bajau" - }, - { - "Id": "bdm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Buduma" - }, - { - "Id": "bdn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Baldemu" - }, - { - "Id": "bdo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Morom" - }, - { - "Id": "bdp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bende" - }, - { - "Id": "bdq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bahnar" - }, - { - "Id": "bdr", - "Scope": "I", - "LanguageType": "L", - "RefName": "West Coast Bajau" - }, - { - "Id": "bds", - "Scope": "I", - "LanguageType": "L", - "RefName": "Burunge" - }, - { - "Id": "bdt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bokoto" - }, - { - "Id": "bdu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Oroko" - }, - { - "Id": "bdv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bodo Parja" - }, - { - "Id": "bdw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Baham" - }, - { - "Id": "bdx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Budong-Budong" - }, - { - "Id": "bdy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bandjalang" - }, - { - "Id": "bdz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Badeshi" - }, - { - "Id": "bea", - "Scope": "I", - "LanguageType": "L", - "RefName": "Beaver" - }, - { - "Id": "beb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bebele" - }, - { - "Id": "bec", - "Scope": "I", - "LanguageType": "L", - "RefName": "Iceve-Maci" - }, - { - "Id": "bed", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bedoanas" - }, - { - "Id": "bee", - "Scope": "I", - "LanguageType": "L", - "RefName": "Byangsi" - }, - { - "Id": "bef", - "Scope": "I", - "LanguageType": "L", - "RefName": "Benabena" - }, - { - "Id": "beg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Belait" - }, - { - "Id": "beh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Biali" - }, - { - "Id": "bei", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bekati\u0027" - }, - { - "Id": "bej", - "Part2B": "bej", - "Part2T": "bej", - "Scope": "I", - "LanguageType": "L", - "RefName": "Beja" - }, - { - "Id": "bek", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bebeli" - }, - { - "Id": "bel", - "Part2B": "bel", - "Part2T": "bel", - "Part1": "be", - "Scope": "I", - "LanguageType": "L", - "RefName": "Belarusian" - }, - { - "Id": "bem", - "Part2B": "bem", - "Part2T": "bem", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bemba (Zambia)" - }, - { - "Id": "ben", - "Part2B": "ben", - "Part2T": "ben", - "Part1": "bn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bengali" - }, - { - "Id": "beo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Beami" - }, - { - "Id": "bep", - "Scope": "I", - "LanguageType": "L", - "RefName": "Besoa" - }, - { - "Id": "beq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Beembe" - }, - { - "Id": "bes", - "Scope": "I", - "LanguageType": "L", - "RefName": "Besme" - }, - { - "Id": "bet", - "Scope": "I", - "LanguageType": "L", - "RefName": "Guiberoua B\u00E9te" - }, - { - "Id": "beu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Blagar" - }, - { - "Id": "bev", - "Scope": "I", - "LanguageType": "L", - "RefName": "Daloa B\u00E9t\u00E9" - }, - { - "Id": "bew", - "Scope": "I", - "LanguageType": "L", - "RefName": "Betawi" - }, - { - "Id": "bex", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jur Modo" - }, - { - "Id": "bey", - "Scope": "I", - "LanguageType": "L", - "RefName": "Beli (Papua New Guinea)" - }, - { - "Id": "bez", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bena (Tanzania)" - }, - { - "Id": "bfa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bari" - }, - { - "Id": "bfb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pauri Bareli" - }, - { - "Id": "bfc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Panyi Bai" - }, - { - "Id": "bfd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bafut" - }, - { - "Id": "bfe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Betaf" - }, - { - "Id": "bff", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bofi" - }, - { - "Id": "bfg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Busang Kayan" - }, - { - "Id": "bfh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Blafe" - }, - { - "Id": "bfi", - "Scope": "I", - "LanguageType": "L", - "RefName": "British Sign Language" - }, - { - "Id": "bfj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bafanji" - }, - { - "Id": "bfk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ban Khor Sign Language" - }, - { - "Id": "bfl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Banda-Nd\u00E9l\u00E9" - }, - { - "Id": "bfm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mmen" - }, - { - "Id": "bfn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bunak" - }, - { - "Id": "bfo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Malba Birifor" - }, - { - "Id": "bfp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Beba" - }, - { - "Id": "bfq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Badaga" - }, - { - "Id": "bfr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bazigar" - }, - { - "Id": "bfs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Bai" - }, - { - "Id": "bft", - "Scope": "I", - "LanguageType": "L", - "RefName": "Balti" - }, - { - "Id": "bfu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gahri" - }, - { - "Id": "bfw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bondo" - }, - { - "Id": "bfx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bantayanon" - }, - { - "Id": "bfy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bagheli" - }, - { - "Id": "bfz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mahasu Pahari" - }, - { - "Id": "bga", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gwamhi-Wuri" - }, - { - "Id": "bgb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bobongko" - }, - { - "Id": "bgc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Haryanvi" - }, - { - "Id": "bgd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rathwi Bareli" - }, - { - "Id": "bge", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bauria" - }, - { - "Id": "bgf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bangandu" - }, - { - "Id": "bgg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bugun" - }, - { - "Id": "bgi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Giangan" - }, - { - "Id": "bgj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bangolan" - }, - { - "Id": "bgk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bit" - }, - { - "Id": "bgl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bo (Laos)" - }, - { - "Id": "bgn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Balochi" - }, - { - "Id": "bgo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Baga Koga" - }, - { - "Id": "bgp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Balochi" - }, - { - "Id": "bgq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bagri" - }, - { - "Id": "bgr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bawm Chin" - }, - { - "Id": "bgs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tagabawa" - }, - { - "Id": "bgt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bughotu" - }, - { - "Id": "bgu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mbongno" - }, - { - "Id": "bgv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Warkay-Bipim" - }, - { - "Id": "bgw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bhatri" - }, - { - "Id": "bgx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Balkan Gagauz Turkish" - }, - { - "Id": "bgy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Benggoi" - }, - { - "Id": "bgz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Banggai" - }, - { - "Id": "bha", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bharia" - }, - { - "Id": "bhb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bhili" - }, - { - "Id": "bhc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Biga" - }, - { - "Id": "bhd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bhadrawahi" - }, - { - "Id": "bhe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bhaya" - }, - { - "Id": "bhf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Odiai" - }, - { - "Id": "bhg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Binandere" - }, - { - "Id": "bhh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bukharic" - }, - { - "Id": "bhi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bhilali" - }, - { - "Id": "bhj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bahing" - }, - { - "Id": "bhl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bimin" - }, - { - "Id": "bhm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bathari" - }, - { - "Id": "bhn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bohtan Neo-Aramaic" - }, - { - "Id": "bho", - "Part2B": "bho", - "Part2T": "bho", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bhojpuri" - }, - { - "Id": "bhp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bima" - }, - { - "Id": "bhq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tukang Besi South" - }, - { - "Id": "bhr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bara Malagasy" - }, - { - "Id": "bhs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Buwal" - }, - { - "Id": "bht", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bhattiyali" - }, - { - "Id": "bhu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bhunjia" - }, - { - "Id": "bhv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bahau" - }, - { - "Id": "bhw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Biak" - }, - { - "Id": "bhx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bhalay" - }, - { - "Id": "bhy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bhele" - }, - { - "Id": "bhz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bada (Indonesia)" - }, - { - "Id": "bia", - "Scope": "I", - "LanguageType": "L", - "RefName": "Badimaya" - }, - { - "Id": "bib", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bissa" - }, - { - "Id": "bid", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bidiyo" - }, - { - "Id": "bie", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bepour" - }, - { - "Id": "bif", - "Scope": "I", - "LanguageType": "L", - "RefName": "Biafada" - }, - { - "Id": "big", - "Scope": "I", - "LanguageType": "L", - "RefName": "Biangai" - }, - { - "Id": "bik", - "Part2B": "bik", - "Part2T": "bik", - "Scope": "M", - "LanguageType": "L", - "RefName": "Bikol" - }, - { - "Id": "bil", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bile" - }, - { - "Id": "bim", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bimoba" - }, - { - "Id": "bin", - "Part2B": "bin", - "Part2T": "bin", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bini" - }, - { - "Id": "bio", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nai" - }, - { - "Id": "bip", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bila" - }, - { - "Id": "biq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bipi" - }, - { - "Id": "bir", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bisorio" - }, - { - "Id": "bis", - "Part2B": "bis", - "Part2T": "bis", - "Part1": "bi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bislama" - }, - { - "Id": "bit", - "Scope": "I", - "LanguageType": "L", - "RefName": "Berinomo" - }, - { - "Id": "biu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Biete" - }, - { - "Id": "biv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Birifor" - }, - { - "Id": "biw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kol (Cameroon)" - }, - { - "Id": "bix", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bijori" - }, - { - "Id": "biy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Birhor" - }, - { - "Id": "biz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Baloi" - }, - { - "Id": "bja", - "Scope": "I", - "LanguageType": "L", - "RefName": "Budza" - }, - { - "Id": "bjb", - "Scope": "I", - "LanguageType": "E", - "RefName": "Banggarla" - }, - { - "Id": "bjc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bariji" - }, - { - "Id": "bje", - "Scope": "I", - "LanguageType": "L", - "RefName": "Biao-Jiao Mien" - }, - { - "Id": "bjf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Barzani Jewish Neo-Aramaic" - }, - { - "Id": "bjg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bidyogo" - }, - { - "Id": "bjh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bahinemo" - }, - { - "Id": "bji", - "Scope": "I", - "LanguageType": "L", - "RefName": "Burji" - }, - { - "Id": "bjj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kanauji" - }, - { - "Id": "bjk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Barok" - }, - { - "Id": "bjl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bulu (Papua New Guinea)" - }, - { - "Id": "bjm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bajelani" - }, - { - "Id": "bjn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Banjar" - }, - { - "Id": "bjo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mid-Southern Banda" - }, - { - "Id": "bjp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Fanamaket" - }, - { - "Id": "bjr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Binumarien" - }, - { - "Id": "bjs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bajan" - }, - { - "Id": "bjt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Balanta-Ganja" - }, - { - "Id": "bju", - "Scope": "I", - "LanguageType": "L", - "RefName": "Busuu" - }, - { - "Id": "bjv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bedjond" - }, - { - "Id": "bjw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bakw\u00E9" - }, - { - "Id": "bjx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Banao Itneg" - }, - { - "Id": "bjy", - "Scope": "I", - "LanguageType": "E", - "RefName": "Bayali" - }, - { - "Id": "bjz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Baruga" - }, - { - "Id": "bka", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kyak" - }, - { - "Id": "bkc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Baka (Cameroon)" - }, - { - "Id": "bkd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Binukid" - }, - { - "Id": "bkf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Beeke" - }, - { - "Id": "bkg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Buraka" - }, - { - "Id": "bkh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bakoko" - }, - { - "Id": "bki", - "Scope": "I", - "LanguageType": "L", - "RefName": "Baki" - }, - { - "Id": "bkj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pande" - }, - { - "Id": "bkk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Brokskat" - }, - { - "Id": "bkl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Berik" - }, - { - "Id": "bkm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kom (Cameroon)" - }, - { - "Id": "bkn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bukitan" - }, - { - "Id": "bko", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kwa\u0027" - }, - { - "Id": "bkp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Boko (Democratic Republic of Congo)" - }, - { - "Id": "bkq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bakair\u00ED" - }, - { - "Id": "bkr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bakumpai" - }, - { - "Id": "bks", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Sorsoganon" - }, - { - "Id": "bkt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Boloki" - }, - { - "Id": "bku", - "Scope": "I", - "LanguageType": "L", - "RefName": "Buhid" - }, - { - "Id": "bkv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bekwarra" - }, - { - "Id": "bkw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bekwel" - }, - { - "Id": "bkx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Baikeno" - }, - { - "Id": "bky", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bokyi" - }, - { - "Id": "bkz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bungku" - }, - { - "Id": "bla", - "Part2B": "bla", - "Part2T": "bla", - "Scope": "I", - "LanguageType": "L", - "RefName": "Siksika" - }, - { - "Id": "blb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bilua" - }, - { - "Id": "blc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bella Coola" - }, - { - "Id": "bld", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bolango" - }, - { - "Id": "ble", - "Scope": "I", - "LanguageType": "L", - "RefName": "Balanta-Kentohe" - }, - { - "Id": "blf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Buol" - }, - { - "Id": "blh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kuwaa" - }, - { - "Id": "bli", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bolia" - }, - { - "Id": "blj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bolongan" - }, - { - "Id": "blk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pa\u0027o Karen" - }, - { - "Id": "bll", - "Scope": "I", - "LanguageType": "E", - "RefName": "Biloxi" - }, - { - "Id": "blm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Beli (South Sudan)" - }, - { - "Id": "bln", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Catanduanes Bikol" - }, - { - "Id": "blo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Anii" - }, - { - "Id": "blp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Blablanga" - }, - { - "Id": "blq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Baluan-Pam" - }, - { - "Id": "blr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Blang" - }, - { - "Id": "bls", - "Scope": "I", - "LanguageType": "L", - "RefName": "Balaesang" - }, - { - "Id": "blt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tai Dam" - }, - { - "Id": "blv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kibala" - }, - { - "Id": "blw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Balangao" - }, - { - "Id": "blx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mag-Indi Ayta" - }, - { - "Id": "bly", - "Scope": "I", - "LanguageType": "L", - "RefName": "Notre" - }, - { - "Id": "blz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Balantak" - }, - { - "Id": "bma", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lame" - }, - { - "Id": "bmb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bembe" - }, - { - "Id": "bmc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Biem" - }, - { - "Id": "bmd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Baga Manduri" - }, - { - "Id": "bme", - "Scope": "I", - "LanguageType": "L", - "RefName": "Limassa" - }, - { - "Id": "bmf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bom-Kim" - }, - { - "Id": "bmg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bamwe" - }, - { - "Id": "bmh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kein" - }, - { - "Id": "bmi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bagirmi" - }, - { - "Id": "bmj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bote-Majhi" - }, - { - "Id": "bmk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ghayavi" - }, - { - "Id": "bml", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bomboli" - }, - { - "Id": "bmm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Betsimisaraka Malagasy" - }, - { - "Id": "bmn", - "Scope": "I", - "LanguageType": "E", - "RefName": "Bina (Papua New Guinea)" - }, - { - "Id": "bmo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bambalang" - }, - { - "Id": "bmp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bulgebi" - }, - { - "Id": "bmq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bomu" - }, - { - "Id": "bmr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Muinane" - }, - { - "Id": "bms", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bilma Kanuri" - }, - { - "Id": "bmt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Biao Mon" - }, - { - "Id": "bmu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Somba-Siawari" - }, - { - "Id": "bmv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bum" - }, - { - "Id": "bmw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bomwali" - }, - { - "Id": "bmx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Baimak" - }, - { - "Id": "bmz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Baramu" - }, - { - "Id": "bna", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bonerate" - }, - { - "Id": "bnb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bookan" - }, - { - "Id": "bnc", - "Scope": "M", - "LanguageType": "L", - "RefName": "Bontok" - }, - { - "Id": "bnd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Banda (Indonesia)" - }, - { - "Id": "bne", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bintauna" - }, - { - "Id": "bnf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Masiwang" - }, - { - "Id": "bng", - "Scope": "I", - "LanguageType": "L", - "RefName": "Benga" - }, - { - "Id": "bni", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bangi" - }, - { - "Id": "bnj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Tawbuid" - }, - { - "Id": "bnk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bierebo" - }, - { - "Id": "bnl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Boon" - }, - { - "Id": "bnm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Batanga" - }, - { - "Id": "bnn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bunun" - }, - { - "Id": "bno", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bantoanon" - }, - { - "Id": "bnp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bola" - }, - { - "Id": "bnq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bantik" - }, - { - "Id": "bnr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Butmas-Tur" - }, - { - "Id": "bns", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bundeli" - }, - { - "Id": "bnu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bentong" - }, - { - "Id": "bnv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bonerif" - }, - { - "Id": "bnw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bisis" - }, - { - "Id": "bnx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bangubangu" - }, - { - "Id": "bny", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bintulu" - }, - { - "Id": "bnz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Beezen" - }, - { - "Id": "boa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bora" - }, - { - "Id": "bob", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aweer" - }, - { - "Id": "bod", - "Part2B": "tib", - "Part2T": "bod", - "Part1": "bo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tibetan" - }, - { - "Id": "boe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mundabli-Mufu" - }, - { - "Id": "bof", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bolon" - }, - { - "Id": "bog", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bamako Sign Language" - }, - { - "Id": "boh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Boma" - }, - { - "Id": "boi", - "Scope": "I", - "LanguageType": "E", - "RefName": "Barbare\u00F1o" - }, - { - "Id": "boj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Anjam" - }, - { - "Id": "bok", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bonjo" - }, - { - "Id": "bol", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bole" - }, - { - "Id": "bom", - "Scope": "I", - "LanguageType": "L", - "RefName": "Berom" - }, - { - "Id": "bon", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bine" - }, - { - "Id": "boo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tiemac\u00E8w\u00E8 Bozo" - }, - { - "Id": "bop", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bonkiman" - }, - { - "Id": "boq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bogaya" - }, - { - "Id": "bor", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bor\u00F4ro" - }, - { - "Id": "bos", - "Part2B": "bos", - "Part2T": "bos", - "Part1": "bs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bosnian" - }, - { - "Id": "bot", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bongo" - }, - { - "Id": "bou", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bondei" - }, - { - "Id": "bov", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tuwuli" - }, - { - "Id": "bow", - "Scope": "I", - "LanguageType": "E", - "RefName": "Rema" - }, - { - "Id": "box", - "Scope": "I", - "LanguageType": "L", - "RefName": "Buamu" - }, - { - "Id": "boy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bodo (Central African Republic)" - }, - { - "Id": "boz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ti\u00E9yaxo Bozo" - }, - { - "Id": "bpa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Daakaka" - }, - { - "Id": "bpc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mbuk" - }, - { - "Id": "bpd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Banda-Banda" - }, - { - "Id": "bpe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bauni" - }, - { - "Id": "bpg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bonggo" - }, - { - "Id": "bph", - "Scope": "I", - "LanguageType": "L", - "RefName": "Botlikh" - }, - { - "Id": "bpi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bagupi" - }, - { - "Id": "bpj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Binji" - }, - { - "Id": "bpk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Orowe" - }, - { - "Id": "bpl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Broome Pearling Lugger Pidgin" - }, - { - "Id": "bpm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Biyom" - }, - { - "Id": "bpn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dzao Min" - }, - { - "Id": "bpo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Anasi" - }, - { - "Id": "bpp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kaure" - }, - { - "Id": "bpq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Banda Malay" - }, - { - "Id": "bpr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Koronadal Blaan" - }, - { - "Id": "bps", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sarangani Blaan" - }, - { - "Id": "bpt", - "Scope": "I", - "LanguageType": "E", - "RefName": "Barrow Point" - }, - { - "Id": "bpu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bongu" - }, - { - "Id": "bpv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bian Marind" - }, - { - "Id": "bpw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bo (Papua New Guinea)" - }, - { - "Id": "bpx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Palya Bareli" - }, - { - "Id": "bpy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bishnupriya" - }, - { - "Id": "bpz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bilba" - }, - { - "Id": "bqa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tchumbuli" - }, - { - "Id": "bqb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bagusa" - }, - { - "Id": "bqc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Boko (Benin)" - }, - { - "Id": "bqd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bung" - }, - { - "Id": "bqf", - "Scope": "I", - "LanguageType": "E", - "RefName": "Baga Kaloum" - }, - { - "Id": "bqg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bago-Kusuntu" - }, - { - "Id": "bqh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Baima" - }, - { - "Id": "bqi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bakhtiari" - }, - { - "Id": "bqj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bandial" - }, - { - "Id": "bqk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Banda-Mbr\u00E8s" - }, - { - "Id": "bql", - "Scope": "I", - "LanguageType": "L", - "RefName": "Karian" - }, - { - "Id": "bqm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wumboko" - }, - { - "Id": "bqn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bulgarian Sign Language" - }, - { - "Id": "bqo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Balo" - }, - { - "Id": "bqp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Busa" - }, - { - "Id": "bqq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Biritai" - }, - { - "Id": "bqr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Burusu" - }, - { - "Id": "bqs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bosngun" - }, - { - "Id": "bqt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bamukumbit" - }, - { - "Id": "bqu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Boguru" - }, - { - "Id": "bqv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Koro Wachi" - }, - { - "Id": "bqw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Buru (Nigeria)" - }, - { - "Id": "bqx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Baangi" - }, - { - "Id": "bqy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bengkala Sign Language" - }, - { - "Id": "bqz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bakaka" - }, - { - "Id": "bra", - "Part2B": "bra", - "Part2T": "bra", - "Scope": "I", - "LanguageType": "L", - "RefName": "Braj" - }, - { - "Id": "brb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Brao" - }, - { - "Id": "brc", - "Scope": "I", - "LanguageType": "E", - "RefName": "Berbice Creole Dutch" - }, - { - "Id": "brd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Baraamu" - }, - { - "Id": "bre", - "Part2B": "bre", - "Part2T": "bre", - "Part1": "br", - "Scope": "I", - "LanguageType": "L", - "RefName": "Breton" - }, - { - "Id": "brf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bira" - }, - { - "Id": "brg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Baure" - }, - { - "Id": "brh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Brahui" - }, - { - "Id": "bri", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mokpwe" - }, - { - "Id": "brj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bieria" - }, - { - "Id": "brk", - "Scope": "I", - "LanguageType": "E", - "RefName": "Birked" - }, - { - "Id": "brl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Birwa" - }, - { - "Id": "brm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Barambu" - }, - { - "Id": "brn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Boruca" - }, - { - "Id": "bro", - "Scope": "I", - "LanguageType": "L", - "RefName": "Brokkat" - }, - { - "Id": "brp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Barapasi" - }, - { - "Id": "brq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Breri" - }, - { - "Id": "brr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Birao" - }, - { - "Id": "brs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Baras" - }, - { - "Id": "brt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bitare" - }, - { - "Id": "bru", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Bru" - }, - { - "Id": "brv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Bru" - }, - { - "Id": "brw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bellari" - }, - { - "Id": "brx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bodo (India)" - }, - { - "Id": "bry", - "Scope": "I", - "LanguageType": "L", - "RefName": "Burui" - }, - { - "Id": "brz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bilbil" - }, - { - "Id": "bsa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Abinomn" - }, - { - "Id": "bsb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Brunei Bisaya" - }, - { - "Id": "bsc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bassari" - }, - { - "Id": "bse", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wushi" - }, - { - "Id": "bsf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bauchi" - }, - { - "Id": "bsg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bashkardi" - }, - { - "Id": "bsh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kati" - }, - { - "Id": "bsi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bassossi" - }, - { - "Id": "bsj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bangwinji" - }, - { - "Id": "bsk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Burushaski" - }, - { - "Id": "bsl", - "Scope": "I", - "LanguageType": "E", - "RefName": "Basa-Gumna" - }, - { - "Id": "bsm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Busami" - }, - { - "Id": "bsn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Barasana-Eduria" - }, - { - "Id": "bso", - "Scope": "I", - "LanguageType": "L", - "RefName": "Buso" - }, - { - "Id": "bsp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Baga Sitemu" - }, - { - "Id": "bsq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bassa" - }, - { - "Id": "bsr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bassa-Kontagora" - }, - { - "Id": "bss", - "Scope": "I", - "LanguageType": "L", - "RefName": "Akoose" - }, - { - "Id": "bst", - "Scope": "I", - "LanguageType": "L", - "RefName": "Basketo" - }, - { - "Id": "bsu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bahonsuai" - }, - { - "Id": "bsv", - "Scope": "I", - "LanguageType": "E", - "RefName": "Baga Soban\u00E9" - }, - { - "Id": "bsw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Baiso" - }, - { - "Id": "bsx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yangkam" - }, - { - "Id": "bsy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sabah Bisaya" - }, - { - "Id": "bta", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bata" - }, - { - "Id": "btc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bati (Cameroon)" - }, - { - "Id": "btd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Batak Dairi" - }, - { - "Id": "bte", - "Scope": "I", - "LanguageType": "E", - "RefName": "Gamo-Ningi" - }, - { - "Id": "btf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Birgit" - }, - { - "Id": "btg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gagnoa B\u00E9t\u00E9" - }, - { - "Id": "bth", - "Scope": "I", - "LanguageType": "L", - "RefName": "Biatah Bidayuh" - }, - { - "Id": "bti", - "Scope": "I", - "LanguageType": "L", - "RefName": "Burate" - }, - { - "Id": "btj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bacanese Malay" - }, - { - "Id": "btm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Batak Mandailing" - }, - { - "Id": "btn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ratagnon" - }, - { - "Id": "bto", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rinconada Bikol" - }, - { - "Id": "btp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Budibud" - }, - { - "Id": "btq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Batek" - }, - { - "Id": "btr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Baetora" - }, - { - "Id": "bts", - "Scope": "I", - "LanguageType": "L", - "RefName": "Batak Simalungun" - }, - { - "Id": "btt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bete-Bendi" - }, - { - "Id": "btu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Batu" - }, - { - "Id": "btv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bateri" - }, - { - "Id": "btw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Butuanon" - }, - { - "Id": "btx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Batak Karo" - }, - { - "Id": "bty", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bobot" - }, - { - "Id": "btz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Batak Alas-Kluet" - }, - { - "Id": "bua", - "Part2B": "bua", - "Part2T": "bua", - "Scope": "M", - "LanguageType": "L", - "RefName": "Buriat" - }, - { - "Id": "bub", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bua" - }, - { - "Id": "buc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bushi" - }, - { - "Id": "bud", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ntcham" - }, - { - "Id": "bue", - "Scope": "I", - "LanguageType": "E", - "RefName": "Beothuk" - }, - { - "Id": "buf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bushoong" - }, - { - "Id": "bug", - "Part2B": "bug", - "Part2T": "bug", - "Scope": "I", - "LanguageType": "L", - "RefName": "Buginese" - }, - { - "Id": "buh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Younuo Bunu" - }, - { - "Id": "bui", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bongili" - }, - { - "Id": "buj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Basa-Gurmana" - }, - { - "Id": "buk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bugawac" - }, - { - "Id": "bul", - "Part2B": "bul", - "Part2T": "bul", - "Part1": "bg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bulgarian" - }, - { - "Id": "bum", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bulu (Cameroon)" - }, - { - "Id": "bun", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sherbro" - }, - { - "Id": "buo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Terei" - }, - { - "Id": "bup", - "Scope": "I", - "LanguageType": "L", - "RefName": "Busoa" - }, - { - "Id": "buq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Brem" - }, - { - "Id": "bus", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bokobaru" - }, - { - "Id": "but", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bungain" - }, - { - "Id": "buu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Budu" - }, - { - "Id": "buv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bun" - }, - { - "Id": "buw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bubi" - }, - { - "Id": "bux", - "Scope": "I", - "LanguageType": "L", - "RefName": "Boghom" - }, - { - "Id": "buy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bullom So" - }, - { - "Id": "buz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bukwen" - }, - { - "Id": "bva", - "Scope": "I", - "LanguageType": "L", - "RefName": "Barein" - }, - { - "Id": "bvb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bube" - }, - { - "Id": "bvc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Baelelea" - }, - { - "Id": "bvd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Baeggu" - }, - { - "Id": "bve", - "Scope": "I", - "LanguageType": "L", - "RefName": "Berau Malay" - }, - { - "Id": "bvf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Boor" - }, - { - "Id": "bvg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bonkeng" - }, - { - "Id": "bvh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bure" - }, - { - "Id": "bvi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Belanda Viri" - }, - { - "Id": "bvj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Baan" - }, - { - "Id": "bvk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bukat" - }, - { - "Id": "bvl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bolivian Sign Language" - }, - { - "Id": "bvm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bamunka" - }, - { - "Id": "bvn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Buna" - }, - { - "Id": "bvo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bolgo" - }, - { - "Id": "bvp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bumang" - }, - { - "Id": "bvq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Birri" - }, - { - "Id": "bvr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Burarra" - }, - { - "Id": "bvt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bati (Indonesia)" - }, - { - "Id": "bvu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bukit Malay" - }, - { - "Id": "bvv", - "Scope": "I", - "LanguageType": "E", - "RefName": "Baniva" - }, - { - "Id": "bvw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Boga" - }, - { - "Id": "bvx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dibole" - }, - { - "Id": "bvy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Baybayanon" - }, - { - "Id": "bvz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bauzi" - }, - { - "Id": "bwa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bwatoo" - }, - { - "Id": "bwb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Namosi-Naitasiri-Serua" - }, - { - "Id": "bwc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bwile" - }, - { - "Id": "bwd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bwaidoka" - }, - { - "Id": "bwe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bwe Karen" - }, - { - "Id": "bwf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Boselewa" - }, - { - "Id": "bwg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Barwe" - }, - { - "Id": "bwh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bishuo" - }, - { - "Id": "bwi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Baniwa" - }, - { - "Id": "bwj", - "Scope": "I", - "LanguageType": "L", - "RefName": "L\u00E1\u00E1 L\u00E1\u00E1 Bwamu" - }, - { - "Id": "bwk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bauwaki" - }, - { - "Id": "bwl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bwela" - }, - { - "Id": "bwm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Biwat" - }, - { - "Id": "bwn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wunai Bunu" - }, - { - "Id": "bwo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Boro (Ethiopia)" - }, - { - "Id": "bwp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mandobo Bawah" - }, - { - "Id": "bwq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Bobo Madar\u00E9" - }, - { - "Id": "bwr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bura-Pabir" - }, - { - "Id": "bws", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bomboma" - }, - { - "Id": "bwt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bafaw-Balong" - }, - { - "Id": "bwu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Buli (Ghana)" - }, - { - "Id": "bww", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bwa" - }, - { - "Id": "bwx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bu-Nao Bunu" - }, - { - "Id": "bwy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cwi Bwamu" - }, - { - "Id": "bwz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bwisi" - }, - { - "Id": "bxa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tairaha" - }, - { - "Id": "bxb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Belanda Bor" - }, - { - "Id": "bxc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Molengue" - }, - { - "Id": "bxd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pela" - }, - { - "Id": "bxe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Birale" - }, - { - "Id": "bxf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bilur" - }, - { - "Id": "bxg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bangala" - }, - { - "Id": "bxh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Buhutu" - }, - { - "Id": "bxi", - "Scope": "I", - "LanguageType": "E", - "RefName": "Pirlatapa" - }, - { - "Id": "bxj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bayungu" - }, - { - "Id": "bxk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bukusu" - }, - { - "Id": "bxl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jalkunan" - }, - { - "Id": "bxm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mongolia Buriat" - }, - { - "Id": "bxn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Burduna" - }, - { - "Id": "bxo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Barikanchi" - }, - { - "Id": "bxp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bebil" - }, - { - "Id": "bxq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Beele" - }, - { - "Id": "bxr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Russia Buriat" - }, - { - "Id": "bxs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Busam" - }, - { - "Id": "bxu", - "Scope": "I", - "LanguageType": "L", - "RefName": "China Buriat" - }, - { - "Id": "bxv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Berakou" - }, - { - "Id": "bxw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bankagooma" - }, - { - "Id": "bxz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Binahari" - }, - { - "Id": "bya", - "Scope": "I", - "LanguageType": "L", - "RefName": "Batak" - }, - { - "Id": "byb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bikya" - }, - { - "Id": "byc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ubaghara" - }, - { - "Id": "byd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Benyadu\u0027" - }, - { - "Id": "bye", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pouye" - }, - { - "Id": "byf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bete" - }, - { - "Id": "byg", - "Scope": "I", - "LanguageType": "E", - "RefName": "Baygo" - }, - { - "Id": "byh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bhujel" - }, - { - "Id": "byi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Buyu" - }, - { - "Id": "byj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bina (Nigeria)" - }, - { - "Id": "byk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Biao" - }, - { - "Id": "byl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bayono" - }, - { - "Id": "bym", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bidjara" - }, - { - "Id": "byn", - "Part2B": "byn", - "Part2T": "byn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bilin" - }, - { - "Id": "byo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Biyo" - }, - { - "Id": "byp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bumaji" - }, - { - "Id": "byq", - "Scope": "I", - "LanguageType": "E", - "RefName": "Basay" - }, - { - "Id": "byr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Baruya" - }, - { - "Id": "bys", - "Scope": "I", - "LanguageType": "L", - "RefName": "Burak" - }, - { - "Id": "byt", - "Scope": "I", - "LanguageType": "E", - "RefName": "Berti" - }, - { - "Id": "byv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Medumba" - }, - { - "Id": "byw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Belhariya" - }, - { - "Id": "byx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Qaqet" - }, - { - "Id": "byz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Banaro" - }, - { - "Id": "bza", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bandi" - }, - { - "Id": "bzb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Andio" - }, - { - "Id": "bzc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Betsimisaraka Malagasy" - }, - { - "Id": "bzd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bribri" - }, - { - "Id": "bze", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jenaama Bozo" - }, - { - "Id": "bzf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Boikin" - }, - { - "Id": "bzg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Babuza" - }, - { - "Id": "bzh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mapos Buang" - }, - { - "Id": "bzi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bisu" - }, - { - "Id": "bzj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Belize Kriol English" - }, - { - "Id": "bzk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nicaragua Creole English" - }, - { - "Id": "bzl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Boano (Sulawesi)" - }, - { - "Id": "bzm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bolondo" - }, - { - "Id": "bzn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Boano (Maluku)" - }, - { - "Id": "bzo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bozaba" - }, - { - "Id": "bzp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kemberano" - }, - { - "Id": "bzq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Buli (Indonesia)" - }, - { - "Id": "bzr", - "Scope": "I", - "LanguageType": "E", - "RefName": "Biri" - }, - { - "Id": "bzs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Brazilian Sign Language" - }, - { - "Id": "bzt", - "Scope": "I", - "LanguageType": "C", - "RefName": "Brithenig" - }, - { - "Id": "bzu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Burmeso" - }, - { - "Id": "bzv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Naami" - }, - { - "Id": "bzw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Basa (Nigeria)" - }, - { - "Id": "bzx", - "Scope": "I", - "LanguageType": "L", - "RefName": "K\u025Bl\u025Bngaxo Bozo" - }, - { - "Id": "bzy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Obanliku" - }, - { - "Id": "bzz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Evant" - }, - { - "Id": "caa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chort\u00ED" - }, - { - "Id": "cab", - "Scope": "I", - "LanguageType": "L", - "RefName": "Garifuna" - }, - { - "Id": "cac", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chuj" - }, - { - "Id": "cad", - "Part2B": "cad", - "Part2T": "cad", - "Scope": "I", - "LanguageType": "L", - "RefName": "Caddo" - }, - { - "Id": "cae", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lehar" - }, - { - "Id": "caf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Carrier" - }, - { - "Id": "cag", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nivacl\u00E9" - }, - { - "Id": "cah", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cahuarano" - }, - { - "Id": "caj", - "Scope": "I", - "LanguageType": "E", - "RefName": "Chan\u00E9" - }, - { - "Id": "cak", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kaqchikel" - }, - { - "Id": "cal", - "Scope": "I", - "LanguageType": "L", - "RefName": "Carolinian" - }, - { - "Id": "cam", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cemuh\u00EE" - }, - { - "Id": "can", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chambri" - }, - { - "Id": "cao", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ch\u00E1cobo" - }, - { - "Id": "cap", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chipaya" - }, - { - "Id": "caq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Car Nicobarese" - }, - { - "Id": "car", - "Part2B": "car", - "Part2T": "car", - "Scope": "I", - "LanguageType": "L", - "RefName": "Galibi Carib" - }, - { - "Id": "cas", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tsiman\u00E9" - }, - { - "Id": "cat", - "Part2B": "cat", - "Part2T": "cat", - "Part1": "ca", - "Scope": "I", - "LanguageType": "L", - "RefName": "Catalan" - }, - { - "Id": "cav", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cavine\u00F1a" - }, - { - "Id": "caw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Callawalla" - }, - { - "Id": "cax", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chiquitano" - }, - { - "Id": "cay", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cayuga" - }, - { - "Id": "caz", - "Scope": "I", - "LanguageType": "E", - "RefName": "Canichana" - }, - { - "Id": "cbb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cabiyar\u00ED" - }, - { - "Id": "cbc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Carapana" - }, - { - "Id": "cbd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Carijona" - }, - { - "Id": "cbg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chimila" - }, - { - "Id": "cbi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chachi" - }, - { - "Id": "cbj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ede Cabe" - }, - { - "Id": "cbk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chavacano" - }, - { - "Id": "cbl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bualkhaw Chin" - }, - { - "Id": "cbn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nyahkur" - }, - { - "Id": "cbo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Izora" - }, - { - "Id": "cbq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tsucuba" - }, - { - "Id": "cbr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cashibo-Cacataibo" - }, - { - "Id": "cbs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cashinahua" - }, - { - "Id": "cbt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chayahuita" - }, - { - "Id": "cbu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Candoshi-Shapra" - }, - { - "Id": "cbv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cacua" - }, - { - "Id": "cbw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kinabalian" - }, - { - "Id": "cby", - "Scope": "I", - "LanguageType": "L", - "RefName": "Carabayo" - }, - { - "Id": "ccc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chamicuro" - }, - { - "Id": "ccd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cafundo Creole" - }, - { - "Id": "cce", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chopi" - }, - { - "Id": "ccg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Samba Daka" - }, - { - "Id": "cch", - "Scope": "I", - "LanguageType": "L", - "RefName": "Atsam" - }, - { - "Id": "ccj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kasanga" - }, - { - "Id": "ccl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cutchi-Swahili" - }, - { - "Id": "ccm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Malaccan Creole Malay" - }, - { - "Id": "cco", - "Scope": "I", - "LanguageType": "L", - "RefName": "Comaltepec Chinantec" - }, - { - "Id": "ccp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chakma" - }, - { - "Id": "ccr", - "Scope": "I", - "LanguageType": "E", - "RefName": "Cacaopera" - }, - { - "Id": "cda", - "Scope": "I", - "LanguageType": "L", - "RefName": "Choni" - }, - { - "Id": "cde", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chenchu" - }, - { - "Id": "cdf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chiru" - }, - { - "Id": "cdh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chambeali" - }, - { - "Id": "cdi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chodri" - }, - { - "Id": "cdj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Churahi" - }, - { - "Id": "cdm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chepang" - }, - { - "Id": "cdn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chaudangsi" - }, - { - "Id": "cdo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Min Dong Chinese" - }, - { - "Id": "cdr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cinda-Regi-Tiyal" - }, - { - "Id": "cds", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chadian Sign Language" - }, - { - "Id": "cdy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chadong" - }, - { - "Id": "cdz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Koda" - }, - { - "Id": "cea", - "Scope": "I", - "LanguageType": "E", - "RefName": "Lower Chehalis" - }, - { - "Id": "ceb", - "Part2B": "ceb", - "Part2T": "ceb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cebuano" - }, - { - "Id": "ceg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chamacoco" - }, - { - "Id": "cek", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Khumi Chin" - }, - { - "Id": "cen", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cen" - }, - { - "Id": "ces", - "Part2B": "cze", - "Part2T": "ces", - "Part1": "cs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Czech" - }, - { - "Id": "cet", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cent\u00FA\u00FAm" - }, - { - "Id": "cey", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ekai Chin" - }, - { - "Id": "cfa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dijim-Bwilim" - }, - { - "Id": "cfd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cara" - }, - { - "Id": "cfg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Como Karim" - }, - { - "Id": "cfm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Falam Chin" - }, - { - "Id": "cga", - "Scope": "I", - "LanguageType": "L", - "RefName": "Changriwa" - }, - { - "Id": "cgc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kagayanen" - }, - { - "Id": "cgg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chiga" - }, - { - "Id": "cgk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chocangacakha" - }, - { - "Id": "cha", - "Part2B": "cha", - "Part2T": "cha", - "Part1": "ch", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chamorro" - }, - { - "Id": "chb", - "Part2B": "chb", - "Part2T": "chb", - "Scope": "I", - "LanguageType": "E", - "RefName": "Chibcha" - }, - { - "Id": "chc", - "Scope": "I", - "LanguageType": "E", - "RefName": "Catawba" - }, - { - "Id": "chd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Highland Oaxaca Chontal" - }, - { - "Id": "che", - "Part2B": "che", - "Part2T": "che", - "Part1": "ce", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chechen" - }, - { - "Id": "chf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tabasco Chontal" - }, - { - "Id": "chg", - "Part2B": "chg", - "Part2T": "chg", - "Scope": "I", - "LanguageType": "E", - "RefName": "Chagatai" - }, - { - "Id": "chh", - "Scope": "I", - "LanguageType": "E", - "RefName": "Chinook" - }, - { - "Id": "chj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ojitl\u00E1n Chinantec" - }, - { - "Id": "chk", - "Part2B": "chk", - "Part2T": "chk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chuukese" - }, - { - "Id": "chl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cahuilla" - }, - { - "Id": "chm", - "Part2B": "chm", - "Part2T": "chm", - "Scope": "M", - "LanguageType": "L", - "RefName": "Mari (Russia)" - }, - { - "Id": "chn", - "Part2B": "chn", - "Part2T": "chn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chinook jargon" - }, - { - "Id": "cho", - "Part2B": "cho", - "Part2T": "cho", - "Scope": "I", - "LanguageType": "L", - "RefName": "Choctaw" - }, - { - "Id": "chp", - "Part2B": "chp", - "Part2T": "chp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chipewyan" - }, - { - "Id": "chq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Quiotepec Chinantec" - }, - { - "Id": "chr", - "Part2B": "chr", - "Part2T": "chr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cherokee" - }, - { - "Id": "cht", - "Scope": "I", - "LanguageType": "E", - "RefName": "Chol\u00F3n" - }, - { - "Id": "chu", - "Part2B": "chu", - "Part2T": "chu", - "Part1": "cu", - "Scope": "I", - "LanguageType": "H", - "RefName": "Church Slavic" - }, - { - "Id": "chv", - "Part2B": "chv", - "Part2T": "chv", - "Part1": "cv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chuvash" - }, - { - "Id": "chw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chuwabu" - }, - { - "Id": "chx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chantyal" - }, - { - "Id": "chy", - "Part2B": "chy", - "Part2T": "chy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cheyenne" - }, - { - "Id": "chz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ozumac\u00EDn Chinantec" - }, - { - "Id": "cia", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cia-Cia" - }, - { - "Id": "cib", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ci Gbe" - }, - { - "Id": "cic", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chickasaw" - }, - { - "Id": "cid", - "Scope": "I", - "LanguageType": "E", - "RefName": "Chimariko" - }, - { - "Id": "cie", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cineni" - }, - { - "Id": "cih", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chinali" - }, - { - "Id": "cik", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chitkuli Kinnauri" - }, - { - "Id": "cim", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cimbrian" - }, - { - "Id": "cin", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cinta Larga" - }, - { - "Id": "cip", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chiapanec" - }, - { - "Id": "cir", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tiri" - }, - { - "Id": "ciw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chippewa" - }, - { - "Id": "ciy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chaima" - }, - { - "Id": "cja", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Cham" - }, - { - "Id": "cje", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chru" - }, - { - "Id": "cjh", - "Scope": "I", - "LanguageType": "E", - "RefName": "Upper Chehalis" - }, - { - "Id": "cji", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chamalal" - }, - { - "Id": "cjk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chokwe" - }, - { - "Id": "cjm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Cham" - }, - { - "Id": "cjn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chenapian" - }, - { - "Id": "cjo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ash\u00E9ninka Pajonal" - }, - { - "Id": "cjp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cab\u00E9car" - }, - { - "Id": "cjs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Shor" - }, - { - "Id": "cjv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chuave" - }, - { - "Id": "cjy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jinyu Chinese" - }, - { - "Id": "ckb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Central Kurdish" - }, - { - "Id": "ckh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chak" - }, - { - "Id": "ckl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cibak" - }, - { - "Id": "ckm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chakavian" - }, - { - "Id": "ckn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kaang Chin" - }, - { - "Id": "cko", - "Scope": "I", - "LanguageType": "L", - "RefName": "Anufo" - }, - { - "Id": "ckq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kajakse" - }, - { - "Id": "ckr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kairak" - }, - { - "Id": "cks", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tayo" - }, - { - "Id": "ckt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chukot" - }, - { - "Id": "cku", - "Scope": "I", - "LanguageType": "L", - "RefName": "Koasati" - }, - { - "Id": "ckv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kavalan" - }, - { - "Id": "ckx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Caka" - }, - { - "Id": "cky", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cakfem-Mushere" - }, - { - "Id": "ckz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cakchiquel-Quich\u00E9 Mixed Language" - }, - { - "Id": "cla", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ron" - }, - { - "Id": "clc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chilcotin" - }, - { - "Id": "cld", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chaldean Neo-Aramaic" - }, - { - "Id": "cle", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lealao Chinantec" - }, - { - "Id": "clh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chilisso" - }, - { - "Id": "cli", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chakali" - }, - { - "Id": "clj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Laitu Chin" - }, - { - "Id": "clk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Idu-Mishmi" - }, - { - "Id": "cll", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chala" - }, - { - "Id": "clm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Klallam" - }, - { - "Id": "clo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lowland Oaxaca Chontal" - }, - { - "Id": "cls", - "Scope": "I", - "LanguageType": "H", - "RefName": "Classical Sanskrit" - }, - { - "Id": "clt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lautu Chin" - }, - { - "Id": "clu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Caluyanun" - }, - { - "Id": "clw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chulym" - }, - { - "Id": "cly", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Highland Chatino" - }, - { - "Id": "cma", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maa" - }, - { - "Id": "cme", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cerma" - }, - { - "Id": "cmg", - "Scope": "I", - "LanguageType": "H", - "RefName": "Classical Mongolian" - }, - { - "Id": "cmi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ember\u00E1-Cham\u00ED" - }, - { - "Id": "cml", - "Scope": "I", - "LanguageType": "L", - "RefName": "Campalagian" - }, - { - "Id": "cmm", - "Scope": "I", - "LanguageType": "E", - "RefName": "Michigamea" - }, - { - "Id": "cmn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mandarin Chinese" - }, - { - "Id": "cmo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Central Mnong" - }, - { - "Id": "cmr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mro-Khimi Chin" - }, - { - "Id": "cms", - "Scope": "I", - "LanguageType": "H", - "RefName": "Messapic" - }, - { - "Id": "cmt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Camtho" - }, - { - "Id": "cna", - "Scope": "I", - "LanguageType": "L", - "RefName": "Changthang" - }, - { - "Id": "cnb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chinbon Chin" - }, - { - "Id": "cnc", - "Scope": "I", - "LanguageType": "L", - "RefName": "C\u00F4\u00F4ng" - }, - { - "Id": "cng", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Qiang" - }, - { - "Id": "cnh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hakha Chin" - }, - { - "Id": "cni", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ash\u00E1ninka" - }, - { - "Id": "cnk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Khumi Chin" - }, - { - "Id": "cnl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lalana Chinantec" - }, - { - "Id": "cno", - "Scope": "I", - "LanguageType": "L", - "RefName": "Con" - }, - { - "Id": "cnp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Ping Chinese" - }, - { - "Id": "cnq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chung" - }, - { - "Id": "cnr", - "Part2B": "cnr", - "Part2T": "cnr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Montenegrin" - }, - { - "Id": "cns", - "Scope": "I", - "LanguageType": "L", - "RefName": "Central Asmat" - }, - { - "Id": "cnt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tepetotutla Chinantec" - }, - { - "Id": "cnu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chenoua" - }, - { - "Id": "cnw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngawn Chin" - }, - { - "Id": "cnx", - "Scope": "I", - "LanguageType": "H", - "RefName": "Middle Cornish" - }, - { - "Id": "coa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cocos Islands Malay" - }, - { - "Id": "cob", - "Scope": "I", - "LanguageType": "E", - "RefName": "Chicomuceltec" - }, - { - "Id": "coc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cocopa" - }, - { - "Id": "cod", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cocama-Cocamilla" - }, - { - "Id": "coe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Koreguaje" - }, - { - "Id": "cof", - "Scope": "I", - "LanguageType": "L", - "RefName": "Colorado" - }, - { - "Id": "cog", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chong" - }, - { - "Id": "coh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chonyi-Dzihana-Kauma" - }, - { - "Id": "coj", - "Scope": "I", - "LanguageType": "E", - "RefName": "Cochimi" - }, - { - "Id": "cok", - "Scope": "I", - "LanguageType": "L", - "RefName": "Santa Teresa Cora" - }, - { - "Id": "col", - "Scope": "I", - "LanguageType": "L", - "RefName": "Columbia-Wenatchi" - }, - { - "Id": "com", - "Scope": "I", - "LanguageType": "L", - "RefName": "Comanche" - }, - { - "Id": "con", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cof\u00E1n" - }, - { - "Id": "coo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Comox" - }, - { - "Id": "cop", - "Part2B": "cop", - "Part2T": "cop", - "Scope": "I", - "LanguageType": "E", - "RefName": "Coptic" - }, - { - "Id": "coq", - "Scope": "I", - "LanguageType": "E", - "RefName": "Coquille" - }, - { - "Id": "cor", - "Part2B": "cor", - "Part2T": "cor", - "Part1": "kw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cornish" - }, - { - "Id": "cos", - "Part2B": "cos", - "Part2T": "cos", - "Part1": "co", - "Scope": "I", - "LanguageType": "L", - "RefName": "Corsican" - }, - { - "Id": "cot", - "Scope": "I", - "LanguageType": "L", - "RefName": "Caquinte" - }, - { - "Id": "cou", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wamey" - }, - { - "Id": "cov", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cao Miao" - }, - { - "Id": "cow", - "Scope": "I", - "LanguageType": "E", - "RefName": "Cowlitz" - }, - { - "Id": "cox", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nanti" - }, - { - "Id": "coz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chochotec" - }, - { - "Id": "cpa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Palantla Chinantec" - }, - { - "Id": "cpb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ucayali-Yur\u00FAa Ash\u00E9ninka" - }, - { - "Id": "cpc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ajy\u00EDninka Apurucayali" - }, - { - "Id": "cpg", - "Scope": "I", - "LanguageType": "E", - "RefName": "Cappadocian Greek" - }, - { - "Id": "cpi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chinese Pidgin English" - }, - { - "Id": "cpn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cherepon" - }, - { - "Id": "cpo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kpeego" - }, - { - "Id": "cps", - "Scope": "I", - "LanguageType": "L", - "RefName": "Capiznon" - }, - { - "Id": "cpu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pichis Ash\u00E9ninka" - }, - { - "Id": "cpx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pu-Xian Chinese" - }, - { - "Id": "cpy", - "Scope": "I", - "LanguageType": "L", - "RefName": "South Ucayali Ash\u00E9ninka" - }, - { - "Id": "cqd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chuanqiandian Cluster Miao" - }, - { - "Id": "cra", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chara" - }, - { - "Id": "crb", - "Scope": "I", - "LanguageType": "E", - "RefName": "Island Carib" - }, - { - "Id": "crc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lonwolwol" - }, - { - "Id": "crd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Coeur d\u0027Alene" - }, - { - "Id": "cre", - "Part2B": "cre", - "Part2T": "cre", - "Part1": "cr", - "Scope": "M", - "LanguageType": "L", - "RefName": "Cree" - }, - { - "Id": "crf", - "Scope": "I", - "LanguageType": "E", - "RefName": "Caramanta" - }, - { - "Id": "crg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Michif" - }, - { - "Id": "crh", - "Part2B": "crh", - "Part2T": "crh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Crimean Tatar" - }, - { - "Id": "cri", - "Scope": "I", - "LanguageType": "L", - "RefName": "S\u00E3otomense" - }, - { - "Id": "crj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern East Cree" - }, - { - "Id": "crk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Plains Cree" - }, - { - "Id": "crl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern East Cree" - }, - { - "Id": "crm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Moose Cree" - }, - { - "Id": "crn", - "Scope": "I", - "LanguageType": "L", - "RefName": "El Nayar Cora" - }, - { - "Id": "cro", - "Scope": "I", - "LanguageType": "L", - "RefName": "Crow" - }, - { - "Id": "crq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Iyo\u0027wujwa Chorote" - }, - { - "Id": "crr", - "Scope": "I", - "LanguageType": "E", - "RefName": "Carolina Algonquian" - }, - { - "Id": "crs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Seselwa Creole French" - }, - { - "Id": "crt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Iyojwa\u0027ja Chorote" - }, - { - "Id": "crv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chaura" - }, - { - "Id": "crw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chrau" - }, - { - "Id": "crx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Carrier" - }, - { - "Id": "cry", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cori" - }, - { - "Id": "crz", - "Scope": "I", - "LanguageType": "E", - "RefName": "Cruze\u00F1o" - }, - { - "Id": "csa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chiltepec Chinantec" - }, - { - "Id": "csb", - "Part2B": "csb", - "Part2T": "csb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kashubian" - }, - { - "Id": "csc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Catalan Sign Language" - }, - { - "Id": "csd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chiangmai Sign Language" - }, - { - "Id": "cse", - "Scope": "I", - "LanguageType": "L", - "RefName": "Czech Sign Language" - }, - { - "Id": "csf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cuba Sign Language" - }, - { - "Id": "csg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chilean Sign Language" - }, - { - "Id": "csh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Asho Chin" - }, - { - "Id": "csi", - "Scope": "I", - "LanguageType": "E", - "RefName": "Coast Miwok" - }, - { - "Id": "csj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Songlai Chin" - }, - { - "Id": "csk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jola-Kasa" - }, - { - "Id": "csl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chinese Sign Language" - }, - { - "Id": "csm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Central Sierra Miwok" - }, - { - "Id": "csn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Colombian Sign Language" - }, - { - "Id": "cso", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sochiapam Chinantec" - }, - { - "Id": "csp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Ping Chinese" - }, - { - "Id": "csq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Croatia Sign Language" - }, - { - "Id": "csr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Costa Rican Sign Language" - }, - { - "Id": "css", - "Scope": "I", - "LanguageType": "E", - "RefName": "Southern Ohlone" - }, - { - "Id": "cst", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Ohlone" - }, - { - "Id": "csv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sumtu Chin" - }, - { - "Id": "csw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Swampy Cree" - }, - { - "Id": "csx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cambodian Sign Language" - }, - { - "Id": "csy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Siyin Chin" - }, - { - "Id": "csz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Coos" - }, - { - "Id": "cta", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tataltepec Chatino" - }, - { - "Id": "ctc", - "Scope": "I", - "LanguageType": "E", - "RefName": "Chetco" - }, - { - "Id": "ctd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tedim Chin" - }, - { - "Id": "cte", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tepinapa Chinantec" - }, - { - "Id": "ctg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chittagonian" - }, - { - "Id": "cth", - "Scope": "I", - "LanguageType": "L", - "RefName": "Thaiphum Chin" - }, - { - "Id": "ctl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tlacoatzintepec Chinantec" - }, - { - "Id": "ctm", - "Scope": "I", - "LanguageType": "E", - "RefName": "Chitimacha" - }, - { - "Id": "ctn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chhintange" - }, - { - "Id": "cto", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ember\u00E1-Cat\u00EDo" - }, - { - "Id": "ctp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Highland Chatino" - }, - { - "Id": "cts", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Catanduanes Bikol" - }, - { - "Id": "ctt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wayanad Chetti" - }, - { - "Id": "ctu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chol" - }, - { - "Id": "cty", - "Scope": "I", - "LanguageType": "L", - "RefName": "Moundadan Chetty" - }, - { - "Id": "ctz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zacatepec Chatino" - }, - { - "Id": "cua", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cua" - }, - { - "Id": "cub", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cubeo" - }, - { - "Id": "cuc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Usila Chinantec" - }, - { - "Id": "cuh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chuka" - }, - { - "Id": "cui", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cuiba" - }, - { - "Id": "cuj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mashco Piro" - }, - { - "Id": "cuk", - "Scope": "I", - "LanguageType": "L", - "RefName": "San Blas Kuna" - }, - { - "Id": "cul", - "Scope": "I", - "LanguageType": "L", - "RefName": "Culina" - }, - { - "Id": "cuo", - "Scope": "I", - "LanguageType": "E", - "RefName": "Cumanagoto" - }, - { - "Id": "cup", - "Scope": "I", - "LanguageType": "E", - "RefName": "Cupe\u00F1o" - }, - { - "Id": "cuq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cun" - }, - { - "Id": "cur", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chhulung" - }, - { - "Id": "cut", - "Scope": "I", - "LanguageType": "L", - "RefName": "Teutila Cuicatec" - }, - { - "Id": "cuu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tai Ya" - }, - { - "Id": "cuv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cuvok" - }, - { - "Id": "cuw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chukwa" - }, - { - "Id": "cux", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tepeuxila Cuicatec" - }, - { - "Id": "cuy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cuitlatec" - }, - { - "Id": "cvg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chug" - }, - { - "Id": "cvn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Valle Nacional Chinantec" - }, - { - "Id": "cwa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kabwa" - }, - { - "Id": "cwb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maindo" - }, - { - "Id": "cwd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Woods Cree" - }, - { - "Id": "cwe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kwere" - }, - { - "Id": "cwg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chewong" - }, - { - "Id": "cwt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kuwaataay" - }, - { - "Id": "cxh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cha\u0027ari" - }, - { - "Id": "cya", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nopala Chatino" - }, - { - "Id": "cyb", - "Scope": "I", - "LanguageType": "E", - "RefName": "Cayubaba" - }, - { - "Id": "cym", - "Part2B": "wel", - "Part2T": "cym", - "Part1": "cy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Welsh" - }, - { - "Id": "cyo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cuyonon" - }, - { - "Id": "czh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Huizhou Chinese" - }, - { - "Id": "czk", - "Scope": "I", - "LanguageType": "E", - "RefName": "Knaanic" - }, - { - "Id": "czn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zenzontepec Chatino" - }, - { - "Id": "czo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Min Zhong Chinese" - }, - { - "Id": "czt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zotung Chin" - }, - { - "Id": "daa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dangal\u00E9at" - }, - { - "Id": "dac", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dambi" - }, - { - "Id": "dad", - "Scope": "I", - "LanguageType": "L", - "RefName": "Marik" - }, - { - "Id": "dae", - "Scope": "I", - "LanguageType": "L", - "RefName": "Duupa" - }, - { - "Id": "dag", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dagbani" - }, - { - "Id": "dah", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gwahatike" - }, - { - "Id": "dai", - "Scope": "I", - "LanguageType": "L", - "RefName": "Day" - }, - { - "Id": "daj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dar Fur Daju" - }, - { - "Id": "dak", - "Part2B": "dak", - "Part2T": "dak", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dakota" - }, - { - "Id": "dal", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dahalo" - }, - { - "Id": "dam", - "Scope": "I", - "LanguageType": "L", - "RefName": "Damakawa" - }, - { - "Id": "dan", - "Part2B": "dan", - "Part2T": "dan", - "Part1": "da", - "Scope": "I", - "LanguageType": "L", - "RefName": "Danish" - }, - { - "Id": "dao", - "Scope": "I", - "LanguageType": "L", - "RefName": "Daai Chin" - }, - { - "Id": "daq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dandami Maria" - }, - { - "Id": "dar", - "Part2B": "dar", - "Part2T": "dar", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dargwa" - }, - { - "Id": "das", - "Scope": "I", - "LanguageType": "L", - "RefName": "Daho-Doo" - }, - { - "Id": "dau", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dar Sila Daju" - }, - { - "Id": "dav", - "Scope": "I", - "LanguageType": "L", - "RefName": "Taita" - }, - { - "Id": "daw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Davawenyo" - }, - { - "Id": "dax", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dayi" - }, - { - "Id": "daz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Moi-Wadea" - }, - { - "Id": "dba", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bangime" - }, - { - "Id": "dbb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Deno" - }, - { - "Id": "dbd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dadiya" - }, - { - "Id": "dbe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dabe" - }, - { - "Id": "dbf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Edopi" - }, - { - "Id": "dbg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dogul Dom Dogon" - }, - { - "Id": "dbi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Doka" - }, - { - "Id": "dbj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ida\u0027an" - }, - { - "Id": "dbl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dyirbal" - }, - { - "Id": "dbm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Duguri" - }, - { - "Id": "dbn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Duriankere" - }, - { - "Id": "dbo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dulbu" - }, - { - "Id": "dbp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Duwai" - }, - { - "Id": "dbq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Daba" - }, - { - "Id": "dbr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dabarre" - }, - { - "Id": "dbt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ben Tey Dogon" - }, - { - "Id": "dbu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bondum Dom Dogon" - }, - { - "Id": "dbv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dungu" - }, - { - "Id": "dbw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bankan Tey Dogon" - }, - { - "Id": "dby", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dibiyaso" - }, - { - "Id": "dcc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Deccan" - }, - { - "Id": "dcr", - "Scope": "I", - "LanguageType": "E", - "RefName": "Negerhollands" - }, - { - "Id": "dda", - "Scope": "I", - "LanguageType": "E", - "RefName": "Dadi Dadi" - }, - { - "Id": "ddd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dongotono" - }, - { - "Id": "dde", - "Scope": "I", - "LanguageType": "L", - "RefName": "Doondo" - }, - { - "Id": "ddg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Fataluku" - }, - { - "Id": "ddi", - "Scope": "I", - "LanguageType": "L", - "RefName": "West Goodenough" - }, - { - "Id": "ddj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jaru" - }, - { - "Id": "ddn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dendi (Benin)" - }, - { - "Id": "ddo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dido" - }, - { - "Id": "ddr", - "Scope": "I", - "LanguageType": "E", - "RefName": "Dhudhuroa" - }, - { - "Id": "dds", - "Scope": "I", - "LanguageType": "L", - "RefName": "Donno So Dogon" - }, - { - "Id": "ddw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dawera-Daweloor" - }, - { - "Id": "dec", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dagik" - }, - { - "Id": "ded", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dedua" - }, - { - "Id": "dee", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dewoin" - }, - { - "Id": "def", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dezfuli" - }, - { - "Id": "deg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Degema" - }, - { - "Id": "deh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dehwari" - }, - { - "Id": "dei", - "Scope": "I", - "LanguageType": "L", - "RefName": "Demisa" - }, - { - "Id": "del", - "Part2B": "del", - "Part2T": "del", - "Scope": "M", - "LanguageType": "L", - "RefName": "Delaware" - }, - { - "Id": "dem", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dem" - }, - { - "Id": "den", - "Part2B": "den", - "Part2T": "den", - "Scope": "M", - "LanguageType": "L", - "RefName": "Slavey" - }, - { - "Id": "dep", - "Scope": "I", - "LanguageType": "E", - "RefName": "Pidgin Delaware" - }, - { - "Id": "deq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dendi (Central African Republic)" - }, - { - "Id": "der", - "Scope": "I", - "LanguageType": "L", - "RefName": "Deori" - }, - { - "Id": "des", - "Scope": "I", - "LanguageType": "L", - "RefName": "Desano" - }, - { - "Id": "deu", - "Part2B": "ger", - "Part2T": "deu", - "Part1": "de", - "Scope": "I", - "LanguageType": "L", - "RefName": "German" - }, - { - "Id": "dev", - "Scope": "I", - "LanguageType": "L", - "RefName": "Domung" - }, - { - "Id": "dez", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dengese" - }, - { - "Id": "dga", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Dagaare" - }, - { - "Id": "dgb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bunoge Dogon" - }, - { - "Id": "dgc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Casiguran Dumagat Agta" - }, - { - "Id": "dgd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dagaari Dioula" - }, - { - "Id": "dge", - "Scope": "I", - "LanguageType": "L", - "RefName": "Degenan" - }, - { - "Id": "dgg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Doga" - }, - { - "Id": "dgh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dghwede" - }, - { - "Id": "dgi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Dagara" - }, - { - "Id": "dgk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dagba" - }, - { - "Id": "dgl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Andaandi" - }, - { - "Id": "dgn", - "Scope": "I", - "LanguageType": "E", - "RefName": "Dagoman" - }, - { - "Id": "dgo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dogri (individual language)" - }, - { - "Id": "dgr", - "Part2B": "dgr", - "Part2T": "dgr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tlicho" - }, - { - "Id": "dgs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dogoso" - }, - { - "Id": "dgt", - "Scope": "I", - "LanguageType": "E", - "RefName": "Ndra\u0027ngith" - }, - { - "Id": "dgw", - "Scope": "I", - "LanguageType": "E", - "RefName": "Daungwurrung" - }, - { - "Id": "dgx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Doghoro" - }, - { - "Id": "dgz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Daga" - }, - { - "Id": "dhd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dhundari" - }, - { - "Id": "dhg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dhangu-Djangu" - }, - { - "Id": "dhi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dhimal" - }, - { - "Id": "dhl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dhalandji" - }, - { - "Id": "dhm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zemba" - }, - { - "Id": "dhn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dhanki" - }, - { - "Id": "dho", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dhodia" - }, - { - "Id": "dhr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dhargari" - }, - { - "Id": "dhs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dhaiso" - }, - { - "Id": "dhu", - "Scope": "I", - "LanguageType": "E", - "RefName": "Dhurga" - }, - { - "Id": "dhv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dehu" - }, - { - "Id": "dhw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dhanwar (Nepal)" - }, - { - "Id": "dhx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dhungaloo" - }, - { - "Id": "dia", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dia" - }, - { - "Id": "dib", - "Scope": "I", - "LanguageType": "L", - "RefName": "South Central Dinka" - }, - { - "Id": "dic", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lakota Dida" - }, - { - "Id": "did", - "Scope": "I", - "LanguageType": "L", - "RefName": "Didinga" - }, - { - "Id": "dif", - "Scope": "I", - "LanguageType": "E", - "RefName": "Dieri" - }, - { - "Id": "dig", - "Scope": "I", - "LanguageType": "L", - "RefName": "Digo" - }, - { - "Id": "dih", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kumiai" - }, - { - "Id": "dii", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dimbong" - }, - { - "Id": "dij", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dai" - }, - { - "Id": "dik", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southwestern Dinka" - }, - { - "Id": "dil", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dilling" - }, - { - "Id": "dim", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dime" - }, - { - "Id": "din", - "Part2B": "din", - "Part2T": "din", - "Scope": "M", - "LanguageType": "L", - "RefName": "Dinka" - }, - { - "Id": "dio", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dibo" - }, - { - "Id": "dip", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northeastern Dinka" - }, - { - "Id": "diq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dimli (individual language)" - }, - { - "Id": "dir", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dirim" - }, - { - "Id": "dis", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dimasa" - }, - { - "Id": "diu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Diriku" - }, - { - "Id": "div", - "Part2B": "div", - "Part2T": "div", - "Part1": "dv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dhivehi" - }, - { - "Id": "diw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northwestern Dinka" - }, - { - "Id": "dix", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dixon Reef" - }, - { - "Id": "diy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Diuwe" - }, - { - "Id": "diz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ding" - }, - { - "Id": "dja", - "Scope": "I", - "LanguageType": "E", - "RefName": "Djadjawurrung" - }, - { - "Id": "djb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Djinba" - }, - { - "Id": "djc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dar Daju Daju" - }, - { - "Id": "djd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Djamindjung" - }, - { - "Id": "dje", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zarma" - }, - { - "Id": "djf", - "Scope": "I", - "LanguageType": "E", - "RefName": "Djangun" - }, - { - "Id": "dji", - "Scope": "I", - "LanguageType": "L", - "RefName": "Djinang" - }, - { - "Id": "djj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Djeebbana" - }, - { - "Id": "djk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Maroon Creole" - }, - { - "Id": "djm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jamsay Dogon" - }, - { - "Id": "djn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jawoyn" - }, - { - "Id": "djo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jangkang" - }, - { - "Id": "djr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Djambarrpuyngu" - }, - { - "Id": "dju", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kapriman" - }, - { - "Id": "djw", - "Scope": "I", - "LanguageType": "E", - "RefName": "Djawi" - }, - { - "Id": "dka", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dakpakha" - }, - { - "Id": "dkg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kadung" - }, - { - "Id": "dkk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dakka" - }, - { - "Id": "dkr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kuijau" - }, - { - "Id": "dks", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southeastern Dinka" - }, - { - "Id": "dkx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mazagway" - }, - { - "Id": "dlg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dolgan" - }, - { - "Id": "dlk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dahalik" - }, - { - "Id": "dlm", - "Scope": "I", - "LanguageType": "E", - "RefName": "Dalmatian" - }, - { - "Id": "dln", - "Scope": "I", - "LanguageType": "L", - "RefName": "Darlong" - }, - { - "Id": "dma", - "Scope": "I", - "LanguageType": "L", - "RefName": "Duma" - }, - { - "Id": "dmb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mombo Dogon" - }, - { - "Id": "dmc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gavak" - }, - { - "Id": "dmd", - "Scope": "I", - "LanguageType": "E", - "RefName": "Madhi Madhi" - }, - { - "Id": "dme", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dugwor" - }, - { - "Id": "dmf", - "Scope": "I", - "LanguageType": "E", - "RefName": "Medefaidrin" - }, - { - "Id": "dmg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Upper Kinabatangan" - }, - { - "Id": "dmk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Domaaki" - }, - { - "Id": "dml", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dameli" - }, - { - "Id": "dmm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dama" - }, - { - "Id": "dmo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kemedzung" - }, - { - "Id": "dmr", - "Scope": "I", - "LanguageType": "L", - "RefName": "East Damar" - }, - { - "Id": "dms", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dampelas" - }, - { - "Id": "dmu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dubu" - }, - { - "Id": "dmv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dumpas" - }, - { - "Id": "dmw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mudburra" - }, - { - "Id": "dmx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dema" - }, - { - "Id": "dmy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Demta" - }, - { - "Id": "dna", - "Scope": "I", - "LanguageType": "L", - "RefName": "Upper Grand Valley Dani" - }, - { - "Id": "dnd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Daonda" - }, - { - "Id": "dne", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ndendeule" - }, - { - "Id": "dng", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dungan" - }, - { - "Id": "dni", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lower Grand Valley Dani" - }, - { - "Id": "dnj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dan" - }, - { - "Id": "dnk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dengka" - }, - { - "Id": "dnn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dz\u00F9\u00F9ngoo" - }, - { - "Id": "dno", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ndrulo" - }, - { - "Id": "dnr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Danaru" - }, - { - "Id": "dnt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mid Grand Valley Dani" - }, - { - "Id": "dnu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Danau" - }, - { - "Id": "dnv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Danu" - }, - { - "Id": "dnw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Dani" - }, - { - "Id": "dny", - "Scope": "I", - "LanguageType": "L", - "RefName": "Den\u00ED" - }, - { - "Id": "doa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dom" - }, - { - "Id": "dob", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dobu" - }, - { - "Id": "doc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Dong" - }, - { - "Id": "doe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Doe" - }, - { - "Id": "dof", - "Scope": "I", - "LanguageType": "L", - "RefName": "Domu" - }, - { - "Id": "doh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dong" - }, - { - "Id": "doi", - "Part2B": "doi", - "Part2T": "doi", - "Scope": "M", - "LanguageType": "L", - "RefName": "Dogri (macrolanguage)" - }, - { - "Id": "dok", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dondo" - }, - { - "Id": "dol", - "Scope": "I", - "LanguageType": "L", - "RefName": "Doso" - }, - { - "Id": "don", - "Scope": "I", - "LanguageType": "L", - "RefName": "Toura (Papua New Guinea)" - }, - { - "Id": "doo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dongo" - }, - { - "Id": "dop", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lukpa" - }, - { - "Id": "doq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dominican Sign Language" - }, - { - "Id": "dor", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dori\u0027o" - }, - { - "Id": "dos", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dogos\u00E9" - }, - { - "Id": "dot", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dass" - }, - { - "Id": "dov", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dombe" - }, - { - "Id": "dow", - "Scope": "I", - "LanguageType": "L", - "RefName": "Doyayo" - }, - { - "Id": "dox", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bussa" - }, - { - "Id": "doy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dompo" - }, - { - "Id": "doz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dorze" - }, - { - "Id": "dpp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Papar" - }, - { - "Id": "drb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dair" - }, - { - "Id": "drc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Minderico" - }, - { - "Id": "drd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Darmiya" - }, - { - "Id": "dre", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dolpo" - }, - { - "Id": "drg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rungus" - }, - { - "Id": "dri", - "Scope": "I", - "LanguageType": "L", - "RefName": "C\u0027Lela" - }, - { - "Id": "drl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Paakantyi" - }, - { - "Id": "drn", - "Scope": "I", - "LanguageType": "L", - "RefName": "West Damar" - }, - { - "Id": "dro", - "Scope": "I", - "LanguageType": "L", - "RefName": "Daro-Matu Melanau" - }, - { - "Id": "drq", - "Scope": "I", - "LanguageType": "E", - "RefName": "Dura" - }, - { - "Id": "drs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gedeo" - }, - { - "Id": "drt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Drents" - }, - { - "Id": "dru", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rukai" - }, - { - "Id": "dry", - "Scope": "I", - "LanguageType": "L", - "RefName": "Darai" - }, - { - "Id": "dsb", - "Part2B": "dsb", - "Part2T": "dsb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lower Sorbian" - }, - { - "Id": "dse", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dutch Sign Language" - }, - { - "Id": "dsh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Daasanach" - }, - { - "Id": "dsi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Disa" - }, - { - "Id": "dsk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dokshi" - }, - { - "Id": "dsl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Danish Sign Language" - }, - { - "Id": "dsn", - "Scope": "I", - "LanguageType": "E", - "RefName": "Dusner" - }, - { - "Id": "dso", - "Scope": "I", - "LanguageType": "L", - "RefName": "Desiya" - }, - { - "Id": "dsq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tadaksahak" - }, - { - "Id": "dsz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mardin Sign Language" - }, - { - "Id": "dta", - "Scope": "I", - "LanguageType": "L", - "RefName": "Daur" - }, - { - "Id": "dtb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Labuk-Kinabatangan Kadazan" - }, - { - "Id": "dtd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ditidaht" - }, - { - "Id": "dth", - "Scope": "I", - "LanguageType": "E", - "RefName": "Adithinngithigh" - }, - { - "Id": "dti", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ana Tinga Dogon" - }, - { - "Id": "dtk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tene Kan Dogon" - }, - { - "Id": "dtm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tomo Kan Dogon" - }, - { - "Id": "dtn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Daats\u02BCi\u0301in" - }, - { - "Id": "dto", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tommo So Dogon" - }, - { - "Id": "dtp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kadazan Dusun" - }, - { - "Id": "dtr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lotud" - }, - { - "Id": "dts", - "Scope": "I", - "LanguageType": "L", - "RefName": "Toro So Dogon" - }, - { - "Id": "dtt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Toro Tegu Dogon" - }, - { - "Id": "dtu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tebul Ure Dogon" - }, - { - "Id": "dty", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dotyali" - }, - { - "Id": "dua", - "Part2B": "dua", - "Part2T": "dua", - "Scope": "I", - "LanguageType": "L", - "RefName": "Duala" - }, - { - "Id": "dub", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dubli" - }, - { - "Id": "duc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Duna" - }, - { - "Id": "due", - "Scope": "I", - "LanguageType": "L", - "RefName": "Umiray Dumaget Agta" - }, - { - "Id": "duf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dumbea" - }, - { - "Id": "dug", - "Scope": "I", - "LanguageType": "L", - "RefName": "Duruma" - }, - { - "Id": "duh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dungra Bhil" - }, - { - "Id": "dui", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dumun" - }, - { - "Id": "duk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Uyajitaya" - }, - { - "Id": "dul", - "Scope": "I", - "LanguageType": "L", - "RefName": "Alabat Island Agta" - }, - { - "Id": "dum", - "Part2B": "dum", - "Part2T": "dum", - "Scope": "I", - "LanguageType": "H", - "RefName": "Middle Dutch (ca. 1050-1350)" - }, - { - "Id": "dun", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dusun Deyah" - }, - { - "Id": "duo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dupaninan Agta" - }, - { - "Id": "dup", - "Scope": "I", - "LanguageType": "L", - "RefName": "Duano" - }, - { - "Id": "duq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dusun Malang" - }, - { - "Id": "dur", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dii" - }, - { - "Id": "dus", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dumi" - }, - { - "Id": "duu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Drung" - }, - { - "Id": "duv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Duvle" - }, - { - "Id": "duw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dusun Witu" - }, - { - "Id": "dux", - "Scope": "I", - "LanguageType": "L", - "RefName": "Duungooma" - }, - { - "Id": "duy", - "Scope": "I", - "LanguageType": "E", - "RefName": "Dicamay Agta" - }, - { - "Id": "duz", - "Scope": "I", - "LanguageType": "E", - "RefName": "Duli-Gey" - }, - { - "Id": "dva", - "Scope": "I", - "LanguageType": "L", - "RefName": "Duau" - }, - { - "Id": "dwa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Diri" - }, - { - "Id": "dwk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dawik Kui" - }, - { - "Id": "dwr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dawro" - }, - { - "Id": "dws", - "Scope": "I", - "LanguageType": "C", - "RefName": "Dutton World Speedwords" - }, - { - "Id": "dwu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dhuwal" - }, - { - "Id": "dww", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dawawa" - }, - { - "Id": "dwy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dhuwaya" - }, - { - "Id": "dwz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dewas Rai" - }, - { - "Id": "dya", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dyan" - }, - { - "Id": "dyb", - "Scope": "I", - "LanguageType": "E", - "RefName": "Dyaberdyaber" - }, - { - "Id": "dyd", - "Scope": "I", - "LanguageType": "E", - "RefName": "Dyugun" - }, - { - "Id": "dyg", - "Scope": "I", - "LanguageType": "E", - "RefName": "Villa Viciosa Agta" - }, - { - "Id": "dyi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Djimini Senoufo" - }, - { - "Id": "dyl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bhutanese Sign Language" - }, - { - "Id": "dym", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yanda Dom Dogon" - }, - { - "Id": "dyn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dyangadi" - }, - { - "Id": "dyo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jola-Fonyi" - }, - { - "Id": "dyr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dyarim" - }, - { - "Id": "dyu", - "Part2B": "dyu", - "Part2T": "dyu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dyula" - }, - { - "Id": "dyy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Djabugay" - }, - { - "Id": "dza", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tunzu" - }, - { - "Id": "dzd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Daza" - }, - { - "Id": "dze", - "Scope": "I", - "LanguageType": "E", - "RefName": "Djiwarli" - }, - { - "Id": "dzg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dazaga" - }, - { - "Id": "dzl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dzalakha" - }, - { - "Id": "dzn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dzando" - }, - { - "Id": "dzo", - "Part2B": "dzo", - "Part2T": "dzo", - "Part1": "dz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dzongkha" - }, - { - "Id": "eaa", - "Scope": "I", - "LanguageType": "E", - "RefName": "Karenggapa" - }, - { - "Id": "ebc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Beginci" - }, - { - "Id": "ebg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ebughu" - }, - { - "Id": "ebk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Bontok" - }, - { - "Id": "ebo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Teke-Ebo" - }, - { - "Id": "ebr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ebri\u00E9" - }, - { - "Id": "ebu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Embu" - }, - { - "Id": "ecr", - "Scope": "I", - "LanguageType": "H", - "RefName": "Eteocretan" - }, - { - "Id": "ecs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ecuadorian Sign Language" - }, - { - "Id": "ecy", - "Scope": "I", - "LanguageType": "H", - "RefName": "Eteocypriot" - }, - { - "Id": "eee", - "Scope": "I", - "LanguageType": "L", - "RefName": "E" - }, - { - "Id": "efa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Efai" - }, - { - "Id": "efe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Efe" - }, - { - "Id": "efi", - "Part2B": "efi", - "Part2T": "efi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Efik" - }, - { - "Id": "ega", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ega" - }, - { - "Id": "egl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Emilian" - }, - { - "Id": "egm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Benamanga" - }, - { - "Id": "ego", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eggon" - }, - { - "Id": "egy", - "Part2B": "egy", - "Part2T": "egy", - "Scope": "I", - "LanguageType": "H", - "RefName": "Egyptian (Ancient)" - }, - { - "Id": "ehs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Miyakubo Sign Language" - }, - { - "Id": "ehu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ehueun" - }, - { - "Id": "eip", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eipomek" - }, - { - "Id": "eit", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eitiep" - }, - { - "Id": "eiv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Askopan" - }, - { - "Id": "eja", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ejamat" - }, - { - "Id": "eka", - "Part2B": "eka", - "Part2T": "eka", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ekajuk" - }, - { - "Id": "eke", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ekit" - }, - { - "Id": "ekg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ekari" - }, - { - "Id": "eki", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eki" - }, - { - "Id": "ekk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Standard Estonian" - }, - { - "Id": "ekl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kol (Bangladesh)" - }, - { - "Id": "ekm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Elip" - }, - { - "Id": "eko", - "Scope": "I", - "LanguageType": "L", - "RefName": "Koti" - }, - { - "Id": "ekp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ekpeye" - }, - { - "Id": "ekr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yace" - }, - { - "Id": "eky", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Kayah" - }, - { - "Id": "ele", - "Scope": "I", - "LanguageType": "L", - "RefName": "Elepi" - }, - { - "Id": "elh", - "Scope": "I", - "LanguageType": "L", - "RefName": "El Hugeirat" - }, - { - "Id": "eli", - "Scope": "I", - "LanguageType": "E", - "RefName": "Nding" - }, - { - "Id": "elk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Elkei" - }, - { - "Id": "ell", - "Part2B": "gre", - "Part2T": "ell", - "Part1": "el", - "Scope": "I", - "LanguageType": "L", - "RefName": "Modern Greek (1453-)" - }, - { - "Id": "elm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eleme" - }, - { - "Id": "elo", - "Scope": "I", - "LanguageType": "L", - "RefName": "El Molo" - }, - { - "Id": "elu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Elu" - }, - { - "Id": "elx", - "Part2B": "elx", - "Part2T": "elx", - "Scope": "I", - "LanguageType": "H", - "RefName": "Elamite" - }, - { - "Id": "ema", - "Scope": "I", - "LanguageType": "L", - "RefName": "Emai-Iuleha-Ora" - }, - { - "Id": "emb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Embaloh" - }, - { - "Id": "eme", - "Scope": "I", - "LanguageType": "L", - "RefName": "Emerillon" - }, - { - "Id": "emg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Meohang" - }, - { - "Id": "emi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mussau-Emira" - }, - { - "Id": "emk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Maninkakan" - }, - { - "Id": "emm", - "Scope": "I", - "LanguageType": "E", - "RefName": "Mamulique" - }, - { - "Id": "emn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eman" - }, - { - "Id": "emp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Ember\u00E1" - }, - { - "Id": "emq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Minyag" - }, - { - "Id": "ems", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pacific Gulf Yupik" - }, - { - "Id": "emu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Muria" - }, - { - "Id": "emw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Emplawas" - }, - { - "Id": "emx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Erromintxela" - }, - { - "Id": "emy", - "Scope": "I", - "LanguageType": "H", - "RefName": "Epigraphic Mayan" - }, - { - "Id": "emz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mbessa" - }, - { - "Id": "ena", - "Scope": "I", - "LanguageType": "L", - "RefName": "Apali" - }, - { - "Id": "enb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Markweeta" - }, - { - "Id": "enc", - "Scope": "I", - "LanguageType": "L", - "RefName": "En" - }, - { - "Id": "end", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ende" - }, - { - "Id": "enf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Forest Enets" - }, - { - "Id": "eng", - "Part2B": "eng", - "Part2T": "eng", - "Part1": "en", - "Scope": "I", - "LanguageType": "L", - "RefName": "English" - }, - { - "Id": "enh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tundra Enets" - }, - { - "Id": "enl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Enlhet" - }, - { - "Id": "enm", - "Part2B": "enm", - "Part2T": "enm", - "Scope": "I", - "LanguageType": "H", - "RefName": "Middle English (1100-1500)" - }, - { - "Id": "enn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Engenni" - }, - { - "Id": "eno", - "Scope": "I", - "LanguageType": "L", - "RefName": "Enggano" - }, - { - "Id": "enq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Enga" - }, - { - "Id": "enr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Emumu" - }, - { - "Id": "enu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Enu" - }, - { - "Id": "env", - "Scope": "I", - "LanguageType": "L", - "RefName": "Enwan (Edo State)" - }, - { - "Id": "enw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Enwan (Akwa Ibom State)" - }, - { - "Id": "enx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Enxet" - }, - { - "Id": "eot", - "Scope": "I", - "LanguageType": "L", - "RefName": "Beti (C\u00F4te d\u0027Ivoire)" - }, - { - "Id": "epi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Epie" - }, - { - "Id": "epo", - "Part2B": "epo", - "Part2T": "epo", - "Part1": "eo", - "Scope": "I", - "LanguageType": "C", - "RefName": "Esperanto" - }, - { - "Id": "era", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eravallan" - }, - { - "Id": "erg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sie" - }, - { - "Id": "erh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eruwa" - }, - { - "Id": "eri", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ogea" - }, - { - "Id": "erk", - "Scope": "I", - "LanguageType": "L", - "RefName": "South Efate" - }, - { - "Id": "ero", - "Scope": "I", - "LanguageType": "L", - "RefName": "Horpa" - }, - { - "Id": "err", - "Scope": "I", - "LanguageType": "E", - "RefName": "Erre" - }, - { - "Id": "ers", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ersu" - }, - { - "Id": "ert", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eritai" - }, - { - "Id": "erw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Erokwanas" - }, - { - "Id": "ese", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ese Ejja" - }, - { - "Id": "esg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aheri Gondi" - }, - { - "Id": "esh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eshtehardi" - }, - { - "Id": "esi", - "Scope": "I", - "LanguageType": "L", - "RefName": "North Alaskan Inupiatun" - }, - { - "Id": "esk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northwest Alaska Inupiatun" - }, - { - "Id": "esl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Egypt Sign Language" - }, - { - "Id": "esm", - "Scope": "I", - "LanguageType": "E", - "RefName": "Esuma" - }, - { - "Id": "esn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Salvadoran Sign Language" - }, - { - "Id": "eso", - "Scope": "I", - "LanguageType": "L", - "RefName": "Estonian Sign Language" - }, - { - "Id": "esq", - "Scope": "I", - "LanguageType": "E", - "RefName": "Esselen" - }, - { - "Id": "ess", - "Scope": "I", - "LanguageType": "L", - "RefName": "Central Siberian Yupik" - }, - { - "Id": "est", - "Part2B": "est", - "Part2T": "est", - "Part1": "et", - "Scope": "M", - "LanguageType": "L", - "RefName": "Estonian" - }, - { - "Id": "esu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Central Yupik" - }, - { - "Id": "esy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eskayan" - }, - { - "Id": "etb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Etebi" - }, - { - "Id": "etc", - "Scope": "I", - "LanguageType": "E", - "RefName": "Etchemin" - }, - { - "Id": "eth", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ethiopian Sign Language" - }, - { - "Id": "etn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eton (Vanuatu)" - }, - { - "Id": "eto", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eton (Cameroon)" - }, - { - "Id": "etr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Edolo" - }, - { - "Id": "ets", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yekhee" - }, - { - "Id": "ett", - "Scope": "I", - "LanguageType": "H", - "RefName": "Etruscan" - }, - { - "Id": "etu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ejagham" - }, - { - "Id": "etx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eten" - }, - { - "Id": "etz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Semimi" - }, - { - "Id": "eud", - "Scope": "I", - "LanguageType": "E", - "RefName": "Eudeve" - }, - { - "Id": "eus", - "Part2B": "baq", - "Part2T": "eus", - "Part1": "eu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Basque" - }, - { - "Id": "eve", - "Scope": "I", - "LanguageType": "L", - "RefName": "Even" - }, - { - "Id": "evh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Uvbie" - }, - { - "Id": "evn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Evenki" - }, - { - "Id": "ewe", - "Part2B": "ewe", - "Part2T": "ewe", - "Part1": "ee", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ewe" - }, - { - "Id": "ewo", - "Part2B": "ewo", - "Part2T": "ewo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ewondo" - }, - { - "Id": "ext", - "Scope": "I", - "LanguageType": "L", - "RefName": "Extremaduran" - }, - { - "Id": "eya", - "Scope": "I", - "LanguageType": "E", - "RefName": "Eyak" - }, - { - "Id": "eyo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Keiyo" - }, - { - "Id": "eza", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ezaa" - }, - { - "Id": "eze", - "Scope": "I", - "LanguageType": "L", - "RefName": "Uzekwe" - }, - { - "Id": "faa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Fasu" - }, - { - "Id": "fab", - "Scope": "I", - "LanguageType": "L", - "RefName": "Fa d\u0027Ambu" - }, - { - "Id": "fad", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wagi" - }, - { - "Id": "faf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Fagani" - }, - { - "Id": "fag", - "Scope": "I", - "LanguageType": "L", - "RefName": "Finongan" - }, - { - "Id": "fah", - "Scope": "I", - "LanguageType": "L", - "RefName": "Baissa Fali" - }, - { - "Id": "fai", - "Scope": "I", - "LanguageType": "L", - "RefName": "Faiwol" - }, - { - "Id": "faj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Faita" - }, - { - "Id": "fak", - "Scope": "I", - "LanguageType": "L", - "RefName": "Fang (Cameroon)" - }, - { - "Id": "fal", - "Scope": "I", - "LanguageType": "L", - "RefName": "South Fali" - }, - { - "Id": "fam", - "Scope": "I", - "LanguageType": "L", - "RefName": "Fam" - }, - { - "Id": "fan", - "Part2B": "fan", - "Part2T": "fan", - "Scope": "I", - "LanguageType": "L", - "RefName": "Fang (Equatorial Guinea)" - }, - { - "Id": "fao", - "Part2B": "fao", - "Part2T": "fao", - "Part1": "fo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Faroese" - }, - { - "Id": "fap", - "Scope": "I", - "LanguageType": "L", - "RefName": "Paloor" - }, - { - "Id": "far", - "Scope": "I", - "LanguageType": "L", - "RefName": "Fataleka" - }, - { - "Id": "fas", - "Part2B": "per", - "Part2T": "fas", - "Part1": "fa", - "Scope": "M", - "LanguageType": "L", - "RefName": "Persian" - }, - { - "Id": "fat", - "Part2B": "fat", - "Part2T": "fat", - "Scope": "I", - "LanguageType": "L", - "RefName": "Fanti" - }, - { - "Id": "fau", - "Scope": "I", - "LanguageType": "L", - "RefName": "Fayu" - }, - { - "Id": "fax", - "Scope": "I", - "LanguageType": "L", - "RefName": "Fala" - }, - { - "Id": "fay", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southwestern Fars" - }, - { - "Id": "faz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northwestern Fars" - }, - { - "Id": "fbl", - "Scope": "I", - "LanguageType": "L", - "RefName": "West Albay Bikol" - }, - { - "Id": "fcs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Quebec Sign Language" - }, - { - "Id": "fer", - "Scope": "I", - "LanguageType": "L", - "RefName": "Feroge" - }, - { - "Id": "ffi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Foia Foia" - }, - { - "Id": "ffm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maasina Fulfulde" - }, - { - "Id": "fgr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Fongoro" - }, - { - "Id": "fia", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nobiin" - }, - { - "Id": "fie", - "Scope": "I", - "LanguageType": "L", - "RefName": "Fyer" - }, - { - "Id": "fif", - "Scope": "I", - "LanguageType": "L", - "RefName": "Faifi" - }, - { - "Id": "fij", - "Part2B": "fij", - "Part2T": "fij", - "Part1": "fj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Fijian" - }, - { - "Id": "fil", - "Part2B": "fil", - "Part2T": "fil", - "Scope": "I", - "LanguageType": "L", - "RefName": "Filipino" - }, - { - "Id": "fin", - "Part2B": "fin", - "Part2T": "fin", - "Part1": "fi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Finnish" - }, - { - "Id": "fip", - "Scope": "I", - "LanguageType": "L", - "RefName": "Fipa" - }, - { - "Id": "fir", - "Scope": "I", - "LanguageType": "L", - "RefName": "Firan" - }, - { - "Id": "fit", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tornedalen Finnish" - }, - { - "Id": "fiw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Fiwaga" - }, - { - "Id": "fkk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kirya-Konz\u0259l" - }, - { - "Id": "fkv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kven Finnish" - }, - { - "Id": "fla", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kalispel-Pend d\u0027Oreille" - }, - { - "Id": "flh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Foau" - }, - { - "Id": "fli", - "Scope": "I", - "LanguageType": "L", - "RefName": "Fali" - }, - { - "Id": "fll", - "Scope": "I", - "LanguageType": "L", - "RefName": "North Fali" - }, - { - "Id": "fln", - "Scope": "I", - "LanguageType": "E", - "RefName": "Flinders Island" - }, - { - "Id": "flr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Fuliiru" - }, - { - "Id": "fly", - "Scope": "I", - "LanguageType": "L", - "RefName": "Flaaitaal" - }, - { - "Id": "fmp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Fe\u0027fe\u0027" - }, - { - "Id": "fmu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Far Western Muria" - }, - { - "Id": "fnb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Fanbak" - }, - { - "Id": "fng", - "Scope": "I", - "LanguageType": "L", - "RefName": "Fanagalo" - }, - { - "Id": "fni", - "Scope": "I", - "LanguageType": "L", - "RefName": "Fania" - }, - { - "Id": "fod", - "Scope": "I", - "LanguageType": "L", - "RefName": "Foodo" - }, - { - "Id": "foi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Foi" - }, - { - "Id": "fom", - "Scope": "I", - "LanguageType": "L", - "RefName": "Foma" - }, - { - "Id": "fon", - "Part2B": "fon", - "Part2T": "fon", - "Scope": "I", - "LanguageType": "L", - "RefName": "Fon" - }, - { - "Id": "for", - "Scope": "I", - "LanguageType": "L", - "RefName": "Fore" - }, - { - "Id": "fos", - "Scope": "I", - "LanguageType": "E", - "RefName": "Siraya" - }, - { - "Id": "fpe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Fernando Po Creole English" - }, - { - "Id": "fqs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Fas" - }, - { - "Id": "fra", - "Part2B": "fre", - "Part2T": "fra", - "Part1": "fr", - "Scope": "I", - "LanguageType": "L", - "RefName": "French" - }, - { - "Id": "frc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cajun French" - }, - { - "Id": "frd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Fordata" - }, - { - "Id": "frk", - "Scope": "I", - "LanguageType": "H", - "RefName": "Frankish" - }, - { - "Id": "frm", - "Part2B": "frm", - "Part2T": "frm", - "Scope": "I", - "LanguageType": "H", - "RefName": "Middle French (ca. 1400-1600)" - }, - { - "Id": "fro", - "Part2B": "fro", - "Part2T": "fro", - "Scope": "I", - "LanguageType": "H", - "RefName": "Old French (842-ca. 1400)" - }, - { - "Id": "frp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Arpitan" - }, - { - "Id": "frq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Forak" - }, - { - "Id": "frr", - "Part2B": "frr", - "Part2T": "frr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Frisian" - }, - { - "Id": "frs", - "Part2B": "frs", - "Part2T": "frs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Frisian" - }, - { - "Id": "frt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Fortsenal" - }, - { - "Id": "fry", - "Part2B": "fry", - "Part2T": "fry", - "Part1": "fy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Frisian" - }, - { - "Id": "fse", - "Scope": "I", - "LanguageType": "L", - "RefName": "Finnish Sign Language" - }, - { - "Id": "fsl", - "Scope": "I", - "LanguageType": "L", - "RefName": "French Sign Language" - }, - { - "Id": "fss", - "Scope": "I", - "LanguageType": "L", - "RefName": "Finland-Swedish Sign Language" - }, - { - "Id": "fub", - "Scope": "I", - "LanguageType": "L", - "RefName": "Adamawa Fulfulde" - }, - { - "Id": "fuc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pulaar" - }, - { - "Id": "fud", - "Scope": "I", - "LanguageType": "L", - "RefName": "East Futuna" - }, - { - "Id": "fue", - "Scope": "I", - "LanguageType": "L", - "RefName": "Borgu Fulfulde" - }, - { - "Id": "fuf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pular" - }, - { - "Id": "fuh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Niger Fulfulde" - }, - { - "Id": "fui", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bagirmi Fulfulde" - }, - { - "Id": "fuj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ko" - }, - { - "Id": "ful", - "Part2B": "ful", - "Part2T": "ful", - "Part1": "ff", - "Scope": "M", - "LanguageType": "L", - "RefName": "Fulah" - }, - { - "Id": "fum", - "Scope": "I", - "LanguageType": "L", - "RefName": "Fum" - }, - { - "Id": "fun", - "Scope": "I", - "LanguageType": "L", - "RefName": "Fulni\u00F4" - }, - { - "Id": "fuq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Central-Eastern Niger Fulfulde" - }, - { - "Id": "fur", - "Part2B": "fur", - "Part2T": "fur", - "Scope": "I", - "LanguageType": "L", - "RefName": "Friulian" - }, - { - "Id": "fut", - "Scope": "I", - "LanguageType": "L", - "RefName": "Futuna-Aniwa" - }, - { - "Id": "fuu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Furu" - }, - { - "Id": "fuv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nigerian Fulfulde" - }, - { - "Id": "fuy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Fuyug" - }, - { - "Id": "fvr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Fur" - }, - { - "Id": "fwa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Fw\u00E2i" - }, - { - "Id": "fwe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Fwe" - }, - { - "Id": "gaa", - "Part2B": "gaa", - "Part2T": "gaa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ga" - }, - { - "Id": "gab", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gabri" - }, - { - "Id": "gac", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mixed Great Andamanese" - }, - { - "Id": "gad", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gaddang" - }, - { - "Id": "gae", - "Scope": "I", - "LanguageType": "L", - "RefName": "Guarequena" - }, - { - "Id": "gaf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gende" - }, - { - "Id": "gag", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gagauz" - }, - { - "Id": "gah", - "Scope": "I", - "LanguageType": "L", - "RefName": "Alekano" - }, - { - "Id": "gai", - "Scope": "I", - "LanguageType": "L", - "RefName": "Borei" - }, - { - "Id": "gaj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gadsup" - }, - { - "Id": "gak", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gamkonora" - }, - { - "Id": "gal", - "Scope": "I", - "LanguageType": "L", - "RefName": "Galolen" - }, - { - "Id": "gam", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kandawo" - }, - { - "Id": "gan", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gan Chinese" - }, - { - "Id": "gao", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gants" - }, - { - "Id": "gap", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gal" - }, - { - "Id": "gaq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gata\u0027" - }, - { - "Id": "gar", - "Scope": "I", - "LanguageType": "L", - "RefName": "Galeya" - }, - { - "Id": "gas", - "Scope": "I", - "LanguageType": "L", - "RefName": "Adiwasi Garasia" - }, - { - "Id": "gat", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kenati" - }, - { - "Id": "gau", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mudhili Gadaba" - }, - { - "Id": "gaw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nobonob" - }, - { - "Id": "gax", - "Scope": "I", - "LanguageType": "L", - "RefName": "Borana-Arsi-Guji Oromo" - }, - { - "Id": "gay", - "Part2B": "gay", - "Part2T": "gay", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gayo" - }, - { - "Id": "gaz", - "Scope": "I", - "LanguageType": "L", - "RefName": "West Central Oromo" - }, - { - "Id": "gba", - "Part2B": "gba", - "Part2T": "gba", - "Scope": "M", - "LanguageType": "L", - "RefName": "Gbaya (Central African Republic)" - }, - { - "Id": "gbb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kaytetye" - }, - { - "Id": "gbd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Karajarri" - }, - { - "Id": "gbe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Niksek" - }, - { - "Id": "gbf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gaikundi" - }, - { - "Id": "gbg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gbanziri" - }, - { - "Id": "gbh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Defi Gbe" - }, - { - "Id": "gbi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Galela" - }, - { - "Id": "gbj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bodo Gadaba" - }, - { - "Id": "gbk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gaddi" - }, - { - "Id": "gbl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gamit" - }, - { - "Id": "gbm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Garhwali" - }, - { - "Id": "gbn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mo\u0027da" - }, - { - "Id": "gbo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Grebo" - }, - { - "Id": "gbp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gbaya-Bossangoa" - }, - { - "Id": "gbq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gbaya-Bozoum" - }, - { - "Id": "gbr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gbagyi" - }, - { - "Id": "gbs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gbesi Gbe" - }, - { - "Id": "gbu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gagadu" - }, - { - "Id": "gbv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gbanu" - }, - { - "Id": "gbw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gabi-Gabi" - }, - { - "Id": "gbx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Xwla Gbe" - }, - { - "Id": "gby", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gbari" - }, - { - "Id": "gbz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zoroastrian Dari" - }, - { - "Id": "gcc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mali" - }, - { - "Id": "gcd", - "Scope": "I", - "LanguageType": "E", - "RefName": "Ganggalida" - }, - { - "Id": "gce", - "Scope": "I", - "LanguageType": "E", - "RefName": "Galice" - }, - { - "Id": "gcf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Guadeloupean Creole French" - }, - { - "Id": "gcl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Grenadian Creole English" - }, - { - "Id": "gcn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gaina" - }, - { - "Id": "gcr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Guianese Creole French" - }, - { - "Id": "gct", - "Scope": "I", - "LanguageType": "L", - "RefName": "Colonia Tovar German" - }, - { - "Id": "gda", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gade Lohar" - }, - { - "Id": "gdb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pottangi Ollar Gadaba" - }, - { - "Id": "gdc", - "Scope": "I", - "LanguageType": "E", - "RefName": "Gugu Badhun" - }, - { - "Id": "gdd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gedaged" - }, - { - "Id": "gde", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gude" - }, - { - "Id": "gdf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Guduf-Gava" - }, - { - "Id": "gdg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ga\u0027dang" - }, - { - "Id": "gdh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gadjerawang" - }, - { - "Id": "gdi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gundi" - }, - { - "Id": "gdj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gurdjar" - }, - { - "Id": "gdk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gadang" - }, - { - "Id": "gdl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dirasha" - }, - { - "Id": "gdm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Laal" - }, - { - "Id": "gdn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Umanakaina" - }, - { - "Id": "gdo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ghodoberi" - }, - { - "Id": "gdq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mehri" - }, - { - "Id": "gdr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wipi" - }, - { - "Id": "gds", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ghandruk Sign Language" - }, - { - "Id": "gdt", - "Scope": "I", - "LanguageType": "E", - "RefName": "Kungardutyi" - }, - { - "Id": "gdu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gudu" - }, - { - "Id": "gdx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Godwari" - }, - { - "Id": "gea", - "Scope": "I", - "LanguageType": "L", - "RefName": "Geruma" - }, - { - "Id": "geb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kire" - }, - { - "Id": "gec", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gboloo Grebo" - }, - { - "Id": "ged", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gade" - }, - { - "Id": "gef", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gerai" - }, - { - "Id": "geg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gengle" - }, - { - "Id": "geh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hutterite German" - }, - { - "Id": "gei", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gebe" - }, - { - "Id": "gej", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gen" - }, - { - "Id": "gek", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ywom" - }, - { - "Id": "gel", - "Scope": "I", - "LanguageType": "L", - "RefName": "ut-Ma\u0027in" - }, - { - "Id": "geq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Geme" - }, - { - "Id": "ges", - "Scope": "I", - "LanguageType": "L", - "RefName": "Geser-Gorom" - }, - { - "Id": "gev", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eviya" - }, - { - "Id": "gew", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gera" - }, - { - "Id": "gex", - "Scope": "I", - "LanguageType": "L", - "RefName": "Garre" - }, - { - "Id": "gey", - "Scope": "I", - "LanguageType": "L", - "RefName": "Enya" - }, - { - "Id": "gez", - "Part2B": "gez", - "Part2T": "gez", - "Scope": "I", - "LanguageType": "H", - "RefName": "Geez" - }, - { - "Id": "gfk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Patpatar" - }, - { - "Id": "gft", - "Scope": "I", - "LanguageType": "E", - "RefName": "Gafat" - }, - { - "Id": "gga", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gao" - }, - { - "Id": "ggb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gbii" - }, - { - "Id": "ggd", - "Scope": "I", - "LanguageType": "E", - "RefName": "Gugadj" - }, - { - "Id": "gge", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gurr-goni" - }, - { - "Id": "ggg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gurgula" - }, - { - "Id": "ggk", - "Scope": "I", - "LanguageType": "E", - "RefName": "Kungarakany" - }, - { - "Id": "ggl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ganglau" - }, - { - "Id": "ggt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gitua" - }, - { - "Id": "ggu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gagu" - }, - { - "Id": "ggw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gogodala" - }, - { - "Id": "gha", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ghadam\u00E8s" - }, - { - "Id": "ghc", - "Scope": "I", - "LanguageType": "H", - "RefName": "Hiberno-Scottish Gaelic" - }, - { - "Id": "ghe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Ghale" - }, - { - "Id": "ghh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Ghale" - }, - { - "Id": "ghk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Geko Karen" - }, - { - "Id": "ghl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ghulfan" - }, - { - "Id": "ghn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ghanongga" - }, - { - "Id": "gho", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ghomara" - }, - { - "Id": "ghr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ghera" - }, - { - "Id": "ghs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Guhu-Samane" - }, - { - "Id": "ght", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kuke" - }, - { - "Id": "gia", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kija" - }, - { - "Id": "gib", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gibanawa" - }, - { - "Id": "gic", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gail" - }, - { - "Id": "gid", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gidar" - }, - { - "Id": "gie", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ga\u0253ogbo" - }, - { - "Id": "gig", - "Scope": "I", - "LanguageType": "L", - "RefName": "Goaria" - }, - { - "Id": "gih", - "Scope": "I", - "LanguageType": "L", - "RefName": "Githabul" - }, - { - "Id": "gii", - "Scope": "I", - "LanguageType": "L", - "RefName": "Girirra" - }, - { - "Id": "gil", - "Part2B": "gil", - "Part2T": "gil", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gilbertese" - }, - { - "Id": "gim", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gimi (Eastern Highlands)" - }, - { - "Id": "gin", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hinukh" - }, - { - "Id": "gip", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gimi (West New Britain)" - }, - { - "Id": "giq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Green Gelao" - }, - { - "Id": "gir", - "Scope": "I", - "LanguageType": "L", - "RefName": "Red Gelao" - }, - { - "Id": "gis", - "Scope": "I", - "LanguageType": "L", - "RefName": "North Giziga" - }, - { - "Id": "git", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gitxsan" - }, - { - "Id": "giu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mulao" - }, - { - "Id": "giw", - "Scope": "I", - "LanguageType": "L", - "RefName": "White Gelao" - }, - { - "Id": "gix", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gilima" - }, - { - "Id": "giy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Giyug" - }, - { - "Id": "giz", - "Scope": "I", - "LanguageType": "L", - "RefName": "South Giziga" - }, - { - "Id": "gjk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kachi Koli" - }, - { - "Id": "gjm", - "Scope": "I", - "LanguageType": "E", - "RefName": "Gunditjmara" - }, - { - "Id": "gjn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gonja" - }, - { - "Id": "gjr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gurindji Kriol" - }, - { - "Id": "gju", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gujari" - }, - { - "Id": "gka", - "Scope": "I", - "LanguageType": "L", - "RefName": "Guya" - }, - { - "Id": "gkd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mag\u0268 (Madang Province)" - }, - { - "Id": "gke", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ndai" - }, - { - "Id": "gkn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gokana" - }, - { - "Id": "gko", - "Scope": "I", - "LanguageType": "E", - "RefName": "Kok-Nar" - }, - { - "Id": "gkp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Guinea Kpelle" - }, - { - "Id": "gku", - "Scope": "I", - "LanguageType": "E", - "RefName": "\u01C2Ungkue" - }, - { - "Id": "gla", - "Part2B": "gla", - "Part2T": "gla", - "Part1": "gd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Scottish Gaelic" - }, - { - "Id": "glb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Belning" - }, - { - "Id": "glc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bon Gula" - }, - { - "Id": "gld", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nanai" - }, - { - "Id": "gle", - "Part2B": "gle", - "Part2T": "gle", - "Part1": "ga", - "Scope": "I", - "LanguageType": "L", - "RefName": "Irish" - }, - { - "Id": "glg", - "Part2B": "glg", - "Part2T": "glg", - "Part1": "gl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Galician" - }, - { - "Id": "glh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northwest Pashai" - }, - { - "Id": "glj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gula Iro" - }, - { - "Id": "glk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gilaki" - }, - { - "Id": "gll", - "Scope": "I", - "LanguageType": "E", - "RefName": "Garlali" - }, - { - "Id": "glo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Galambu" - }, - { - "Id": "glr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Glaro-Twabo" - }, - { - "Id": "glu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gula (Chad)" - }, - { - "Id": "glv", - "Part2B": "glv", - "Part2T": "glv", - "Part1": "gv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Manx" - }, - { - "Id": "glw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Glavda" - }, - { - "Id": "gly", - "Scope": "I", - "LanguageType": "E", - "RefName": "Gule" - }, - { - "Id": "gma", - "Scope": "I", - "LanguageType": "E", - "RefName": "Gambera" - }, - { - "Id": "gmb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gula\u0027alaa" - }, - { - "Id": "gmd", - "Scope": "I", - "LanguageType": "L", - "RefName": "M\u00E1ghd\u00EC" - }, - { - "Id": "gmg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mag\u0268yi" - }, - { - "Id": "gmh", - "Part2B": "gmh", - "Part2T": "gmh", - "Scope": "I", - "LanguageType": "H", - "RefName": "Middle High German (ca. 1050-1500)" - }, - { - "Id": "gml", - "Scope": "I", - "LanguageType": "H", - "RefName": "Middle Low German" - }, - { - "Id": "gmm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gbaya-Mbodomo" - }, - { - "Id": "gmn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gimnime" - }, - { - "Id": "gmr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mirning" - }, - { - "Id": "gmu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gumalu" - }, - { - "Id": "gmv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gamo" - }, - { - "Id": "gmx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Magoma" - }, - { - "Id": "gmy", - "Scope": "I", - "LanguageType": "H", - "RefName": "Mycenaean Greek" - }, - { - "Id": "gmz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mgbolizhia" - }, - { - "Id": "gna", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kaansa" - }, - { - "Id": "gnb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gangte" - }, - { - "Id": "gnc", - "Scope": "I", - "LanguageType": "E", - "RefName": "Guanche" - }, - { - "Id": "gnd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zulgo-Gemzek" - }, - { - "Id": "gne", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ganang" - }, - { - "Id": "gng", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngangam" - }, - { - "Id": "gnh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lere" - }, - { - "Id": "gni", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gooniyandi" - }, - { - "Id": "gnj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngen" - }, - { - "Id": "gnk", - "Scope": "I", - "LanguageType": "L", - "RefName": "\u01C1Gana" - }, - { - "Id": "gnl", - "Scope": "I", - "LanguageType": "E", - "RefName": "Gangulu" - }, - { - "Id": "gnm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ginuman" - }, - { - "Id": "gnn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gumatj" - }, - { - "Id": "gno", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Gondi" - }, - { - "Id": "gnq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gana" - }, - { - "Id": "gnr", - "Scope": "I", - "LanguageType": "E", - "RefName": "Gureng Gureng" - }, - { - "Id": "gnt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Guntai" - }, - { - "Id": "gnu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gnau" - }, - { - "Id": "gnw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Bolivian Guaran\u00ED" - }, - { - "Id": "gnz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ganzi" - }, - { - "Id": "goa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Guro" - }, - { - "Id": "gob", - "Scope": "I", - "LanguageType": "L", - "RefName": "Playero" - }, - { - "Id": "goc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gorakor" - }, - { - "Id": "god", - "Scope": "I", - "LanguageType": "L", - "RefName": "Godi\u00E9" - }, - { - "Id": "goe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gongduk" - }, - { - "Id": "gof", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gofa" - }, - { - "Id": "gog", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gogo" - }, - { - "Id": "goh", - "Part2B": "goh", - "Part2T": "goh", - "Scope": "I", - "LanguageType": "H", - "RefName": "Old High German (ca. 750-1050)" - }, - { - "Id": "goi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gobasi" - }, - { - "Id": "goj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gowlan" - }, - { - "Id": "gok", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gowli" - }, - { - "Id": "gol", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gola" - }, - { - "Id": "gom", - "Scope": "I", - "LanguageType": "L", - "RefName": "Goan Konkani" - }, - { - "Id": "gon", - "Part2B": "gon", - "Part2T": "gon", - "Scope": "M", - "LanguageType": "L", - "RefName": "Gondi" - }, - { - "Id": "goo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gone Dau" - }, - { - "Id": "gop", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yeretuar" - }, - { - "Id": "goq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gorap" - }, - { - "Id": "gor", - "Part2B": "gor", - "Part2T": "gor", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gorontalo" - }, - { - "Id": "gos", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gronings" - }, - { - "Id": "got", - "Part2B": "got", - "Part2T": "got", - "Scope": "I", - "LanguageType": "H", - "RefName": "Gothic" - }, - { - "Id": "gou", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gavar" - }, - { - "Id": "gov", - "Scope": "I", - "LanguageType": "L", - "RefName": "Goo" - }, - { - "Id": "gow", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gorowa" - }, - { - "Id": "gox", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gobu" - }, - { - "Id": "goy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Goundo" - }, - { - "Id": "goz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gozarkhani" - }, - { - "Id": "gpa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gupa-Abawa" - }, - { - "Id": "gpe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ghanaian Pidgin English" - }, - { - "Id": "gpn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Taiap" - }, - { - "Id": "gqa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ga\u0027anda" - }, - { - "Id": "gqi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Guiqiong" - }, - { - "Id": "gqn", - "Scope": "I", - "LanguageType": "E", - "RefName": "Guana (Brazil)" - }, - { - "Id": "gqr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gor" - }, - { - "Id": "gqu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Qau" - }, - { - "Id": "gra", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rajput Garasia" - }, - { - "Id": "grb", - "Part2B": "grb", - "Part2T": "grb", - "Scope": "M", - "LanguageType": "L", - "RefName": "Grebo" - }, - { - "Id": "grc", - "Part2B": "grc", - "Part2T": "grc", - "Scope": "I", - "LanguageType": "H", - "RefName": "Ancient Greek (to 1453)" - }, - { - "Id": "grd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Guruntum-Mbaaru" - }, - { - "Id": "grg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Madi" - }, - { - "Id": "grh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gbiri-Niragu" - }, - { - "Id": "gri", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ghari" - }, - { - "Id": "grj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Grebo" - }, - { - "Id": "grm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kota Marudu Talantang" - }, - { - "Id": "grn", - "Part2B": "grn", - "Part2T": "grn", - "Part1": "gn", - "Scope": "M", - "LanguageType": "L", - "RefName": "Guarani" - }, - { - "Id": "gro", - "Scope": "I", - "LanguageType": "L", - "RefName": "Groma" - }, - { - "Id": "grq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gorovu" - }, - { - "Id": "grr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Taznatit" - }, - { - "Id": "grs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gresi" - }, - { - "Id": "grt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Garo" - }, - { - "Id": "gru", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kistane" - }, - { - "Id": "grv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Central Grebo" - }, - { - "Id": "grw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gweda" - }, - { - "Id": "grx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Guriaso" - }, - { - "Id": "gry", - "Scope": "I", - "LanguageType": "L", - "RefName": "Barclayville Grebo" - }, - { - "Id": "grz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Guramalum" - }, - { - "Id": "gse", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ghanaian Sign Language" - }, - { - "Id": "gsg", - "Scope": "I", - "LanguageType": "L", - "RefName": "German Sign Language" - }, - { - "Id": "gsl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gusilay" - }, - { - "Id": "gsm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Guatemalan Sign Language" - }, - { - "Id": "gsn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nema" - }, - { - "Id": "gso", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southwest Gbaya" - }, - { - "Id": "gsp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wasembo" - }, - { - "Id": "gss", - "Scope": "I", - "LanguageType": "L", - "RefName": "Greek Sign Language" - }, - { - "Id": "gsw", - "Part2B": "gsw", - "Part2T": "gsw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Swiss German" - }, - { - "Id": "gta", - "Scope": "I", - "LanguageType": "L", - "RefName": "Guat\u00F3" - }, - { - "Id": "gtu", - "Scope": "I", - "LanguageType": "E", - "RefName": "Aghu-Tharnggala" - }, - { - "Id": "gua", - "Scope": "I", - "LanguageType": "L", - "RefName": "Shiki" - }, - { - "Id": "gub", - "Scope": "I", - "LanguageType": "L", - "RefName": "Guajaj\u00E1ra" - }, - { - "Id": "guc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wayuu" - }, - { - "Id": "gud", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yocobou\u00E9 Dida" - }, - { - "Id": "gue", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gurindji" - }, - { - "Id": "guf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gupapuyngu" - }, - { - "Id": "gug", - "Scope": "I", - "LanguageType": "L", - "RefName": "Paraguayan Guaran\u00ED" - }, - { - "Id": "guh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Guahibo" - }, - { - "Id": "gui", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Bolivian Guaran\u00ED" - }, - { - "Id": "guj", - "Part2B": "guj", - "Part2T": "guj", - "Part1": "gu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gujarati" - }, - { - "Id": "guk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gumuz" - }, - { - "Id": "gul", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sea Island Creole English" - }, - { - "Id": "gum", - "Scope": "I", - "LanguageType": "L", - "RefName": "Guambiano" - }, - { - "Id": "gun", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mby\u00E1 Guaran\u00ED" - }, - { - "Id": "guo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Guayabero" - }, - { - "Id": "gup", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gunwinggu" - }, - { - "Id": "guq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ach\u00E9" - }, - { - "Id": "gur", - "Scope": "I", - "LanguageType": "L", - "RefName": "Farefare" - }, - { - "Id": "gus", - "Scope": "I", - "LanguageType": "L", - "RefName": "Guinean Sign Language" - }, - { - "Id": "gut", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mal\u00E9ku Ja\u00EDka" - }, - { - "Id": "guu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yanomam\u00F6" - }, - { - "Id": "guw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gun" - }, - { - "Id": "gux", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gourmanch\u00E9ma" - }, - { - "Id": "guz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gusii" - }, - { - "Id": "gva", - "Scope": "I", - "LanguageType": "L", - "RefName": "Guana (Paraguay)" - }, - { - "Id": "gvc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Guanano" - }, - { - "Id": "gve", - "Scope": "I", - "LanguageType": "L", - "RefName": "Duwet" - }, - { - "Id": "gvf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Golin" - }, - { - "Id": "gvj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Guaj\u00E1" - }, - { - "Id": "gvl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gulay" - }, - { - "Id": "gvm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gurmana" - }, - { - "Id": "gvn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kuku-Yalanji" - }, - { - "Id": "gvo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gavi\u00E3o Do Jiparan\u00E1" - }, - { - "Id": "gvp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Par\u00E1 Gavi\u00E3o" - }, - { - "Id": "gvr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gurung" - }, - { - "Id": "gvs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gumawana" - }, - { - "Id": "gvy", - "Scope": "I", - "LanguageType": "E", - "RefName": "Guyani" - }, - { - "Id": "gwa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mbato" - }, - { - "Id": "gwb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gwa" - }, - { - "Id": "gwc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gawri" - }, - { - "Id": "gwd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gawwada" - }, - { - "Id": "gwe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gweno" - }, - { - "Id": "gwf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gowro" - }, - { - "Id": "gwg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Moo" - }, - { - "Id": "gwi", - "Part2B": "gwi", - "Part2T": "gwi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gwich\u02BCin" - }, - { - "Id": "gwj", - "Scope": "I", - "LanguageType": "L", - "RefName": "\u01C0Gwi" - }, - { - "Id": "gwm", - "Scope": "I", - "LanguageType": "E", - "RefName": "Awngthim" - }, - { - "Id": "gwn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gwandara" - }, - { - "Id": "gwr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gwere" - }, - { - "Id": "gwt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gawar-Bati" - }, - { - "Id": "gwu", - "Scope": "I", - "LanguageType": "E", - "RefName": "Guwamu" - }, - { - "Id": "gww", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kwini" - }, - { - "Id": "gwx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gua" - }, - { - "Id": "gxx", - "Scope": "I", - "LanguageType": "L", - "RefName": "W\u00E8 Southern" - }, - { - "Id": "gya", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northwest Gbaya" - }, - { - "Id": "gyb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Garus" - }, - { - "Id": "gyd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kayardild" - }, - { - "Id": "gye", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gyem" - }, - { - "Id": "gyf", - "Scope": "I", - "LanguageType": "E", - "RefName": "Gungabula" - }, - { - "Id": "gyg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gbayi" - }, - { - "Id": "gyi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gyele" - }, - { - "Id": "gyl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gayil" - }, - { - "Id": "gym", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ng\u00E4bere" - }, - { - "Id": "gyn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Guyanese Creole English" - }, - { - "Id": "gyo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gyalsumdo" - }, - { - "Id": "gyr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Guarayu" - }, - { - "Id": "gyy", - "Scope": "I", - "LanguageType": "E", - "RefName": "Gunya" - }, - { - "Id": "gyz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Geji" - }, - { - "Id": "gza", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ganza" - }, - { - "Id": "gzi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gazi" - }, - { - "Id": "gzn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gane" - }, - { - "Id": "haa", - "Scope": "I", - "LanguageType": "L", - "RefName": "H\u00E4n" - }, - { - "Id": "hab", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hanoi Sign Language" - }, - { - "Id": "hac", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gurani" - }, - { - "Id": "had", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hatam" - }, - { - "Id": "hae", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Oromo" - }, - { - "Id": "haf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Haiphong Sign Language" - }, - { - "Id": "hag", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hanga" - }, - { - "Id": "hah", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hahon" - }, - { - "Id": "hai", - "Part2B": "hai", - "Part2T": "hai", - "Scope": "M", - "LanguageType": "L", - "RefName": "Haida" - }, - { - "Id": "haj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hajong" - }, - { - "Id": "hak", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hakka Chinese" - }, - { - "Id": "hal", - "Scope": "I", - "LanguageType": "L", - "RefName": "Halang" - }, - { - "Id": "ham", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hewa" - }, - { - "Id": "han", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hangaza" - }, - { - "Id": "hao", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hak\u00F6" - }, - { - "Id": "hap", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hupla" - }, - { - "Id": "haq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ha" - }, - { - "Id": "har", - "Scope": "I", - "LanguageType": "L", - "RefName": "Harari" - }, - { - "Id": "has", - "Scope": "I", - "LanguageType": "L", - "RefName": "Haisla" - }, - { - "Id": "hat", - "Part2B": "hat", - "Part2T": "hat", - "Part1": "ht", - "Scope": "I", - "LanguageType": "L", - "RefName": "Haitian" - }, - { - "Id": "hau", - "Part2B": "hau", - "Part2T": "hau", - "Part1": "ha", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hausa" - }, - { - "Id": "hav", - "Scope": "I", - "LanguageType": "L", - "RefName": "Havu" - }, - { - "Id": "haw", - "Part2B": "haw", - "Part2T": "haw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hawaiian" - }, - { - "Id": "hax", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Haida" - }, - { - "Id": "hay", - "Scope": "I", - "LanguageType": "L", - "RefName": "Haya" - }, - { - "Id": "haz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hazaragi" - }, - { - "Id": "hba", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hamba" - }, - { - "Id": "hbb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Huba" - }, - { - "Id": "hbn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Heiban" - }, - { - "Id": "hbo", - "Scope": "I", - "LanguageType": "H", - "RefName": "Ancient Hebrew" - }, - { - "Id": "hbs", - "Part1": "sh", - "Scope": "M", - "LanguageType": "L", - "RefName": "Serbo-Croatian", - "Comment": "Code element for 639-1 has been deprecated" - }, - { - "Id": "hbu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Habu" - }, - { - "Id": "hca", - "Scope": "I", - "LanguageType": "L", - "RefName": "Andaman Creole Hindi" - }, - { - "Id": "hch", - "Scope": "I", - "LanguageType": "L", - "RefName": "Huichol" - }, - { - "Id": "hdn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Haida" - }, - { - "Id": "hds", - "Scope": "I", - "LanguageType": "L", - "RefName": "Honduras Sign Language" - }, - { - "Id": "hdy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hadiyya" - }, - { - "Id": "hea", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Qiandong Miao" - }, - { - "Id": "heb", - "Part2B": "heb", - "Part2T": "heb", - "Part1": "he", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hebrew" - }, - { - "Id": "hed", - "Scope": "I", - "LanguageType": "L", - "RefName": "Herd\u00E9" - }, - { - "Id": "heg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Helong" - }, - { - "Id": "heh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hehe" - }, - { - "Id": "hei", - "Scope": "I", - "LanguageType": "L", - "RefName": "Heiltsuk" - }, - { - "Id": "hem", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hemba" - }, - { - "Id": "her", - "Part2B": "her", - "Part2T": "her", - "Part1": "hz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Herero" - }, - { - "Id": "hgm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hai\u01C1om" - }, - { - "Id": "hgw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Haigwai" - }, - { - "Id": "hhi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hoia Hoia" - }, - { - "Id": "hhr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kerak" - }, - { - "Id": "hhy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hoyahoya" - }, - { - "Id": "hia", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lamang" - }, - { - "Id": "hib", - "Scope": "I", - "LanguageType": "E", - "RefName": "Hibito" - }, - { - "Id": "hid", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hidatsa" - }, - { - "Id": "hif", - "Scope": "I", - "LanguageType": "L", - "RefName": "Fiji Hindi" - }, - { - "Id": "hig", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kamwe" - }, - { - "Id": "hih", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pamosu" - }, - { - "Id": "hii", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hinduri" - }, - { - "Id": "hij", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hijuk" - }, - { - "Id": "hik", - "Scope": "I", - "LanguageType": "L", - "RefName": "Seit-Kaitetu" - }, - { - "Id": "hil", - "Part2B": "hil", - "Part2T": "hil", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hiligaynon" - }, - { - "Id": "hin", - "Part2B": "hin", - "Part2T": "hin", - "Part1": "hi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hindi" - }, - { - "Id": "hio", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tsoa" - }, - { - "Id": "hir", - "Scope": "I", - "LanguageType": "L", - "RefName": "Himarim\u00E3" - }, - { - "Id": "hit", - "Part2B": "hit", - "Part2T": "hit", - "Scope": "I", - "LanguageType": "H", - "RefName": "Hittite" - }, - { - "Id": "hiw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hiw" - }, - { - "Id": "hix", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hixkary\u00E1na" - }, - { - "Id": "hji", - "Scope": "I", - "LanguageType": "L", - "RefName": "Haji" - }, - { - "Id": "hka", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kahe" - }, - { - "Id": "hke", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hunde" - }, - { - "Id": "hkh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Khah" - }, - { - "Id": "hkk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hunjara-Kaina Ke" - }, - { - "Id": "hkn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mel-Khaonh" - }, - { - "Id": "hks", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hong Kong Sign Language" - }, - { - "Id": "hla", - "Scope": "I", - "LanguageType": "L", - "RefName": "Halia" - }, - { - "Id": "hlb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Halbi" - }, - { - "Id": "hld", - "Scope": "I", - "LanguageType": "L", - "RefName": "Halang Doan" - }, - { - "Id": "hle", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hlersu" - }, - { - "Id": "hlt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Matu Chin" - }, - { - "Id": "hlu", - "Scope": "I", - "LanguageType": "H", - "RefName": "Hieroglyphic Luwian" - }, - { - "Id": "hma", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Mashan Hmong" - }, - { - "Id": "hmb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Humburi Senni Songhay" - }, - { - "Id": "hmc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Central Huishui Hmong" - }, - { - "Id": "hmd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Large Flowery Miao" - }, - { - "Id": "hme", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Huishui Hmong" - }, - { - "Id": "hmf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hmong Don" - }, - { - "Id": "hmg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southwestern Guiyang Hmong" - }, - { - "Id": "hmh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southwestern Huishui Hmong" - }, - { - "Id": "hmi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Huishui Hmong" - }, - { - "Id": "hmj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ge" - }, - { - "Id": "hmk", - "Scope": "I", - "LanguageType": "H", - "RefName": "Maek" - }, - { - "Id": "hml", - "Scope": "I", - "LanguageType": "L", - "RefName": "Luopohe Hmong" - }, - { - "Id": "hmm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Central Mashan Hmong" - }, - { - "Id": "hmn", - "Part2B": "hmn", - "Part2T": "hmn", - "Scope": "M", - "LanguageType": "L", - "RefName": "Hmong" - }, - { - "Id": "hmo", - "Part2B": "hmo", - "Part2T": "hmo", - "Part1": "ho", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hiri Motu" - }, - { - "Id": "hmp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Mashan Hmong" - }, - { - "Id": "hmq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Qiandong Miao" - }, - { - "Id": "hmr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hmar" - }, - { - "Id": "hms", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Qiandong Miao" - }, - { - "Id": "hmt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hamtai" - }, - { - "Id": "hmu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hamap" - }, - { - "Id": "hmv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hmong D\u00F4" - }, - { - "Id": "hmw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Mashan Hmong" - }, - { - "Id": "hmy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Guiyang Hmong" - }, - { - "Id": "hmz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hmong Shua" - }, - { - "Id": "hna", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mina (Cameroon)" - }, - { - "Id": "hnd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Hindko" - }, - { - "Id": "hne", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chhattisgarhi" - }, - { - "Id": "hng", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hungu" - }, - { - "Id": "hnh", - "Scope": "I", - "LanguageType": "L", - "RefName": "\u01C1Ani" - }, - { - "Id": "hni", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hani" - }, - { - "Id": "hnj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hmong Njua" - }, - { - "Id": "hnm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hainanese" - }, - { - "Id": "hnn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hanunoo" - }, - { - "Id": "hno", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Hindko" - }, - { - "Id": "hns", - "Scope": "I", - "LanguageType": "L", - "RefName": "Caribbean Hindustani" - }, - { - "Id": "hnu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hung" - }, - { - "Id": "hoa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hoava" - }, - { - "Id": "hob", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mari (Madang Province)" - }, - { - "Id": "hoc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ho" - }, - { - "Id": "hod", - "Scope": "I", - "LanguageType": "E", - "RefName": "Holma" - }, - { - "Id": "hoe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Horom" - }, - { - "Id": "hoh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hoby\u00F3t" - }, - { - "Id": "hoi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Holikachuk" - }, - { - "Id": "hoj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hadothi" - }, - { - "Id": "hol", - "Scope": "I", - "LanguageType": "L", - "RefName": "Holu" - }, - { - "Id": "hom", - "Scope": "I", - "LanguageType": "E", - "RefName": "Homa" - }, - { - "Id": "hoo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Holoholo" - }, - { - "Id": "hop", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hopi" - }, - { - "Id": "hor", - "Scope": "I", - "LanguageType": "E", - "RefName": "Horo" - }, - { - "Id": "hos", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ho Chi Minh City Sign Language" - }, - { - "Id": "hot", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hote" - }, - { - "Id": "hov", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hovongan" - }, - { - "Id": "how", - "Scope": "I", - "LanguageType": "L", - "RefName": "Honi" - }, - { - "Id": "hoy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Holiya" - }, - { - "Id": "hoz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hozo" - }, - { - "Id": "hpo", - "Scope": "I", - "LanguageType": "E", - "RefName": "Hpon" - }, - { - "Id": "hps", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hawai\u0027i Sign Language (HSL)" - }, - { - "Id": "hra", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hrangkhol" - }, - { - "Id": "hrc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Niwer Mil" - }, - { - "Id": "hre", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hre" - }, - { - "Id": "hrk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Haruku" - }, - { - "Id": "hrm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Horned Miao" - }, - { - "Id": "hro", - "Scope": "I", - "LanguageType": "L", - "RefName": "Haroi" - }, - { - "Id": "hrp", - "Scope": "I", - "LanguageType": "E", - "RefName": "Nhirrpi" - }, - { - "Id": "hrt", - "Scope": "I", - "LanguageType": "L", - "RefName": "H\u00E9rtevin" - }, - { - "Id": "hru", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hruso" - }, - { - "Id": "hrv", - "Part2B": "hrv", - "Part2T": "hrv", - "Part1": "hr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Croatian" - }, - { - "Id": "hrw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Warwar Feni" - }, - { - "Id": "hrx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hunsrik" - }, - { - "Id": "hrz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Harzani" - }, - { - "Id": "hsb", - "Part2B": "hsb", - "Part2T": "hsb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Upper Sorbian" - }, - { - "Id": "hsh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hungarian Sign Language" - }, - { - "Id": "hsl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hausa Sign Language" - }, - { - "Id": "hsn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Xiang Chinese" - }, - { - "Id": "hss", - "Scope": "I", - "LanguageType": "L", - "RefName": "Harsusi" - }, - { - "Id": "hti", - "Scope": "I", - "LanguageType": "E", - "RefName": "Hoti" - }, - { - "Id": "hto", - "Scope": "I", - "LanguageType": "L", - "RefName": "Minica Huitoto" - }, - { - "Id": "hts", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hadza" - }, - { - "Id": "htu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hitu" - }, - { - "Id": "htx", - "Scope": "I", - "LanguageType": "H", - "RefName": "Middle Hittite" - }, - { - "Id": "hub", - "Scope": "I", - "LanguageType": "L", - "RefName": "Huambisa" - }, - { - "Id": "huc", - "Scope": "I", - "LanguageType": "L", - "RefName": "\u01C2Hua" - }, - { - "Id": "hud", - "Scope": "I", - "LanguageType": "L", - "RefName": "Huaulu" - }, - { - "Id": "hue", - "Scope": "I", - "LanguageType": "L", - "RefName": "San Francisco Del Mar Huave" - }, - { - "Id": "huf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Humene" - }, - { - "Id": "hug", - "Scope": "I", - "LanguageType": "L", - "RefName": "Huachipaeri" - }, - { - "Id": "huh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Huilliche" - }, - { - "Id": "hui", - "Scope": "I", - "LanguageType": "L", - "RefName": "Huli" - }, - { - "Id": "huj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Guiyang Hmong" - }, - { - "Id": "huk", - "Scope": "I", - "LanguageType": "E", - "RefName": "Hulung" - }, - { - "Id": "hul", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hula" - }, - { - "Id": "hum", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hungana" - }, - { - "Id": "hun", - "Part2B": "hun", - "Part2T": "hun", - "Part1": "hu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hungarian" - }, - { - "Id": "huo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hu" - }, - { - "Id": "hup", - "Part2B": "hup", - "Part2T": "hup", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hupa" - }, - { - "Id": "huq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tsat" - }, - { - "Id": "hur", - "Scope": "I", - "LanguageType": "L", - "RefName": "Halkomelem" - }, - { - "Id": "hus", - "Scope": "I", - "LanguageType": "L", - "RefName": "Huastec" - }, - { - "Id": "hut", - "Scope": "I", - "LanguageType": "L", - "RefName": "Humla" - }, - { - "Id": "huu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Murui Huitoto" - }, - { - "Id": "huv", - "Scope": "I", - "LanguageType": "L", - "RefName": "San Mateo Del Mar Huave" - }, - { - "Id": "huw", - "Scope": "I", - "LanguageType": "E", - "RefName": "Hukumina" - }, - { - "Id": "hux", - "Scope": "I", - "LanguageType": "L", - "RefName": "N\u00FCpode Huitoto" - }, - { - "Id": "huy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hulaul\u00E1" - }, - { - "Id": "huz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hunzib" - }, - { - "Id": "hvc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Haitian Vodoun Culture Language" - }, - { - "Id": "hve", - "Scope": "I", - "LanguageType": "L", - "RefName": "San Dionisio Del Mar Huave" - }, - { - "Id": "hvk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Haveke" - }, - { - "Id": "hvn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sabu" - }, - { - "Id": "hvv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Santa Mar\u00EDa Del Mar Huave" - }, - { - "Id": "hwa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wan\u00E9" - }, - { - "Id": "hwc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hawai\u0027i Creole English" - }, - { - "Id": "hwo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hwana" - }, - { - "Id": "hya", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hya" - }, - { - "Id": "hye", - "Part2B": "arm", - "Part2T": "hye", - "Part1": "hy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Armenian" - }, - { - "Id": "hyw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Armenian" - }, - { - "Id": "iai", - "Scope": "I", - "LanguageType": "L", - "RefName": "Iaai" - }, - { - "Id": "ian", - "Scope": "I", - "LanguageType": "L", - "RefName": "Iatmul" - }, - { - "Id": "iar", - "Scope": "I", - "LanguageType": "L", - "RefName": "Purari" - }, - { - "Id": "iba", - "Part2B": "iba", - "Part2T": "iba", - "Scope": "I", - "LanguageType": "L", - "RefName": "Iban" - }, - { - "Id": "ibb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ibibio" - }, - { - "Id": "ibd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Iwaidja" - }, - { - "Id": "ibe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Akpes" - }, - { - "Id": "ibg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ibanag" - }, - { - "Id": "ibh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bih" - }, - { - "Id": "ibl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ibaloi" - }, - { - "Id": "ibm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Agoi" - }, - { - "Id": "ibn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ibino" - }, - { - "Id": "ibo", - "Part2B": "ibo", - "Part2T": "ibo", - "Part1": "ig", - "Scope": "I", - "LanguageType": "L", - "RefName": "Igbo" - }, - { - "Id": "ibr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ibuoro" - }, - { - "Id": "ibu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ibu" - }, - { - "Id": "iby", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ibani" - }, - { - "Id": "ica", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ede Ica" - }, - { - "Id": "ich", - "Scope": "I", - "LanguageType": "L", - "RefName": "Etkywan" - }, - { - "Id": "icl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Icelandic Sign Language" - }, - { - "Id": "icr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Islander Creole English" - }, - { - "Id": "ida", - "Scope": "I", - "LanguageType": "L", - "RefName": "Idakho-Isukha-Tiriki" - }, - { - "Id": "idb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Indo-Portuguese" - }, - { - "Id": "idc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Idon" - }, - { - "Id": "idd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ede Idaca" - }, - { - "Id": "ide", - "Scope": "I", - "LanguageType": "L", - "RefName": "Idere" - }, - { - "Id": "idi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Idi" - }, - { - "Id": "ido", - "Part2B": "ido", - "Part2T": "ido", - "Part1": "io", - "Scope": "I", - "LanguageType": "C", - "RefName": "Ido" - }, - { - "Id": "idr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Indri" - }, - { - "Id": "ids", - "Scope": "I", - "LanguageType": "L", - "RefName": "Idesa" - }, - { - "Id": "idt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Idat\u00E9" - }, - { - "Id": "idu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Idoma" - }, - { - "Id": "ifa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Amganad Ifugao" - }, - { - "Id": "ifb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Batad Ifugao" - }, - { - "Id": "ife", - "Scope": "I", - "LanguageType": "L", - "RefName": "If\u00E8" - }, - { - "Id": "iff", - "Scope": "I", - "LanguageType": "E", - "RefName": "Ifo" - }, - { - "Id": "ifk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tuwali Ifugao" - }, - { - "Id": "ifm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Teke-Fuumu" - }, - { - "Id": "ifu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mayoyao Ifugao" - }, - { - "Id": "ify", - "Scope": "I", - "LanguageType": "L", - "RefName": "Keley-I Kallahan" - }, - { - "Id": "igb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ebira" - }, - { - "Id": "ige", - "Scope": "I", - "LanguageType": "L", - "RefName": "Igede" - }, - { - "Id": "igg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Igana" - }, - { - "Id": "igl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Igala" - }, - { - "Id": "igm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kanggape" - }, - { - "Id": "ign", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ignaciano" - }, - { - "Id": "igo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Isebe" - }, - { - "Id": "igs", - "Scope": "I", - "LanguageType": "C", - "RefName": "Interglossa" - }, - { - "Id": "igw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Igwe" - }, - { - "Id": "ihb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Iha Based Pidgin" - }, - { - "Id": "ihi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ihievbe" - }, - { - "Id": "ihp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Iha" - }, - { - "Id": "ihw", - "Scope": "I", - "LanguageType": "E", - "RefName": "Bidhawal" - }, - { - "Id": "iii", - "Part2B": "iii", - "Part2T": "iii", - "Part1": "ii", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sichuan Yi" - }, - { - "Id": "iin", - "Scope": "I", - "LanguageType": "E", - "RefName": "Thiin" - }, - { - "Id": "ijc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Izon" - }, - { - "Id": "ije", - "Scope": "I", - "LanguageType": "L", - "RefName": "Biseni" - }, - { - "Id": "ijj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ede Ije" - }, - { - "Id": "ijn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kalabari" - }, - { - "Id": "ijs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southeast Ijo" - }, - { - "Id": "ike", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Canadian Inuktitut" - }, - { - "Id": "ikh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ikhin-Arokho" - }, - { - "Id": "iki", - "Scope": "I", - "LanguageType": "L", - "RefName": "Iko" - }, - { - "Id": "ikk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ika" - }, - { - "Id": "ikl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ikulu" - }, - { - "Id": "iko", - "Scope": "I", - "LanguageType": "L", - "RefName": "Olulumo-Ikom" - }, - { - "Id": "ikp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ikpeshi" - }, - { - "Id": "ikr", - "Scope": "I", - "LanguageType": "E", - "RefName": "Ikaranggal" - }, - { - "Id": "iks", - "Scope": "I", - "LanguageType": "L", - "RefName": "Inuit Sign Language" - }, - { - "Id": "ikt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Inuinnaqtun" - }, - { - "Id": "iku", - "Part2B": "iku", - "Part2T": "iku", - "Part1": "iu", - "Scope": "M", - "LanguageType": "L", - "RefName": "Inuktitut" - }, - { - "Id": "ikv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Iku-Gora-Ankwa" - }, - { - "Id": "ikw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ikwere" - }, - { - "Id": "ikx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ik" - }, - { - "Id": "ikz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ikizu" - }, - { - "Id": "ila", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ile Ape" - }, - { - "Id": "ilb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ila" - }, - { - "Id": "ile", - "Part2B": "ile", - "Part2T": "ile", - "Part1": "ie", - "Scope": "I", - "LanguageType": "C", - "RefName": "Interlingue" - }, - { - "Id": "ilg", - "Scope": "I", - "LanguageType": "E", - "RefName": "Garig-Ilgar" - }, - { - "Id": "ili", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ili Turki" - }, - { - "Id": "ilk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ilongot" - }, - { - "Id": "ilm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Iranun (Malaysia)" - }, - { - "Id": "ilo", - "Part2B": "ilo", - "Part2T": "ilo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Iloko" - }, - { - "Id": "ilp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Iranun (Philippines)" - }, - { - "Id": "ils", - "Scope": "I", - "LanguageType": "L", - "RefName": "International Sign" - }, - { - "Id": "ilu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ili\u0027uun" - }, - { - "Id": "ilv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ilue" - }, - { - "Id": "ima", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mala Malasar" - }, - { - "Id": "imi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Anamgura" - }, - { - "Id": "iml", - "Scope": "I", - "LanguageType": "E", - "RefName": "Miluk" - }, - { - "Id": "imn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Imonda" - }, - { - "Id": "imo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Imbongu" - }, - { - "Id": "imr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Imroing" - }, - { - "Id": "ims", - "Scope": "I", - "LanguageType": "H", - "RefName": "Marsian" - }, - { - "Id": "imt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Imotong" - }, - { - "Id": "imy", - "Scope": "I", - "LanguageType": "H", - "RefName": "Milyan" - }, - { - "Id": "ina", - "Part2B": "ina", - "Part2T": "ina", - "Part1": "ia", - "Scope": "I", - "LanguageType": "C", - "RefName": "Interlingua (IALA)" - }, - { - "Id": "inb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Inga" - }, - { - "Id": "ind", - "Part2B": "ind", - "Part2T": "ind", - "Part1": "id", - "Scope": "I", - "LanguageType": "L", - "RefName": "Indonesian" - }, - { - "Id": "ing", - "Scope": "I", - "LanguageType": "L", - "RefName": "Degexit\u0027an" - }, - { - "Id": "inh", - "Part2B": "inh", - "Part2T": "inh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ingush" - }, - { - "Id": "inj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jungle Inga" - }, - { - "Id": "inl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Indonesian Sign Language" - }, - { - "Id": "inm", - "Scope": "I", - "LanguageType": "H", - "RefName": "Minaean" - }, - { - "Id": "inn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Isinai" - }, - { - "Id": "ino", - "Scope": "I", - "LanguageType": "L", - "RefName": "Inoke-Yate" - }, - { - "Id": "inp", - "Scope": "I", - "LanguageType": "L", - "RefName": "I\u00F1apari" - }, - { - "Id": "ins", - "Scope": "I", - "LanguageType": "L", - "RefName": "Indian Sign Language" - }, - { - "Id": "int", - "Scope": "I", - "LanguageType": "L", - "RefName": "Intha" - }, - { - "Id": "inz", - "Scope": "I", - "LanguageType": "E", - "RefName": "Inese\u00F1o" - }, - { - "Id": "ior", - "Scope": "I", - "LanguageType": "L", - "RefName": "Inor" - }, - { - "Id": "iou", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tuma-Irumu" - }, - { - "Id": "iow", - "Scope": "I", - "LanguageType": "E", - "RefName": "Iowa-Oto" - }, - { - "Id": "ipi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ipili" - }, - { - "Id": "ipk", - "Part2B": "ipk", - "Part2T": "ipk", - "Part1": "ik", - "Scope": "M", - "LanguageType": "L", - "RefName": "Inupiaq" - }, - { - "Id": "ipo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ipiko" - }, - { - "Id": "iqu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Iquito" - }, - { - "Id": "iqw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ikwo" - }, - { - "Id": "ire", - "Scope": "I", - "LanguageType": "L", - "RefName": "Iresim" - }, - { - "Id": "irh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Irarutu" - }, - { - "Id": "iri", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rigwe" - }, - { - "Id": "irk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Iraqw" - }, - { - "Id": "irn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ir\u00E1ntxe" - }, - { - "Id": "irr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ir" - }, - { - "Id": "iru", - "Scope": "I", - "LanguageType": "L", - "RefName": "Irula" - }, - { - "Id": "irx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kamberau" - }, - { - "Id": "iry", - "Scope": "I", - "LanguageType": "L", - "RefName": "Iraya" - }, - { - "Id": "isa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Isabi" - }, - { - "Id": "isc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Isconahua" - }, - { - "Id": "isd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Isnag" - }, - { - "Id": "ise", - "Scope": "I", - "LanguageType": "L", - "RefName": "Italian Sign Language" - }, - { - "Id": "isg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Irish Sign Language" - }, - { - "Id": "ish", - "Scope": "I", - "LanguageType": "L", - "RefName": "Esan" - }, - { - "Id": "isi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nkem-Nkum" - }, - { - "Id": "isk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ishkashimi" - }, - { - "Id": "isl", - "Part2B": "ice", - "Part2T": "isl", - "Part1": "is", - "Scope": "I", - "LanguageType": "L", - "RefName": "Icelandic" - }, - { - "Id": "ism", - "Scope": "I", - "LanguageType": "L", - "RefName": "Masimasi" - }, - { - "Id": "isn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Isanzu" - }, - { - "Id": "iso", - "Scope": "I", - "LanguageType": "L", - "RefName": "Isoko" - }, - { - "Id": "isr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Israeli Sign Language" - }, - { - "Id": "ist", - "Scope": "I", - "LanguageType": "L", - "RefName": "Istriot" - }, - { - "Id": "isu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Isu" - }, - { - "Id": "isv", - "Scope": "I", - "LanguageType": "C", - "RefName": "Interslavic" - }, - { - "Id": "ita", - "Part2B": "ita", - "Part2T": "ita", - "Part1": "it", - "Scope": "I", - "LanguageType": "L", - "RefName": "Italian" - }, - { - "Id": "itb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Binongan Itneg" - }, - { - "Id": "itd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Tidung" - }, - { - "Id": "ite", - "Scope": "I", - "LanguageType": "E", - "RefName": "Itene" - }, - { - "Id": "iti", - "Scope": "I", - "LanguageType": "L", - "RefName": "Inlaod Itneg" - }, - { - "Id": "itk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Judeo-Italian" - }, - { - "Id": "itl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Itelmen" - }, - { - "Id": "itm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Itu Mbon Uzo" - }, - { - "Id": "ito", - "Scope": "I", - "LanguageType": "L", - "RefName": "Itonama" - }, - { - "Id": "itr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Iteri" - }, - { - "Id": "its", - "Scope": "I", - "LanguageType": "L", - "RefName": "Isekiri" - }, - { - "Id": "itt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maeng Itneg" - }, - { - "Id": "itv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Itawit" - }, - { - "Id": "itw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ito" - }, - { - "Id": "itx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Itik" - }, - { - "Id": "ity", - "Scope": "I", - "LanguageType": "L", - "RefName": "Moyadan Itneg" - }, - { - "Id": "itz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Itz\u00E1" - }, - { - "Id": "ium", - "Scope": "I", - "LanguageType": "L", - "RefName": "Iu Mien" - }, - { - "Id": "ivb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ibatan" - }, - { - "Id": "ivv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ivatan" - }, - { - "Id": "iwk", - "Scope": "I", - "LanguageType": "L", - "RefName": "I-Wak" - }, - { - "Id": "iwm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Iwam" - }, - { - "Id": "iwo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Iwur" - }, - { - "Id": "iws", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sepik Iwam" - }, - { - "Id": "ixc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ixcatec" - }, - { - "Id": "ixl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ixil" - }, - { - "Id": "iya", - "Scope": "I", - "LanguageType": "L", - "RefName": "Iyayu" - }, - { - "Id": "iyo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mesaka" - }, - { - "Id": "iyx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yaka (Congo)" - }, - { - "Id": "izh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ingrian" - }, - { - "Id": "izm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kizamani" - }, - { - "Id": "izr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Izere" - }, - { - "Id": "izz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Izii" - }, - { - "Id": "jaa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jamamad\u00ED" - }, - { - "Id": "jab", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hyam" - }, - { - "Id": "jac", - "Scope": "I", - "LanguageType": "L", - "RefName": "Popti\u0027" - }, - { - "Id": "jad", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jahanka" - }, - { - "Id": "jae", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yabem" - }, - { - "Id": "jaf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jara" - }, - { - "Id": "jah", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jah Hut" - }, - { - "Id": "jaj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zazao" - }, - { - "Id": "jak", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jakun" - }, - { - "Id": "jal", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yalahatan" - }, - { - "Id": "jam", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jamaican Creole English" - }, - { - "Id": "jan", - "Scope": "I", - "LanguageType": "E", - "RefName": "Jandai" - }, - { - "Id": "jao", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yanyuwa" - }, - { - "Id": "jaq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yaqay" - }, - { - "Id": "jas", - "Scope": "I", - "LanguageType": "L", - "RefName": "New Caledonian Javanese" - }, - { - "Id": "jat", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jakati" - }, - { - "Id": "jau", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yaur" - }, - { - "Id": "jav", - "Part2B": "jav", - "Part2T": "jav", - "Part1": "jv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Javanese" - }, - { - "Id": "jax", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jambi Malay" - }, - { - "Id": "jay", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yan-nhangu" - }, - { - "Id": "jaz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jawe" - }, - { - "Id": "jbe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Judeo-Berber" - }, - { - "Id": "jbi", - "Scope": "I", - "LanguageType": "E", - "RefName": "Badjiri" - }, - { - "Id": "jbj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Arandai" - }, - { - "Id": "jbk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Barikewa" - }, - { - "Id": "jbm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bijim" - }, - { - "Id": "jbn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nafusi" - }, - { - "Id": "jbo", - "Part2B": "jbo", - "Part2T": "jbo", - "Scope": "I", - "LanguageType": "C", - "RefName": "Lojban" - }, - { - "Id": "jbr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jofotek-Bromnya" - }, - { - "Id": "jbt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jabut\u00ED" - }, - { - "Id": "jbu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jukun Takum" - }, - { - "Id": "jbw", - "Scope": "I", - "LanguageType": "E", - "RefName": "Yawijibaya" - }, - { - "Id": "jcs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jamaican Country Sign Language" - }, - { - "Id": "jct", - "Scope": "I", - "LanguageType": "L", - "RefName": "Krymchak" - }, - { - "Id": "jda", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jad" - }, - { - "Id": "jdg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jadgali" - }, - { - "Id": "jdt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Judeo-Tat" - }, - { - "Id": "jeb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jebero" - }, - { - "Id": "jee", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jerung" - }, - { - "Id": "jeh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jeh" - }, - { - "Id": "jei", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yei" - }, - { - "Id": "jek", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jeri Kuo" - }, - { - "Id": "jel", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yelmek" - }, - { - "Id": "jen", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dza" - }, - { - "Id": "jer", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jere" - }, - { - "Id": "jet", - "Scope": "I", - "LanguageType": "L", - "RefName": "Manem" - }, - { - "Id": "jeu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jonkor Bourmataguil" - }, - { - "Id": "jgb", - "Scope": "I", - "LanguageType": "E", - "RefName": "Ngbee" - }, - { - "Id": "jge", - "Scope": "I", - "LanguageType": "L", - "RefName": "Judeo-Georgian" - }, - { - "Id": "jgk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gwak" - }, - { - "Id": "jgo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngomba" - }, - { - "Id": "jhi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jehai" - }, - { - "Id": "jhs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jhankot Sign Language" - }, - { - "Id": "jia", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jina" - }, - { - "Id": "jib", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jibu" - }, - { - "Id": "jic", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tol" - }, - { - "Id": "jid", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bu (Kaduna State)" - }, - { - "Id": "jie", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jilbe" - }, - { - "Id": "jig", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jingulu" - }, - { - "Id": "jih", - "Scope": "I", - "LanguageType": "L", - "RefName": "sTodsde" - }, - { - "Id": "jii", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jiiddu" - }, - { - "Id": "jil", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jilim" - }, - { - "Id": "jim", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jimi (Cameroon)" - }, - { - "Id": "jio", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jiamao" - }, - { - "Id": "jiq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Guanyinqiao" - }, - { - "Id": "jit", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jita" - }, - { - "Id": "jiu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Youle Jinuo" - }, - { - "Id": "jiv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Shuar" - }, - { - "Id": "jiy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Buyuan Jinuo" - }, - { - "Id": "jje", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jejueo" - }, - { - "Id": "jjr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bankal" - }, - { - "Id": "jka", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kaera" - }, - { - "Id": "jkm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mobwa Karen" - }, - { - "Id": "jko", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kubo" - }, - { - "Id": "jkp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Paku Karen" - }, - { - "Id": "jkr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Koro (India)" - }, - { - "Id": "jks", - "Scope": "I", - "LanguageType": "L", - "RefName": "Amami Koniya Sign Language" - }, - { - "Id": "jku", - "Scope": "I", - "LanguageType": "L", - "RefName": "Labir" - }, - { - "Id": "jle", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngile" - }, - { - "Id": "jls", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jamaican Sign Language" - }, - { - "Id": "jma", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dima" - }, - { - "Id": "jmb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zumbun" - }, - { - "Id": "jmc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Machame" - }, - { - "Id": "jmd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yamdena" - }, - { - "Id": "jmi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jimi (Nigeria)" - }, - { - "Id": "jml", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jumli" - }, - { - "Id": "jmn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Makuri Naga" - }, - { - "Id": "jmr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kamara" - }, - { - "Id": "jms", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mashi (Nigeria)" - }, - { - "Id": "jmw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mouwase" - }, - { - "Id": "jmx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Juxtlahuaca Mixtec" - }, - { - "Id": "jna", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jangshung" - }, - { - "Id": "jnd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jandavra" - }, - { - "Id": "jng", - "Scope": "I", - "LanguageType": "E", - "RefName": "Yangman" - }, - { - "Id": "jni", - "Scope": "I", - "LanguageType": "L", - "RefName": "Janji" - }, - { - "Id": "jnj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yemsa" - }, - { - "Id": "jnl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rawat" - }, - { - "Id": "jns", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jaunsari" - }, - { - "Id": "job", - "Scope": "I", - "LanguageType": "L", - "RefName": "Joba" - }, - { - "Id": "jod", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wojenaka" - }, - { - "Id": "jog", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jogi" - }, - { - "Id": "jor", - "Scope": "I", - "LanguageType": "E", - "RefName": "Jor\u00E1" - }, - { - "Id": "jos", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jordanian Sign Language" - }, - { - "Id": "jow", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jowulu" - }, - { - "Id": "jpa", - "Scope": "I", - "LanguageType": "H", - "RefName": "Jewish Palestinian Aramaic" - }, - { - "Id": "jpn", - "Part2B": "jpn", - "Part2T": "jpn", - "Part1": "ja", - "Scope": "I", - "LanguageType": "L", - "RefName": "Japanese" - }, - { - "Id": "jpr", - "Part2B": "jpr", - "Part2T": "jpr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Judeo-Persian" - }, - { - "Id": "jqr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jaqaru" - }, - { - "Id": "jra", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jarai" - }, - { - "Id": "jrb", - "Part2B": "jrb", - "Part2T": "jrb", - "Scope": "M", - "LanguageType": "L", - "RefName": "Judeo-Arabic" - }, - { - "Id": "jrr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jiru" - }, - { - "Id": "jrt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jakattoe" - }, - { - "Id": "jru", - "Scope": "I", - "LanguageType": "L", - "RefName": "Japrer\u00EDa" - }, - { - "Id": "jsl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Japanese Sign Language" - }, - { - "Id": "jua", - "Scope": "I", - "LanguageType": "L", - "RefName": "J\u00FAma" - }, - { - "Id": "jub", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wannu" - }, - { - "Id": "juc", - "Scope": "I", - "LanguageType": "H", - "RefName": "Jurchen" - }, - { - "Id": "jud", - "Scope": "I", - "LanguageType": "L", - "RefName": "Worodougou" - }, - { - "Id": "juh", - "Scope": "I", - "LanguageType": "L", - "RefName": "H\u00F5ne" - }, - { - "Id": "jui", - "Scope": "I", - "LanguageType": "E", - "RefName": "Ngadjuri" - }, - { - "Id": "juk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wapan" - }, - { - "Id": "jul", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jirel" - }, - { - "Id": "jum", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jumjum" - }, - { - "Id": "jun", - "Scope": "I", - "LanguageType": "L", - "RefName": "Juang" - }, - { - "Id": "juo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jiba" - }, - { - "Id": "jup", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hupd\u00EB" - }, - { - "Id": "jur", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jur\u00FAna" - }, - { - "Id": "jus", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jumla Sign Language" - }, - { - "Id": "jut", - "Scope": "I", - "LanguageType": "H", - "RefName": "Jutish" - }, - { - "Id": "juu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ju" - }, - { - "Id": "juw", - "Scope": "I", - "LanguageType": "L", - "RefName": "W\u00E3pha" - }, - { - "Id": "juy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Juray" - }, - { - "Id": "jvd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Javindo" - }, - { - "Id": "jvn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Caribbean Javanese" - }, - { - "Id": "jwi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jwira-Pepesa" - }, - { - "Id": "jya", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jiarong" - }, - { - "Id": "jye", - "Scope": "I", - "LanguageType": "L", - "RefName": "Judeo-Yemeni Arabic" - }, - { - "Id": "jyy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jaya" - }, - { - "Id": "kaa", - "Part2B": "kaa", - "Part2T": "kaa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kara-Kalpak" - }, - { - "Id": "kab", - "Part2B": "kab", - "Part2T": "kab", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kabyle" - }, - { - "Id": "kac", - "Part2B": "kac", - "Part2T": "kac", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kachin" - }, - { - "Id": "kad", - "Scope": "I", - "LanguageType": "L", - "RefName": "Adara" - }, - { - "Id": "kae", - "Scope": "I", - "LanguageType": "E", - "RefName": "Ketangalan" - }, - { - "Id": "kaf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Katso" - }, - { - "Id": "kag", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kajaman" - }, - { - "Id": "kah", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kara (Central African Republic)" - }, - { - "Id": "kai", - "Scope": "I", - "LanguageType": "L", - "RefName": "Karekare" - }, - { - "Id": "kaj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jju" - }, - { - "Id": "kak", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kalanguya" - }, - { - "Id": "kal", - "Part2B": "kal", - "Part2T": "kal", - "Part1": "kl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kalaallisut" - }, - { - "Id": "kam", - "Part2B": "kam", - "Part2T": "kam", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kamba (Kenya)" - }, - { - "Id": "kan", - "Part2B": "kan", - "Part2T": "kan", - "Part1": "kn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kannada" - }, - { - "Id": "kao", - "Scope": "I", - "LanguageType": "L", - "RefName": "Xaasongaxango" - }, - { - "Id": "kap", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bezhta" - }, - { - "Id": "kaq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Capanahua" - }, - { - "Id": "kas", - "Part2B": "kas", - "Part2T": "kas", - "Part1": "ks", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kashmiri" - }, - { - "Id": "kat", - "Part2B": "geo", - "Part2T": "kat", - "Part1": "ka", - "Scope": "I", - "LanguageType": "L", - "RefName": "Georgian" - }, - { - "Id": "kau", - "Part2B": "kau", - "Part2T": "kau", - "Part1": "kr", - "Scope": "M", - "LanguageType": "L", - "RefName": "Kanuri" - }, - { - "Id": "kav", - "Scope": "I", - "LanguageType": "L", - "RefName": "Katuk\u00EDna" - }, - { - "Id": "kaw", - "Part2B": "kaw", - "Part2T": "kaw", - "Scope": "I", - "LanguageType": "H", - "RefName": "Kawi" - }, - { - "Id": "kax", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kao" - }, - { - "Id": "kay", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kamayur\u00E1" - }, - { - "Id": "kaz", - "Part2B": "kaz", - "Part2T": "kaz", - "Part1": "kk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kazakh" - }, - { - "Id": "kba", - "Scope": "I", - "LanguageType": "E", - "RefName": "Kalarko" - }, - { - "Id": "kbb", - "Scope": "I", - "LanguageType": "E", - "RefName": "Kaxui\u00E2na" - }, - { - "Id": "kbc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kadiw\u00E9u" - }, - { - "Id": "kbd", - "Part2B": "kbd", - "Part2T": "kbd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kabardian" - }, - { - "Id": "kbe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kanju" - }, - { - "Id": "kbg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Khamba" - }, - { - "Id": "kbh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cams\u00E1" - }, - { - "Id": "kbi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kaptiau" - }, - { - "Id": "kbj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kari" - }, - { - "Id": "kbk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Grass Koiari" - }, - { - "Id": "kbl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kanembu" - }, - { - "Id": "kbm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Iwal" - }, - { - "Id": "kbn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kare (Central African Republic)" - }, - { - "Id": "kbo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Keliko" - }, - { - "Id": "kbp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kabiy\u00E8" - }, - { - "Id": "kbq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kamano" - }, - { - "Id": "kbr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kafa" - }, - { - "Id": "kbs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kande" - }, - { - "Id": "kbt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Abadi" - }, - { - "Id": "kbu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kabutra" - }, - { - "Id": "kbv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dera (Indonesia)" - }, - { - "Id": "kbw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kaiep" - }, - { - "Id": "kbx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ap Ma" - }, - { - "Id": "kby", - "Scope": "I", - "LanguageType": "L", - "RefName": "Manga Kanuri" - }, - { - "Id": "kbz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Duhwa" - }, - { - "Id": "kca", - "Scope": "I", - "LanguageType": "L", - "RefName": "Khanty" - }, - { - "Id": "kcb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kawacha" - }, - { - "Id": "kcc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lubila" - }, - { - "Id": "kcd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngk\u00E2lmpw Kanum" - }, - { - "Id": "kce", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kaivi" - }, - { - "Id": "kcf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ukaan" - }, - { - "Id": "kcg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tyap" - }, - { - "Id": "kch", - "Scope": "I", - "LanguageType": "L", - "RefName": "Vono" - }, - { - "Id": "kci", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngyian" - }, - { - "Id": "kcj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kobiana" - }, - { - "Id": "kck", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kalanga" - }, - { - "Id": "kcl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kela (Papua New Guinea)" - }, - { - "Id": "kcm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gula (Central African Republic)" - }, - { - "Id": "kcn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nubi" - }, - { - "Id": "kco", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kinalakna" - }, - { - "Id": "kcp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kanga" - }, - { - "Id": "kcq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kamo" - }, - { - "Id": "kcr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Katla" - }, - { - "Id": "kcs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Koenoem" - }, - { - "Id": "kct", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kaian" - }, - { - "Id": "kcu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kami (Tanzania)" - }, - { - "Id": "kcv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kete" - }, - { - "Id": "kcw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kabwari" - }, - { - "Id": "kcx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kachama-Ganjule" - }, - { - "Id": "kcy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Korandje" - }, - { - "Id": "kcz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Konongo" - }, - { - "Id": "kda", - "Scope": "I", - "LanguageType": "E", - "RefName": "Worimi" - }, - { - "Id": "kdc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kutu" - }, - { - "Id": "kdd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yankunytjatjara" - }, - { - "Id": "kde", - "Scope": "I", - "LanguageType": "L", - "RefName": "Makonde" - }, - { - "Id": "kdf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mamusi" - }, - { - "Id": "kdg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Seba" - }, - { - "Id": "kdh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tem" - }, - { - "Id": "kdi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kumam" - }, - { - "Id": "kdj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Karamojong" - }, - { - "Id": "kdk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Num\u00E8\u00E8" - }, - { - "Id": "kdl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tsikimba" - }, - { - "Id": "kdm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kagoma" - }, - { - "Id": "kdn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kunda" - }, - { - "Id": "kdp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kaningdon-Nindem" - }, - { - "Id": "kdq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Koch" - }, - { - "Id": "kdr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Karaim" - }, - { - "Id": "kdt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kuy" - }, - { - "Id": "kdu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kadaru" - }, - { - "Id": "kdw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Koneraw" - }, - { - "Id": "kdx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kam" - }, - { - "Id": "kdy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Keder" - }, - { - "Id": "kdz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kwaja" - }, - { - "Id": "kea", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kabuverdianu" - }, - { - "Id": "keb", - "Scope": "I", - "LanguageType": "L", - "RefName": "K\u00E9l\u00E9" - }, - { - "Id": "kec", - "Scope": "I", - "LanguageType": "L", - "RefName": "Keiga" - }, - { - "Id": "ked", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kerewe" - }, - { - "Id": "kee", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Keres" - }, - { - "Id": "kef", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kpessi" - }, - { - "Id": "keg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tese" - }, - { - "Id": "keh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Keak" - }, - { - "Id": "kei", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kei" - }, - { - "Id": "kej", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kadar" - }, - { - "Id": "kek", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kekch\u00ED" - }, - { - "Id": "kel", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kela (Democratic Republic of Congo)" - }, - { - "Id": "kem", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kemak" - }, - { - "Id": "ken", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kenyang" - }, - { - "Id": "keo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kakwa" - }, - { - "Id": "kep", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kaikadi" - }, - { - "Id": "keq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kamar" - }, - { - "Id": "ker", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kera" - }, - { - "Id": "kes", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kugbo" - }, - { - "Id": "ket", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ket" - }, - { - "Id": "keu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Akebu" - }, - { - "Id": "kev", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kanikkaran" - }, - { - "Id": "kew", - "Scope": "I", - "LanguageType": "L", - "RefName": "West Kewa" - }, - { - "Id": "kex", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kukna" - }, - { - "Id": "key", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kupia" - }, - { - "Id": "kez", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kukele" - }, - { - "Id": "kfa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kodava" - }, - { - "Id": "kfb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northwestern Kolami" - }, - { - "Id": "kfc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Konda-Dora" - }, - { - "Id": "kfd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Korra Koraga" - }, - { - "Id": "kfe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kota (India)" - }, - { - "Id": "kff", - "Scope": "I", - "LanguageType": "L", - "RefName": "Koya" - }, - { - "Id": "kfg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kudiya" - }, - { - "Id": "kfh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kurichiya" - }, - { - "Id": "kfi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kannada Kurumba" - }, - { - "Id": "kfj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kemiehua" - }, - { - "Id": "kfk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kinnauri" - }, - { - "Id": "kfl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kung" - }, - { - "Id": "kfm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Khunsari" - }, - { - "Id": "kfn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kuk" - }, - { - "Id": "kfo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Koro (C\u00F4te d\u0027Ivoire)" - }, - { - "Id": "kfp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Korwa" - }, - { - "Id": "kfq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Korku" - }, - { - "Id": "kfr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kachhi" - }, - { - "Id": "kfs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bilaspuri" - }, - { - "Id": "kft", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kanjari" - }, - { - "Id": "kfu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Katkari" - }, - { - "Id": "kfv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kurmukar" - }, - { - "Id": "kfw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kharam Naga" - }, - { - "Id": "kfx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kullu Pahari" - }, - { - "Id": "kfy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kumaoni" - }, - { - "Id": "kfz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Koromf\u00E9" - }, - { - "Id": "kga", - "Scope": "I", - "LanguageType": "L", - "RefName": "Koyaga" - }, - { - "Id": "kgb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kawe" - }, - { - "Id": "kge", - "Scope": "I", - "LanguageType": "L", - "RefName": "Komering" - }, - { - "Id": "kgf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kube" - }, - { - "Id": "kgg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kusunda" - }, - { - "Id": "kgi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Selangor Sign Language" - }, - { - "Id": "kgj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gamale Kham" - }, - { - "Id": "kgk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kaiw\u00E1" - }, - { - "Id": "kgl", - "Scope": "I", - "LanguageType": "E", - "RefName": "Kunggari" - }, - { - "Id": "kgn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Karingani" - }, - { - "Id": "kgo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Krongo" - }, - { - "Id": "kgp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kaingang" - }, - { - "Id": "kgq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kamoro" - }, - { - "Id": "kgr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Abun" - }, - { - "Id": "kgs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kumbainggar" - }, - { - "Id": "kgt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Somyev" - }, - { - "Id": "kgu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kobol" - }, - { - "Id": "kgv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Karas" - }, - { - "Id": "kgw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Karon Dori" - }, - { - "Id": "kgx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kamaru" - }, - { - "Id": "kgy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kyerung" - }, - { - "Id": "kha", - "Part2B": "kha", - "Part2T": "kha", - "Scope": "I", - "LanguageType": "L", - "RefName": "Khasi" - }, - { - "Id": "khb", - "Scope": "I", - "LanguageType": "L", - "RefName": "L\u00FC" - }, - { - "Id": "khc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tukang Besi North" - }, - { - "Id": "khd", - "Scope": "I", - "LanguageType": "L", - "RefName": "B\u00E4di Kanum" - }, - { - "Id": "khe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Korowai" - }, - { - "Id": "khf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Khuen" - }, - { - "Id": "khg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Khams Tibetan" - }, - { - "Id": "khh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kehu" - }, - { - "Id": "khj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kuturmi" - }, - { - "Id": "khk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Halh Mongolian" - }, - { - "Id": "khl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lusi" - }, - { - "Id": "khm", - "Part2B": "khm", - "Part2T": "khm", - "Part1": "km", - "Scope": "I", - "LanguageType": "L", - "RefName": "Khmer" - }, - { - "Id": "khn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Khandesi" - }, - { - "Id": "kho", - "Part2B": "kho", - "Part2T": "kho", - "Scope": "I", - "LanguageType": "H", - "RefName": "Khotanese" - }, - { - "Id": "khp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kapori" - }, - { - "Id": "khq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Koyra Chiini Songhay" - }, - { - "Id": "khr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kharia" - }, - { - "Id": "khs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kasua" - }, - { - "Id": "kht", - "Scope": "I", - "LanguageType": "L", - "RefName": "Khamti" - }, - { - "Id": "khu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nkhumbi" - }, - { - "Id": "khv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Khvarshi" - }, - { - "Id": "khw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Khowar" - }, - { - "Id": "khx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kanu" - }, - { - "Id": "khy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kele (Democratic Republic of Congo)" - }, - { - "Id": "khz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Keapara" - }, - { - "Id": "kia", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kim" - }, - { - "Id": "kib", - "Scope": "I", - "LanguageType": "L", - "RefName": "Koalib" - }, - { - "Id": "kic", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kickapoo" - }, - { - "Id": "kid", - "Scope": "I", - "LanguageType": "L", - "RefName": "Koshin" - }, - { - "Id": "kie", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kibet" - }, - { - "Id": "kif", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Parbate Kham" - }, - { - "Id": "kig", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kimaama" - }, - { - "Id": "kih", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kilmeri" - }, - { - "Id": "kii", - "Scope": "I", - "LanguageType": "E", - "RefName": "Kitsai" - }, - { - "Id": "kij", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kilivila" - }, - { - "Id": "kik", - "Part2B": "kik", - "Part2T": "kik", - "Part1": "ki", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kikuyu" - }, - { - "Id": "kil", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kariya" - }, - { - "Id": "kim", - "Scope": "I", - "LanguageType": "L", - "RefName": "Karagas" - }, - { - "Id": "kin", - "Part2B": "kin", - "Part2T": "kin", - "Part1": "rw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kinyarwanda" - }, - { - "Id": "kio", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kiowa" - }, - { - "Id": "kip", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sheshi Kham" - }, - { - "Id": "kiq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kosadle" - }, - { - "Id": "kir", - "Part2B": "kir", - "Part2T": "kir", - "Part1": "ky", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kirghiz" - }, - { - "Id": "kis", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kis" - }, - { - "Id": "kit", - "Scope": "I", - "LanguageType": "L", - "RefName": "Agob" - }, - { - "Id": "kiu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kirmanjki (individual language)" - }, - { - "Id": "kiv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kimbu" - }, - { - "Id": "kiw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northeast Kiwai" - }, - { - "Id": "kix", - "Scope": "I", - "LanguageType": "L", - "RefName": "Khiamniungan Naga" - }, - { - "Id": "kiy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kirikiri" - }, - { - "Id": "kiz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kisi" - }, - { - "Id": "kja", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mlap" - }, - { - "Id": "kjb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Q\u0027anjob\u0027al" - }, - { - "Id": "kjc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Coastal Konjo" - }, - { - "Id": "kjd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Kiwai" - }, - { - "Id": "kje", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kisar" - }, - { - "Id": "kjg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Khmu" - }, - { - "Id": "kjh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Khakas" - }, - { - "Id": "kji", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zabana" - }, - { - "Id": "kjj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Khinalugh" - }, - { - "Id": "kjk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Highland Konjo" - }, - { - "Id": "kjl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Parbate Kham" - }, - { - "Id": "kjm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kh\u00E1ng" - }, - { - "Id": "kjn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kunjen" - }, - { - "Id": "kjo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kinnauri Pahari" - }, - { - "Id": "kjp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pwo Eastern Karen" - }, - { - "Id": "kjq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Keres" - }, - { - "Id": "kjr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kurudu" - }, - { - "Id": "kjs", - "Scope": "I", - "LanguageType": "L", - "RefName": "East Kewa" - }, - { - "Id": "kjt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Phrae Pwo Karen" - }, - { - "Id": "kju", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kashaya" - }, - { - "Id": "kjv", - "Scope": "I", - "LanguageType": "H", - "RefName": "Kaikavian Literary Language" - }, - { - "Id": "kjx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ramopa" - }, - { - "Id": "kjy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Erave" - }, - { - "Id": "kjz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bumthangkha" - }, - { - "Id": "kka", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kakanda" - }, - { - "Id": "kkb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kwerisa" - }, - { - "Id": "kkc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Odoodee" - }, - { - "Id": "kkd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kinuku" - }, - { - "Id": "kke", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kakabe" - }, - { - "Id": "kkf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kalaktang Monpa" - }, - { - "Id": "kkg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mabaka Valley Kalinga" - }, - { - "Id": "kkh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kh\u00FCn" - }, - { - "Id": "kki", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kagulu" - }, - { - "Id": "kkj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kako" - }, - { - "Id": "kkk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kokota" - }, - { - "Id": "kkl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kosarek Yale" - }, - { - "Id": "kkm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kiong" - }, - { - "Id": "kkn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kon Keu" - }, - { - "Id": "kko", - "Scope": "I", - "LanguageType": "L", - "RefName": "Karko" - }, - { - "Id": "kkp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gugubera" - }, - { - "Id": "kkq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kaeku" - }, - { - "Id": "kkr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kir-Balar" - }, - { - "Id": "kks", - "Scope": "I", - "LanguageType": "L", - "RefName": "Giiwo" - }, - { - "Id": "kkt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Koi" - }, - { - "Id": "kku", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tumi" - }, - { - "Id": "kkv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kangean" - }, - { - "Id": "kkw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Teke-Kukuya" - }, - { - "Id": "kkx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kohin" - }, - { - "Id": "kky", - "Scope": "I", - "LanguageType": "L", - "RefName": "Guugu Yimidhirr" - }, - { - "Id": "kkz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kaska" - }, - { - "Id": "kla", - "Scope": "I", - "LanguageType": "E", - "RefName": "Klamath-Modoc" - }, - { - "Id": "klb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kiliwa" - }, - { - "Id": "klc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kolbila" - }, - { - "Id": "kld", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gamilaraay" - }, - { - "Id": "kle", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kulung (Nepal)" - }, - { - "Id": "klf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kendeje" - }, - { - "Id": "klg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tagakaulo" - }, - { - "Id": "klh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Weliki" - }, - { - "Id": "kli", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kalumpang" - }, - { - "Id": "klj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Khalaj" - }, - { - "Id": "klk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kono (Nigeria)" - }, - { - "Id": "kll", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kagan Kalagan" - }, - { - "Id": "klm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Migum" - }, - { - "Id": "kln", - "Scope": "M", - "LanguageType": "L", - "RefName": "Kalenjin" - }, - { - "Id": "klo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kapya" - }, - { - "Id": "klp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kamasa" - }, - { - "Id": "klq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rumu" - }, - { - "Id": "klr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Khaling" - }, - { - "Id": "kls", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kalasha" - }, - { - "Id": "klt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nukna" - }, - { - "Id": "klu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Klao" - }, - { - "Id": "klv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maskelynes" - }, - { - "Id": "klw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tado" - }, - { - "Id": "klx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Koluwawa" - }, - { - "Id": "kly", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kalao" - }, - { - "Id": "klz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kabola" - }, - { - "Id": "kma", - "Scope": "I", - "LanguageType": "L", - "RefName": "Konni" - }, - { - "Id": "kmb", - "Part2B": "kmb", - "Part2T": "kmb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kimbundu" - }, - { - "Id": "kmc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Dong" - }, - { - "Id": "kmd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Majukayang Kalinga" - }, - { - "Id": "kme", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bakole" - }, - { - "Id": "kmf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kare (Papua New Guinea)" - }, - { - "Id": "kmg", - "Scope": "I", - "LanguageType": "L", - "RefName": "K\u00E2te" - }, - { - "Id": "kmh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kalam" - }, - { - "Id": "kmi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kami (Nigeria)" - }, - { - "Id": "kmj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kumarbhag Paharia" - }, - { - "Id": "kmk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Limos Kalinga" - }, - { - "Id": "kml", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tanudan Kalinga" - }, - { - "Id": "kmm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kom (India)" - }, - { - "Id": "kmn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Awtuw" - }, - { - "Id": "kmo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kwoma" - }, - { - "Id": "kmp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gimme" - }, - { - "Id": "kmq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kwama" - }, - { - "Id": "kmr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Kurdish" - }, - { - "Id": "kms", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kamasau" - }, - { - "Id": "kmt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kemtuik" - }, - { - "Id": "kmu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kanite" - }, - { - "Id": "kmv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Karip\u00FAna Creole French" - }, - { - "Id": "kmw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Komo (Democratic Republic of Congo)" - }, - { - "Id": "kmx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Waboda" - }, - { - "Id": "kmy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Koma" - }, - { - "Id": "kmz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Khorasani Turkish" - }, - { - "Id": "kna", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dera (Nigeria)" - }, - { - "Id": "knb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lubuagan Kalinga" - }, - { - "Id": "knc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Central Kanuri" - }, - { - "Id": "knd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Konda" - }, - { - "Id": "kne", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kankanaey" - }, - { - "Id": "knf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mankanya" - }, - { - "Id": "kng", - "Scope": "I", - "LanguageType": "L", - "RefName": "Koongo" - }, - { - "Id": "kni", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kanufi" - }, - { - "Id": "knj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Kanjobal" - }, - { - "Id": "knk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kuranko" - }, - { - "Id": "knl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Keninjal" - }, - { - "Id": "knm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kanamar\u00ED" - }, - { - "Id": "knn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Konkani (individual language)" - }, - { - "Id": "kno", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kono (Sierra Leone)" - }, - { - "Id": "knp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kwanja" - }, - { - "Id": "knq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kintaq" - }, - { - "Id": "knr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kaningra" - }, - { - "Id": "kns", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kensiu" - }, - { - "Id": "knt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Panoan Katuk\u00EDna" - }, - { - "Id": "knu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kono (Guinea)" - }, - { - "Id": "knv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tabo" - }, - { - "Id": "knw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kung-Ekoka" - }, - { - "Id": "knx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kendayan" - }, - { - "Id": "kny", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kanyok" - }, - { - "Id": "knz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kalams\u00E9" - }, - { - "Id": "koa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Konomala" - }, - { - "Id": "koc", - "Scope": "I", - "LanguageType": "E", - "RefName": "Kpati" - }, - { - "Id": "kod", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kodi" - }, - { - "Id": "koe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kacipo-Bale Suri" - }, - { - "Id": "kof", - "Scope": "I", - "LanguageType": "E", - "RefName": "Kubi" - }, - { - "Id": "kog", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cogui" - }, - { - "Id": "koh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Koyo" - }, - { - "Id": "koi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Komi-Permyak" - }, - { - "Id": "kok", - "Part2B": "kok", - "Part2T": "kok", - "Scope": "M", - "LanguageType": "L", - "RefName": "Konkani (macrolanguage)" - }, - { - "Id": "kol", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kol (Papua New Guinea)" - }, - { - "Id": "kom", - "Part2B": "kom", - "Part2T": "kom", - "Part1": "kv", - "Scope": "M", - "LanguageType": "L", - "RefName": "Komi" - }, - { - "Id": "kon", - "Part2B": "kon", - "Part2T": "kon", - "Part1": "kg", - "Scope": "M", - "LanguageType": "L", - "RefName": "Kongo" - }, - { - "Id": "koo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Konzo" - }, - { - "Id": "kop", - "Scope": "I", - "LanguageType": "L", - "RefName": "Waube" - }, - { - "Id": "koq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kota (Gabon)" - }, - { - "Id": "kor", - "Part2B": "kor", - "Part2T": "kor", - "Part1": "ko", - "Scope": "I", - "LanguageType": "L", - "RefName": "Korean" - }, - { - "Id": "kos", - "Part2B": "kos", - "Part2T": "kos", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kosraean" - }, - { - "Id": "kot", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lagwan" - }, - { - "Id": "kou", - "Scope": "I", - "LanguageType": "L", - "RefName": "Koke" - }, - { - "Id": "kov", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kudu-Camo" - }, - { - "Id": "kow", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kugama" - }, - { - "Id": "koy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Koyukon" - }, - { - "Id": "koz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Korak" - }, - { - "Id": "kpa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kutto" - }, - { - "Id": "kpb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mullu Kurumba" - }, - { - "Id": "kpc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Curripaco" - }, - { - "Id": "kpd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Koba" - }, - { - "Id": "kpe", - "Part2B": "kpe", - "Part2T": "kpe", - "Scope": "M", - "LanguageType": "L", - "RefName": "Kpelle" - }, - { - "Id": "kpf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Komba" - }, - { - "Id": "kpg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kapingamarangi" - }, - { - "Id": "kph", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kplang" - }, - { - "Id": "kpi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kofei" - }, - { - "Id": "kpj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Karaj\u00E1" - }, - { - "Id": "kpk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kpan" - }, - { - "Id": "kpl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kpala" - }, - { - "Id": "kpm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Koho" - }, - { - "Id": "kpn", - "Scope": "I", - "LanguageType": "E", - "RefName": "Kepkiriw\u00E1t" - }, - { - "Id": "kpo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ikposo" - }, - { - "Id": "kpq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Korupun-Sela" - }, - { - "Id": "kpr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Korafe-Yegha" - }, - { - "Id": "kps", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tehit" - }, - { - "Id": "kpt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Karata" - }, - { - "Id": "kpu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kafoa" - }, - { - "Id": "kpv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Komi-Zyrian" - }, - { - "Id": "kpw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kobon" - }, - { - "Id": "kpx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mountain Koiali" - }, - { - "Id": "kpy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Koryak" - }, - { - "Id": "kpz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kupsabiny" - }, - { - "Id": "kqa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mum" - }, - { - "Id": "kqb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kovai" - }, - { - "Id": "kqc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Doromu-Koki" - }, - { - "Id": "kqd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Koy Sanjaq Surat" - }, - { - "Id": "kqe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kalagan" - }, - { - "Id": "kqf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kakabai" - }, - { - "Id": "kqg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Khe" - }, - { - "Id": "kqh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kisankasa" - }, - { - "Id": "kqi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Koitabu" - }, - { - "Id": "kqj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Koromira" - }, - { - "Id": "kqk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kotafon Gbe" - }, - { - "Id": "kql", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kyenele" - }, - { - "Id": "kqm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Khisa" - }, - { - "Id": "kqn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kaonde" - }, - { - "Id": "kqo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Krahn" - }, - { - "Id": "kqp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kimr\u00E9" - }, - { - "Id": "kqq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Krenak" - }, - { - "Id": "kqr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kimaragang" - }, - { - "Id": "kqs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Kissi" - }, - { - "Id": "kqt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Klias River Kadazan" - }, - { - "Id": "kqu", - "Scope": "I", - "LanguageType": "E", - "RefName": "Seroa" - }, - { - "Id": "kqv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Okolod" - }, - { - "Id": "kqw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kandas" - }, - { - "Id": "kqx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mser" - }, - { - "Id": "kqy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Koorete" - }, - { - "Id": "kqz", - "Scope": "I", - "LanguageType": "E", - "RefName": "Korana" - }, - { - "Id": "kra", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kumhali" - }, - { - "Id": "krb", - "Scope": "I", - "LanguageType": "E", - "RefName": "Karkin" - }, - { - "Id": "krc", - "Part2B": "krc", - "Part2T": "krc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Karachay-Balkar" - }, - { - "Id": "krd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kairui-Midiki" - }, - { - "Id": "kre", - "Scope": "I", - "LanguageType": "L", - "RefName": "Panar\u00E1" - }, - { - "Id": "krf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Koro (Vanuatu)" - }, - { - "Id": "krh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kurama" - }, - { - "Id": "kri", - "Scope": "I", - "LanguageType": "L", - "RefName": "Krio" - }, - { - "Id": "krj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kinaray-A" - }, - { - "Id": "krk", - "Scope": "I", - "LanguageType": "E", - "RefName": "Kerek" - }, - { - "Id": "krl", - "Part2B": "krl", - "Part2T": "krl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Karelian" - }, - { - "Id": "krn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sapo" - }, - { - "Id": "krp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Durop" - }, - { - "Id": "krr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Krung" - }, - { - "Id": "krs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gbaya (Sudan)" - }, - { - "Id": "krt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tumari Kanuri" - }, - { - "Id": "kru", - "Part2B": "kru", - "Part2T": "kru", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kurukh" - }, - { - "Id": "krv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kavet" - }, - { - "Id": "krw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Krahn" - }, - { - "Id": "krx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Karon" - }, - { - "Id": "kry", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kryts" - }, - { - "Id": "krz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sota Kanum" - }, - { - "Id": "ksb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Shambala" - }, - { - "Id": "ksc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Kalinga" - }, - { - "Id": "ksd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kuanua" - }, - { - "Id": "kse", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kuni" - }, - { - "Id": "ksf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bafia" - }, - { - "Id": "ksg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kusaghe" - }, - { - "Id": "ksh", - "Scope": "I", - "LanguageType": "L", - "RefName": "K\u00F6lsch" - }, - { - "Id": "ksi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Krisa" - }, - { - "Id": "ksj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Uare" - }, - { - "Id": "ksk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kansa" - }, - { - "Id": "ksl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kumalu" - }, - { - "Id": "ksm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kumba" - }, - { - "Id": "ksn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kasiguranin" - }, - { - "Id": "kso", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kofa" - }, - { - "Id": "ksp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kaba" - }, - { - "Id": "ksq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kwaami" - }, - { - "Id": "ksr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Borong" - }, - { - "Id": "kss", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Kisi" - }, - { - "Id": "kst", - "Scope": "I", - "LanguageType": "L", - "RefName": "Winy\u00E9" - }, - { - "Id": "ksu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Khamyang" - }, - { - "Id": "ksv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kusu" - }, - { - "Id": "ksw", - "Scope": "I", - "LanguageType": "L", - "RefName": "S\u0027gaw Karen" - }, - { - "Id": "ksx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kedang" - }, - { - "Id": "ksy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kharia Thar" - }, - { - "Id": "ksz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kodaku" - }, - { - "Id": "kta", - "Scope": "I", - "LanguageType": "L", - "RefName": "Katua" - }, - { - "Id": "ktb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kambaata" - }, - { - "Id": "ktc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kholok" - }, - { - "Id": "ktd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kokata" - }, - { - "Id": "kte", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nubri" - }, - { - "Id": "ktf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kwami" - }, - { - "Id": "ktg", - "Scope": "I", - "LanguageType": "E", - "RefName": "Kalkutung" - }, - { - "Id": "kth", - "Scope": "I", - "LanguageType": "L", - "RefName": "Karanga" - }, - { - "Id": "kti", - "Scope": "I", - "LanguageType": "L", - "RefName": "North Muyu" - }, - { - "Id": "ktj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Plapo Krumen" - }, - { - "Id": "ktk", - "Scope": "I", - "LanguageType": "E", - "RefName": "Kaniet" - }, - { - "Id": "ktl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Koroshi" - }, - { - "Id": "ktm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kurti" - }, - { - "Id": "ktn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kariti\u00E2na" - }, - { - "Id": "kto", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kuot" - }, - { - "Id": "ktp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kaduo" - }, - { - "Id": "ktq", - "Scope": "I", - "LanguageType": "E", - "RefName": "Katabaga" - }, - { - "Id": "kts", - "Scope": "I", - "LanguageType": "L", - "RefName": "South Muyu" - }, - { - "Id": "ktt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ketum" - }, - { - "Id": "ktu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kituba (Democratic Republic of Congo)" - }, - { - "Id": "ktv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Katu" - }, - { - "Id": "ktw", - "Scope": "I", - "LanguageType": "E", - "RefName": "Kato" - }, - { - "Id": "ktx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kaxarar\u00ED" - }, - { - "Id": "kty", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kango (Bas-U\u00E9l\u00E9 District)" - }, - { - "Id": "ktz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ju\u01C0\u02BChoan" - }, - { - "Id": "kua", - "Part2B": "kua", - "Part2T": "kua", - "Part1": "kj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kuanyama" - }, - { - "Id": "kub", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kutep" - }, - { - "Id": "kuc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kwinsu" - }, - { - "Id": "kud", - "Scope": "I", - "LanguageType": "L", - "RefName": "\u0027Auhelawa" - }, - { - "Id": "kue", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kuman (Papua New Guinea)" - }, - { - "Id": "kuf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Katu" - }, - { - "Id": "kug", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kupa" - }, - { - "Id": "kuh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kushi" - }, - { - "Id": "kui", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kuik\u00FAro-Kalap\u00E1lo" - }, - { - "Id": "kuj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kuria" - }, - { - "Id": "kuk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kepo\u0027" - }, - { - "Id": "kul", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kulere" - }, - { - "Id": "kum", - "Part2B": "kum", - "Part2T": "kum", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kumyk" - }, - { - "Id": "kun", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kunama" - }, - { - "Id": "kuo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kumukio" - }, - { - "Id": "kup", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kunimaipa" - }, - { - "Id": "kuq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Karipuna" - }, - { - "Id": "kur", - "Part2B": "kur", - "Part2T": "kur", - "Part1": "ku", - "Scope": "M", - "LanguageType": "L", - "RefName": "Kurdish" - }, - { - "Id": "kus", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kusaal" - }, - { - "Id": "kut", - "Part2B": "kut", - "Part2T": "kut", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ktunaxa" - }, - { - "Id": "kuu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Upper Kuskokwim" - }, - { - "Id": "kuv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kur" - }, - { - "Id": "kuw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kpagua" - }, - { - "Id": "kux", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kukatja" - }, - { - "Id": "kuy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kuuku-Ya\u0027u" - }, - { - "Id": "kuz", - "Scope": "I", - "LanguageType": "E", - "RefName": "Kunza" - }, - { - "Id": "kva", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bagvalal" - }, - { - "Id": "kvb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kubu" - }, - { - "Id": "kvc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kove" - }, - { - "Id": "kvd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kui (Indonesia)" - }, - { - "Id": "kve", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kalabakan" - }, - { - "Id": "kvf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kabalai" - }, - { - "Id": "kvg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kuni-Boazi" - }, - { - "Id": "kvh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Komodo" - }, - { - "Id": "kvi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kwang" - }, - { - "Id": "kvj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Psikye" - }, - { - "Id": "kvk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Korean Sign Language" - }, - { - "Id": "kvl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kayaw" - }, - { - "Id": "kvm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kendem" - }, - { - "Id": "kvn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Border Kuna" - }, - { - "Id": "kvo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dobel" - }, - { - "Id": "kvp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kompane" - }, - { - "Id": "kvq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Geba Karen" - }, - { - "Id": "kvr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kerinci" - }, - { - "Id": "kvt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lahta Karen" - }, - { - "Id": "kvu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yinbaw Karen" - }, - { - "Id": "kvv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kola" - }, - { - "Id": "kvw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wersing" - }, - { - "Id": "kvx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Parkari Koli" - }, - { - "Id": "kvy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yintale Karen" - }, - { - "Id": "kvz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tsakwambo" - }, - { - "Id": "kwa", - "Scope": "I", - "LanguageType": "L", - "RefName": "D\u00E2w" - }, - { - "Id": "kwb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kwa" - }, - { - "Id": "kwc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Likwala" - }, - { - "Id": "kwd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kwaio" - }, - { - "Id": "kwe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kwerba" - }, - { - "Id": "kwf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kwara\u0027ae" - }, - { - "Id": "kwg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sara Kaba Deme" - }, - { - "Id": "kwh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kowiai" - }, - { - "Id": "kwi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Awa-Cuaiquer" - }, - { - "Id": "kwj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kwanga" - }, - { - "Id": "kwk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kwak\u0027wala" - }, - { - "Id": "kwl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kofyar" - }, - { - "Id": "kwm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kwambi" - }, - { - "Id": "kwn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kwangali" - }, - { - "Id": "kwo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kwomtari" - }, - { - "Id": "kwp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kodia" - }, - { - "Id": "kwr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kwer" - }, - { - "Id": "kws", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kwese" - }, - { - "Id": "kwt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kwesten" - }, - { - "Id": "kwu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kwakum" - }, - { - "Id": "kwv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sara Kaba N\u00E1\u00E0" - }, - { - "Id": "kww", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kwinti" - }, - { - "Id": "kwx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Khirwar" - }, - { - "Id": "kwy", - "Scope": "I", - "LanguageType": "L", - "RefName": "San Salvador Kongo" - }, - { - "Id": "kwz", - "Scope": "I", - "LanguageType": "E", - "RefName": "Kwadi" - }, - { - "Id": "kxa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kairiru" - }, - { - "Id": "kxb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Krobu" - }, - { - "Id": "kxc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Konso" - }, - { - "Id": "kxd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Brunei" - }, - { - "Id": "kxf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Manumanaw Karen" - }, - { - "Id": "kxh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Karo (Ethiopia)" - }, - { - "Id": "kxi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Keningau Murut" - }, - { - "Id": "kxj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kulfa" - }, - { - "Id": "kxk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zayein Karen" - }, - { - "Id": "kxm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Khmer" - }, - { - "Id": "kxn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kanowit-Tanjong Melanau" - }, - { - "Id": "kxo", - "Scope": "I", - "LanguageType": "E", - "RefName": "Kano\u00E9" - }, - { - "Id": "kxp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wadiyara Koli" - }, - { - "Id": "kxq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sm\u00E4rky Kanum" - }, - { - "Id": "kxr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Koro (Papua New Guinea)" - }, - { - "Id": "kxs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kangjia" - }, - { - "Id": "kxt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Koiwat" - }, - { - "Id": "kxv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kuvi" - }, - { - "Id": "kxw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Konai" - }, - { - "Id": "kxx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Likuba" - }, - { - "Id": "kxy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kayong" - }, - { - "Id": "kxz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kerewo" - }, - { - "Id": "kya", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kwaya" - }, - { - "Id": "kyb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Butbut Kalinga" - }, - { - "Id": "kyc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kyaka" - }, - { - "Id": "kyd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Karey" - }, - { - "Id": "kye", - "Scope": "I", - "LanguageType": "L", - "RefName": "Krache" - }, - { - "Id": "kyf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kouya" - }, - { - "Id": "kyg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Keyagana" - }, - { - "Id": "kyh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Karok" - }, - { - "Id": "kyi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kiput" - }, - { - "Id": "kyj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Karao" - }, - { - "Id": "kyk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kamayo" - }, - { - "Id": "kyl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kalapuya" - }, - { - "Id": "kym", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kpatili" - }, - { - "Id": "kyn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Binukidnon" - }, - { - "Id": "kyo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kelon" - }, - { - "Id": "kyp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kang" - }, - { - "Id": "kyq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kenga" - }, - { - "Id": "kyr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kuru\u00E1ya" - }, - { - "Id": "kys", - "Scope": "I", - "LanguageType": "L", - "RefName": "Baram Kayan" - }, - { - "Id": "kyt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kayagar" - }, - { - "Id": "kyu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Kayah" - }, - { - "Id": "kyv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kayort" - }, - { - "Id": "kyw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kudmali" - }, - { - "Id": "kyx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rapoisi" - }, - { - "Id": "kyy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kambaira" - }, - { - "Id": "kyz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kayab\u00ED" - }, - { - "Id": "kza", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Karaboro" - }, - { - "Id": "kzb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kaibobo" - }, - { - "Id": "kzc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bondoukou Kulango" - }, - { - "Id": "kzd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kadai" - }, - { - "Id": "kze", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kosena" - }, - { - "Id": "kzf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Da\u0027a Kaili" - }, - { - "Id": "kzg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kikai" - }, - { - "Id": "kzi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kelabit" - }, - { - "Id": "kzk", - "Scope": "I", - "LanguageType": "E", - "RefName": "Kazukuru" - }, - { - "Id": "kzl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kayeli" - }, - { - "Id": "kzm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kais" - }, - { - "Id": "kzn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kokola" - }, - { - "Id": "kzo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kaningi" - }, - { - "Id": "kzp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kaidipang" - }, - { - "Id": "kzq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kaike" - }, - { - "Id": "kzr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Karang" - }, - { - "Id": "kzs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sugut Dusun" - }, - { - "Id": "kzu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kayupulau" - }, - { - "Id": "kzv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Komyandaret" - }, - { - "Id": "kzw", - "Scope": "I", - "LanguageType": "E", - "RefName": "Karir\u00ED-Xoc\u00F3" - }, - { - "Id": "kzx", - "Scope": "I", - "LanguageType": "E", - "RefName": "Kamarian" - }, - { - "Id": "kzy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kango (Tshopo District)" - }, - { - "Id": "kzz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kalabra" - }, - { - "Id": "laa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Subanen" - }, - { - "Id": "lab", - "Scope": "I", - "LanguageType": "H", - "RefName": "Linear A" - }, - { - "Id": "lac", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lacandon" - }, - { - "Id": "lad", - "Part2B": "lad", - "Part2T": "lad", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ladino" - }, - { - "Id": "lae", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pattani" - }, - { - "Id": "laf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lafofa" - }, - { - "Id": "lag", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rangi" - }, - { - "Id": "lah", - "Part2B": "lah", - "Part2T": "lah", - "Scope": "M", - "LanguageType": "L", - "RefName": "Lahnda" - }, - { - "Id": "lai", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lambya" - }, - { - "Id": "laj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lango (Uganda)" - }, - { - "Id": "lal", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lalia" - }, - { - "Id": "lam", - "Part2B": "lam", - "Part2T": "lam", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lamba" - }, - { - "Id": "lan", - "Scope": "I", - "LanguageType": "L", - "RefName": "Laru" - }, - { - "Id": "lao", - "Part2B": "lao", - "Part2T": "lao", - "Part1": "lo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lao" - }, - { - "Id": "lap", - "Scope": "I", - "LanguageType": "L", - "RefName": "Laka (Chad)" - }, - { - "Id": "laq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Qabiao" - }, - { - "Id": "lar", - "Scope": "I", - "LanguageType": "L", - "RefName": "Larteh" - }, - { - "Id": "las", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lama (Togo)" - }, - { - "Id": "lat", - "Part2B": "lat", - "Part2T": "lat", - "Part1": "la", - "Scope": "I", - "LanguageType": "H", - "RefName": "Latin" - }, - { - "Id": "lau", - "Scope": "I", - "LanguageType": "L", - "RefName": "Laba" - }, - { - "Id": "lav", - "Part2B": "lav", - "Part2T": "lav", - "Part1": "lv", - "Scope": "M", - "LanguageType": "L", - "RefName": "Latvian" - }, - { - "Id": "law", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lauje" - }, - { - "Id": "lax", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tiwa" - }, - { - "Id": "lay", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lama Bai" - }, - { - "Id": "laz", - "Scope": "I", - "LanguageType": "E", - "RefName": "Aribwatsa" - }, - { - "Id": "lbb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Label" - }, - { - "Id": "lbc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lakkia" - }, - { - "Id": "lbe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lak" - }, - { - "Id": "lbf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tinani" - }, - { - "Id": "lbg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Laopang" - }, - { - "Id": "lbi", - "Scope": "I", - "LanguageType": "L", - "RefName": "La\u0027bi" - }, - { - "Id": "lbj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ladakhi" - }, - { - "Id": "lbk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Central Bontok" - }, - { - "Id": "lbl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Libon Bikol" - }, - { - "Id": "lbm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lodhi" - }, - { - "Id": "lbn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rmeet" - }, - { - "Id": "lbo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Laven" - }, - { - "Id": "lbq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wampar" - }, - { - "Id": "lbr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lohorung" - }, - { - "Id": "lbs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Libyan Sign Language" - }, - { - "Id": "lbt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lachi" - }, - { - "Id": "lbu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Labu" - }, - { - "Id": "lbv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lavatbura-Lamusong" - }, - { - "Id": "lbw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tolaki" - }, - { - "Id": "lbx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lawangan" - }, - { - "Id": "lby", - "Scope": "I", - "LanguageType": "E", - "RefName": "Lamalama" - }, - { - "Id": "lbz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lardil" - }, - { - "Id": "lcc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Legenyem" - }, - { - "Id": "lcd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lola" - }, - { - "Id": "lce", - "Scope": "I", - "LanguageType": "L", - "RefName": "Loncong" - }, - { - "Id": "lcf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lubu" - }, - { - "Id": "lch", - "Scope": "I", - "LanguageType": "L", - "RefName": "Luchazi" - }, - { - "Id": "lcl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lisela" - }, - { - "Id": "lcm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tungag" - }, - { - "Id": "lcp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Lawa" - }, - { - "Id": "lcq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Luhu" - }, - { - "Id": "lcs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lisabata-Nuniali" - }, - { - "Id": "lda", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kla-Dan" - }, - { - "Id": "ldb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Du\u0303ya" - }, - { - "Id": "ldd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Luri" - }, - { - "Id": "ldg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lenyima" - }, - { - "Id": "ldh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lamja-Dengsa-Tola" - }, - { - "Id": "ldi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Laari" - }, - { - "Id": "ldj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lemoro" - }, - { - "Id": "ldk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Leelau" - }, - { - "Id": "ldl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kaan" - }, - { - "Id": "ldm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Landoma" - }, - { - "Id": "ldn", - "Scope": "I", - "LanguageType": "C", - "RefName": "L\u00E1adan" - }, - { - "Id": "ldo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Loo" - }, - { - "Id": "ldp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tso" - }, - { - "Id": "ldq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lufu" - }, - { - "Id": "lea", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lega-Shabunda" - }, - { - "Id": "leb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lala-Bisa" - }, - { - "Id": "lec", - "Scope": "I", - "LanguageType": "L", - "RefName": "Leco" - }, - { - "Id": "led", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lendu" - }, - { - "Id": "lee", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ly\u00E9l\u00E9" - }, - { - "Id": "lef", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lelemi" - }, - { - "Id": "leh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lenje" - }, - { - "Id": "lei", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lemio" - }, - { - "Id": "lej", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lengola" - }, - { - "Id": "lek", - "Scope": "I", - "LanguageType": "L", - "RefName": "Leipon" - }, - { - "Id": "lel", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lele (Democratic Republic of Congo)" - }, - { - "Id": "lem", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nomaande" - }, - { - "Id": "len", - "Scope": "I", - "LanguageType": "E", - "RefName": "Lenca" - }, - { - "Id": "leo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Leti (Cameroon)" - }, - { - "Id": "lep", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lepcha" - }, - { - "Id": "leq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lembena" - }, - { - "Id": "ler", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lenkau" - }, - { - "Id": "les", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lese" - }, - { - "Id": "let", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lesing-Gelimi" - }, - { - "Id": "leu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kara (Papua New Guinea)" - }, - { - "Id": "lev", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lamma" - }, - { - "Id": "lew", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ledo Kaili" - }, - { - "Id": "lex", - "Scope": "I", - "LanguageType": "L", - "RefName": "Luang" - }, - { - "Id": "ley", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lemolang" - }, - { - "Id": "lez", - "Part2B": "lez", - "Part2T": "lez", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lezghian" - }, - { - "Id": "lfa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lefa" - }, - { - "Id": "lfb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Buu (Cameroon)" - }, - { - "Id": "lfn", - "Scope": "I", - "LanguageType": "C", - "RefName": "Lingua Franca Nova" - }, - { - "Id": "lga", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lungga" - }, - { - "Id": "lgb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Laghu" - }, - { - "Id": "lgg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lugbara" - }, - { - "Id": "lgh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Laghuu" - }, - { - "Id": "lgi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lengilu" - }, - { - "Id": "lgk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lingarak" - }, - { - "Id": "lgl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wala" - }, - { - "Id": "lgm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lega-Mwenga" - }, - { - "Id": "lgn", - "Scope": "I", - "LanguageType": "L", - "RefName": "T\u0027apo" - }, - { - "Id": "lgo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lango (South Sudan)" - }, - { - "Id": "lgq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Logba" - }, - { - "Id": "lgr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lengo" - }, - { - "Id": "lgs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Guinea-Bissau Sign Language" - }, - { - "Id": "lgt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pahi" - }, - { - "Id": "lgu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Longgu" - }, - { - "Id": "lgz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ligenza" - }, - { - "Id": "lha", - "Scope": "I", - "LanguageType": "L", - "RefName": "Laha (Viet Nam)" - }, - { - "Id": "lhh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Laha (Indonesia)" - }, - { - "Id": "lhi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lahu Shi" - }, - { - "Id": "lhl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lahul Lohar" - }, - { - "Id": "lhm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lhomi" - }, - { - "Id": "lhn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lahanan" - }, - { - "Id": "lhp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lhokpu" - }, - { - "Id": "lhs", - "Scope": "I", - "LanguageType": "E", - "RefName": "Mlahs\u00F6" - }, - { - "Id": "lht", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lo-Toga" - }, - { - "Id": "lhu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lahu" - }, - { - "Id": "lia", - "Scope": "I", - "LanguageType": "L", - "RefName": "West-Central Limba" - }, - { - "Id": "lib", - "Scope": "I", - "LanguageType": "L", - "RefName": "Likum" - }, - { - "Id": "lic", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hlai" - }, - { - "Id": "lid", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nyindrou" - }, - { - "Id": "lie", - "Scope": "I", - "LanguageType": "L", - "RefName": "Likila" - }, - { - "Id": "lif", - "Scope": "I", - "LanguageType": "L", - "RefName": "Limbu" - }, - { - "Id": "lig", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ligbi" - }, - { - "Id": "lih", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lihir" - }, - { - "Id": "lij", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ligurian" - }, - { - "Id": "lik", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lika" - }, - { - "Id": "lil", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lillooet" - }, - { - "Id": "lim", - "Part2B": "lim", - "Part2T": "lim", - "Part1": "li", - "Scope": "I", - "LanguageType": "L", - "RefName": "Limburgan" - }, - { - "Id": "lin", - "Part2B": "lin", - "Part2T": "lin", - "Part1": "ln", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lingala" - }, - { - "Id": "lio", - "Scope": "I", - "LanguageType": "L", - "RefName": "Liki" - }, - { - "Id": "lip", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sekpele" - }, - { - "Id": "liq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Libido" - }, - { - "Id": "lir", - "Scope": "I", - "LanguageType": "L", - "RefName": "Liberian English" - }, - { - "Id": "lis", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lisu" - }, - { - "Id": "lit", - "Part2B": "lit", - "Part2T": "lit", - "Part1": "lt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lithuanian" - }, - { - "Id": "liu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Logorik" - }, - { - "Id": "liv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Liv" - }, - { - "Id": "liw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Col" - }, - { - "Id": "lix", - "Scope": "I", - "LanguageType": "L", - "RefName": "Liabuku" - }, - { - "Id": "liy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Banda-Bambari" - }, - { - "Id": "liz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Libinza" - }, - { - "Id": "lja", - "Scope": "I", - "LanguageType": "E", - "RefName": "Golpa" - }, - { - "Id": "lje", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rampi" - }, - { - "Id": "lji", - "Scope": "I", - "LanguageType": "L", - "RefName": "Laiyolo" - }, - { - "Id": "ljl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Li\u0027o" - }, - { - "Id": "ljp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lampung Api" - }, - { - "Id": "ljw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yirandali" - }, - { - "Id": "ljx", - "Scope": "I", - "LanguageType": "E", - "RefName": "Yuru" - }, - { - "Id": "lka", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lakalei" - }, - { - "Id": "lkb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kabras" - }, - { - "Id": "lkc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kucong" - }, - { - "Id": "lkd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lakond\u00EA" - }, - { - "Id": "lke", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kenyi" - }, - { - "Id": "lkh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lakha" - }, - { - "Id": "lki", - "Scope": "I", - "LanguageType": "L", - "RefName": "Laki" - }, - { - "Id": "lkj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Remun" - }, - { - "Id": "lkl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Laeko-Libuat" - }, - { - "Id": "lkm", - "Scope": "I", - "LanguageType": "E", - "RefName": "Kalaamaya" - }, - { - "Id": "lkn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lakon" - }, - { - "Id": "lko", - "Scope": "I", - "LanguageType": "L", - "RefName": "Khayo" - }, - { - "Id": "lkr", - "Scope": "I", - "LanguageType": "L", - "RefName": "P\u00E4ri" - }, - { - "Id": "lks", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kisa" - }, - { - "Id": "lkt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lakota" - }, - { - "Id": "lku", - "Scope": "I", - "LanguageType": "E", - "RefName": "Kungkari" - }, - { - "Id": "lky", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lokoya" - }, - { - "Id": "lla", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lala-Roba" - }, - { - "Id": "llb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lolo" - }, - { - "Id": "llc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lele (Guinea)" - }, - { - "Id": "lld", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ladin" - }, - { - "Id": "lle", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lele (Papua New Guinea)" - }, - { - "Id": "llf", - "Scope": "I", - "LanguageType": "E", - "RefName": "Hermit" - }, - { - "Id": "llg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lole" - }, - { - "Id": "llh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lamu" - }, - { - "Id": "lli", - "Scope": "I", - "LanguageType": "L", - "RefName": "Teke-Laali" - }, - { - "Id": "llj", - "Scope": "I", - "LanguageType": "E", - "RefName": "Ladji Ladji" - }, - { - "Id": "llk", - "Scope": "I", - "LanguageType": "E", - "RefName": "Lelak" - }, - { - "Id": "lll", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lilau" - }, - { - "Id": "llm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lasalimu" - }, - { - "Id": "lln", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lele (Chad)" - }, - { - "Id": "llp", - "Scope": "I", - "LanguageType": "L", - "RefName": "North Efate" - }, - { - "Id": "llq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lolak" - }, - { - "Id": "lls", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lithuanian Sign Language" - }, - { - "Id": "llu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lau" - }, - { - "Id": "llx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lauan" - }, - { - "Id": "lma", - "Scope": "I", - "LanguageType": "L", - "RefName": "East Limba" - }, - { - "Id": "lmb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Merei" - }, - { - "Id": "lmc", - "Scope": "I", - "LanguageType": "E", - "RefName": "Limilngan" - }, - { - "Id": "lmd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lumun" - }, - { - "Id": "lme", - "Scope": "I", - "LanguageType": "L", - "RefName": "P\u00E9v\u00E9" - }, - { - "Id": "lmf", - "Scope": "I", - "LanguageType": "L", - "RefName": "South Lembata" - }, - { - "Id": "lmg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lamogai" - }, - { - "Id": "lmh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lambichhong" - }, - { - "Id": "lmi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lombi" - }, - { - "Id": "lmj", - "Scope": "I", - "LanguageType": "L", - "RefName": "West Lembata" - }, - { - "Id": "lmk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lamkang" - }, - { - "Id": "lml", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hano" - }, - { - "Id": "lmn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lambadi" - }, - { - "Id": "lmo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lombard" - }, - { - "Id": "lmp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Limbum" - }, - { - "Id": "lmq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lamatuka" - }, - { - "Id": "lmr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lamalera" - }, - { - "Id": "lmu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lamenu" - }, - { - "Id": "lmv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lomaiviti" - }, - { - "Id": "lmw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lake Miwok" - }, - { - "Id": "lmx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Laimbue" - }, - { - "Id": "lmy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lamboya" - }, - { - "Id": "lna", - "Scope": "I", - "LanguageType": "L", - "RefName": "Langbashe" - }, - { - "Id": "lnb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mbalanhu" - }, - { - "Id": "lnd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lundayeh" - }, - { - "Id": "lng", - "Scope": "I", - "LanguageType": "H", - "RefName": "Langobardic" - }, - { - "Id": "lnh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lanoh" - }, - { - "Id": "lni", - "Scope": "I", - "LanguageType": "L", - "RefName": "Daantanai\u0027" - }, - { - "Id": "lnj", - "Scope": "I", - "LanguageType": "E", - "RefName": "Leningitij" - }, - { - "Id": "lnl", - "Scope": "I", - "LanguageType": "L", - "RefName": "South Central Banda" - }, - { - "Id": "lnm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Langam" - }, - { - "Id": "lnn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lorediakarkar" - }, - { - "Id": "lns", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lamnso\u0027" - }, - { - "Id": "lnu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Longuda" - }, - { - "Id": "lnw", - "Scope": "I", - "LanguageType": "E", - "RefName": "Lanima" - }, - { - "Id": "lnz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lonzo" - }, - { - "Id": "loa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Loloda" - }, - { - "Id": "lob", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lobi" - }, - { - "Id": "loc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Inonhan" - }, - { - "Id": "loe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Saluan" - }, - { - "Id": "lof", - "Scope": "I", - "LanguageType": "L", - "RefName": "Logol" - }, - { - "Id": "log", - "Scope": "I", - "LanguageType": "L", - "RefName": "Logo" - }, - { - "Id": "loh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Laarim" - }, - { - "Id": "loi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Loma (C\u00F4te d\u0027Ivoire)" - }, - { - "Id": "loj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lou" - }, - { - "Id": "lok", - "Scope": "I", - "LanguageType": "L", - "RefName": "Loko" - }, - { - "Id": "lol", - "Part2B": "lol", - "Part2T": "lol", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mongo" - }, - { - "Id": "lom", - "Scope": "I", - "LanguageType": "L", - "RefName": "Loma (Liberia)" - }, - { - "Id": "lon", - "Scope": "I", - "LanguageType": "L", - "RefName": "Malawi Lomwe" - }, - { - "Id": "loo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lombo" - }, - { - "Id": "lop", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lopa" - }, - { - "Id": "loq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lobala" - }, - { - "Id": "lor", - "Scope": "I", - "LanguageType": "L", - "RefName": "T\u00E9\u00E9n" - }, - { - "Id": "los", - "Scope": "I", - "LanguageType": "L", - "RefName": "Loniu" - }, - { - "Id": "lot", - "Scope": "I", - "LanguageType": "L", - "RefName": "Otuho" - }, - { - "Id": "lou", - "Scope": "I", - "LanguageType": "L", - "RefName": "Louisiana Creole" - }, - { - "Id": "lov", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lopi" - }, - { - "Id": "low", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tampias Lobu" - }, - { - "Id": "lox", - "Scope": "I", - "LanguageType": "L", - "RefName": "Loun" - }, - { - "Id": "loy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Loke" - }, - { - "Id": "loz", - "Part2B": "loz", - "Part2T": "loz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lozi" - }, - { - "Id": "lpa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lelepa" - }, - { - "Id": "lpe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lepki" - }, - { - "Id": "lpn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Long Phuri Naga" - }, - { - "Id": "lpo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lipo" - }, - { - "Id": "lpx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lopit" - }, - { - "Id": "lqr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Logir" - }, - { - "Id": "lra", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rara Bakati\u0027" - }, - { - "Id": "lrc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Luri" - }, - { - "Id": "lre", - "Scope": "I", - "LanguageType": "E", - "RefName": "Laurentian" - }, - { - "Id": "lrg", - "Scope": "I", - "LanguageType": "E", - "RefName": "Laragia" - }, - { - "Id": "lri", - "Scope": "I", - "LanguageType": "L", - "RefName": "Marachi" - }, - { - "Id": "lrk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Loarki" - }, - { - "Id": "lrl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lari" - }, - { - "Id": "lrm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Marama" - }, - { - "Id": "lrn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lorang" - }, - { - "Id": "lro", - "Scope": "I", - "LanguageType": "L", - "RefName": "Laro" - }, - { - "Id": "lrr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Yamphu" - }, - { - "Id": "lrt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Larantuka Malay" - }, - { - "Id": "lrv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Larevat" - }, - { - "Id": "lrz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lemerig" - }, - { - "Id": "lsa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lasgerdi" - }, - { - "Id": "lsb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Burundian Sign Language" - }, - { - "Id": "lsc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Albarradas Sign Language" - }, - { - "Id": "lsd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lishana Deni" - }, - { - "Id": "lse", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lusengo" - }, - { - "Id": "lsh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lish" - }, - { - "Id": "lsi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lashi" - }, - { - "Id": "lsl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Latvian Sign Language" - }, - { - "Id": "lsm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Saamia" - }, - { - "Id": "lsn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tibetan Sign Language" - }, - { - "Id": "lso", - "Scope": "I", - "LanguageType": "L", - "RefName": "Laos Sign Language" - }, - { - "Id": "lsp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Panamanian Sign Language" - }, - { - "Id": "lsr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aruop" - }, - { - "Id": "lss", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lasi" - }, - { - "Id": "lst", - "Scope": "I", - "LanguageType": "L", - "RefName": "Trinidad and Tobago Sign Language" - }, - { - "Id": "lsv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sivia Sign Language" - }, - { - "Id": "lsw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Seychelles Sign Language" - }, - { - "Id": "lsy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mauritian Sign Language" - }, - { - "Id": "ltc", - "Scope": "I", - "LanguageType": "H", - "RefName": "Late Middle Chinese" - }, - { - "Id": "ltg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Latgalian" - }, - { - "Id": "lth", - "Scope": "I", - "LanguageType": "L", - "RefName": "Thur" - }, - { - "Id": "lti", - "Scope": "I", - "LanguageType": "L", - "RefName": "Leti (Indonesia)" - }, - { - "Id": "ltn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Latund\u00EA" - }, - { - "Id": "lto", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tsotso" - }, - { - "Id": "lts", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tachoni" - }, - { - "Id": "ltu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Latu" - }, - { - "Id": "ltz", - "Part2B": "ltz", - "Part2T": "ltz", - "Part1": "lb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Luxembourgish" - }, - { - "Id": "lua", - "Part2B": "lua", - "Part2T": "lua", - "Scope": "I", - "LanguageType": "L", - "RefName": "Luba-Lulua" - }, - { - "Id": "lub", - "Part2B": "lub", - "Part2T": "lub", - "Part1": "lu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Luba-Katanga" - }, - { - "Id": "luc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aringa" - }, - { - "Id": "lud", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ludian" - }, - { - "Id": "lue", - "Scope": "I", - "LanguageType": "L", - "RefName": "Luvale" - }, - { - "Id": "luf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Laua" - }, - { - "Id": "lug", - "Part2B": "lug", - "Part2T": "lug", - "Part1": "lg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ganda" - }, - { - "Id": "luh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Leizhou Chinese" - }, - { - "Id": "lui", - "Part2B": "lui", - "Part2T": "lui", - "Scope": "I", - "LanguageType": "E", - "RefName": "Luise\u00F1o" - }, - { - "Id": "luj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Luna" - }, - { - "Id": "luk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lunanakha" - }, - { - "Id": "lul", - "Scope": "I", - "LanguageType": "L", - "RefName": "Olu\u0027bo" - }, - { - "Id": "lum", - "Scope": "I", - "LanguageType": "L", - "RefName": "Luimbi" - }, - { - "Id": "lun", - "Part2B": "lun", - "Part2T": "lun", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lunda" - }, - { - "Id": "luo", - "Part2B": "luo", - "Part2T": "luo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Luo (Kenya and Tanzania)" - }, - { - "Id": "lup", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lumbu" - }, - { - "Id": "luq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lucumi" - }, - { - "Id": "lur", - "Scope": "I", - "LanguageType": "L", - "RefName": "Laura" - }, - { - "Id": "lus", - "Part2B": "lus", - "Part2T": "lus", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lushai" - }, - { - "Id": "lut", - "Scope": "I", - "LanguageType": "E", - "RefName": "Lushootseed" - }, - { - "Id": "luu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lumba-Yakkha" - }, - { - "Id": "luv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Luwati" - }, - { - "Id": "luw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Luo (Cameroon)" - }, - { - "Id": "luy", - "Scope": "M", - "LanguageType": "L", - "RefName": "Luyia" - }, - { - "Id": "luz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Luri" - }, - { - "Id": "lva", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maku\u0027a" - }, - { - "Id": "lvi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lavi" - }, - { - "Id": "lvk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lavukaleve" - }, - { - "Id": "lvl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lwel" - }, - { - "Id": "lvs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Standard Latvian" - }, - { - "Id": "lvu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Levuka" - }, - { - "Id": "lwa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lwalu" - }, - { - "Id": "lwe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lewo Eleng" - }, - { - "Id": "lwg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wanga" - }, - { - "Id": "lwh", - "Scope": "I", - "LanguageType": "L", - "RefName": "White Lachi" - }, - { - "Id": "lwl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Lawa" - }, - { - "Id": "lwm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Laomian" - }, - { - "Id": "lwo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Luwo" - }, - { - "Id": "lws", - "Scope": "I", - "LanguageType": "L", - "RefName": "Malawian Sign Language" - }, - { - "Id": "lwt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lewotobi" - }, - { - "Id": "lwu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lawu" - }, - { - "Id": "lww", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lewo" - }, - { - "Id": "lxm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lakurumau" - }, - { - "Id": "lya", - "Scope": "I", - "LanguageType": "L", - "RefName": "Layakha" - }, - { - "Id": "lyg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lyngngam" - }, - { - "Id": "lyn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Luyana" - }, - { - "Id": "lzh", - "Scope": "I", - "LanguageType": "H", - "RefName": "Literary Chinese" - }, - { - "Id": "lzl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Litzlitz" - }, - { - "Id": "lzn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Leinong Naga" - }, - { - "Id": "lzz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Laz" - }, - { - "Id": "maa", - "Scope": "I", - "LanguageType": "L", - "RefName": "San Jer\u00F3nimo Tec\u00F3atl Mazatec" - }, - { - "Id": "mab", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yutanduchi Mixtec" - }, - { - "Id": "mad", - "Part2B": "mad", - "Part2T": "mad", - "Scope": "I", - "LanguageType": "L", - "RefName": "Madurese" - }, - { - "Id": "mae", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bo-Rukul" - }, - { - "Id": "maf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mafa" - }, - { - "Id": "mag", - "Part2B": "mag", - "Part2T": "mag", - "Scope": "I", - "LanguageType": "L", - "RefName": "Magahi" - }, - { - "Id": "mah", - "Part2B": "mah", - "Part2T": "mah", - "Part1": "mh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Marshallese" - }, - { - "Id": "mai", - "Part2B": "mai", - "Part2T": "mai", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maithili" - }, - { - "Id": "maj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jalapa De D\u00EDaz Mazatec" - }, - { - "Id": "mak", - "Part2B": "mak", - "Part2T": "mak", - "Scope": "I", - "LanguageType": "L", - "RefName": "Makasar" - }, - { - "Id": "mal", - "Part2B": "mal", - "Part2T": "mal", - "Part1": "ml", - "Scope": "I", - "LanguageType": "L", - "RefName": "Malayalam" - }, - { - "Id": "mam", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mam" - }, - { - "Id": "man", - "Part2B": "man", - "Part2T": "man", - "Scope": "M", - "LanguageType": "L", - "RefName": "Mandingo" - }, - { - "Id": "maq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chiquihuitl\u00E1n Mazatec" - }, - { - "Id": "mar", - "Part2B": "mar", - "Part2T": "mar", - "Part1": "mr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Marathi" - }, - { - "Id": "mas", - "Part2B": "mas", - "Part2T": "mas", - "Scope": "I", - "LanguageType": "L", - "RefName": "Masai" - }, - { - "Id": "mat", - "Scope": "I", - "LanguageType": "L", - "RefName": "San Francisco Matlatzinca" - }, - { - "Id": "mau", - "Scope": "I", - "LanguageType": "L", - "RefName": "Huautla Mazatec" - }, - { - "Id": "mav", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sater\u00E9-Maw\u00E9" - }, - { - "Id": "maw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mampruli" - }, - { - "Id": "max", - "Scope": "I", - "LanguageType": "L", - "RefName": "North Moluccan Malay" - }, - { - "Id": "maz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Central Mazahua" - }, - { - "Id": "mba", - "Scope": "I", - "LanguageType": "L", - "RefName": "Higaonon" - }, - { - "Id": "mbb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Bukidnon Manobo" - }, - { - "Id": "mbc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Macushi" - }, - { - "Id": "mbd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dibabawon Manobo" - }, - { - "Id": "mbe", - "Scope": "I", - "LanguageType": "E", - "RefName": "Molale" - }, - { - "Id": "mbf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Baba Malay" - }, - { - "Id": "mbh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mangseng" - }, - { - "Id": "mbi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ilianen Manobo" - }, - { - "Id": "mbj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nad\u00EBb" - }, - { - "Id": "mbk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Malol" - }, - { - "Id": "mbl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maxakal\u00ED" - }, - { - "Id": "mbm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ombamba" - }, - { - "Id": "mbn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Macagu\u00E1n" - }, - { - "Id": "mbo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mbo (Cameroon)" - }, - { - "Id": "mbp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Malayo" - }, - { - "Id": "mbq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maisin" - }, - { - "Id": "mbr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nukak Mak\u00FA" - }, - { - "Id": "mbs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sarangani Manobo" - }, - { - "Id": "mbt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Matigsalug Manobo" - }, - { - "Id": "mbu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mbula-Bwazza" - }, - { - "Id": "mbv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mbulungish" - }, - { - "Id": "mbw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maring" - }, - { - "Id": "mbx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mari (East Sepik Province)" - }, - { - "Id": "mby", - "Scope": "I", - "LanguageType": "L", - "RefName": "Memoni" - }, - { - "Id": "mbz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Amoltepec Mixtec" - }, - { - "Id": "mca", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maca" - }, - { - "Id": "mcb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Machiguenga" - }, - { - "Id": "mcc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bitur" - }, - { - "Id": "mcd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sharanahua" - }, - { - "Id": "mce", - "Scope": "I", - "LanguageType": "L", - "RefName": "Itundujia Mixtec" - }, - { - "Id": "mcf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mats\u00E9s" - }, - { - "Id": "mcg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mapoyo" - }, - { - "Id": "mch", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maquiritari" - }, - { - "Id": "mci", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mese" - }, - { - "Id": "mcj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mvanip" - }, - { - "Id": "mck", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mbunda" - }, - { - "Id": "mcl", - "Scope": "I", - "LanguageType": "E", - "RefName": "Macaguaje" - }, - { - "Id": "mcm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Malaccan Creole Portuguese" - }, - { - "Id": "mcn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Masana" - }, - { - "Id": "mco", - "Scope": "I", - "LanguageType": "L", - "RefName": "Coatl\u00E1n Mixe" - }, - { - "Id": "mcp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Makaa" - }, - { - "Id": "mcq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ese" - }, - { - "Id": "mcr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Menya" - }, - { - "Id": "mcs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mambai" - }, - { - "Id": "mct", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mengisa" - }, - { - "Id": "mcu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cameroon Mambila" - }, - { - "Id": "mcv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Minanibai" - }, - { - "Id": "mcw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mawa (Chad)" - }, - { - "Id": "mcx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mpiemo" - }, - { - "Id": "mcy", - "Scope": "I", - "LanguageType": "L", - "RefName": "South Watut" - }, - { - "Id": "mcz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mawan" - }, - { - "Id": "mda", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mada (Nigeria)" - }, - { - "Id": "mdb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Morigi" - }, - { - "Id": "mdc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Soq" - }, - { - "Id": "mdd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mbum" - }, - { - "Id": "mde", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maba (Chad)" - }, - { - "Id": "mdf", - "Part2B": "mdf", - "Part2T": "mdf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Moksha" - }, - { - "Id": "mdg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Massalat" - }, - { - "Id": "mdh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maguindanaon" - }, - { - "Id": "mdi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mamvu" - }, - { - "Id": "mdj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mangbetu" - }, - { - "Id": "mdk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mangbutu" - }, - { - "Id": "mdl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maltese Sign Language" - }, - { - "Id": "mdm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mayogo" - }, - { - "Id": "mdn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mbati" - }, - { - "Id": "mdp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mbala" - }, - { - "Id": "mdq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mbole" - }, - { - "Id": "mdr", - "Part2B": "mdr", - "Part2T": "mdr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mandar" - }, - { - "Id": "mds", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maria (Papua New Guinea)" - }, - { - "Id": "mdt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mbere" - }, - { - "Id": "mdu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mboko" - }, - { - "Id": "mdv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Santa Luc\u00EDa Monteverde Mixtec" - }, - { - "Id": "mdw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mbosi" - }, - { - "Id": "mdx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dizin" - }, - { - "Id": "mdy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Male" - }, - { - "Id": "mdz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Suru\u00ED Do Par\u00E1" - }, - { - "Id": "mea", - "Scope": "I", - "LanguageType": "L", - "RefName": "Menka" - }, - { - "Id": "meb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ikobi" - }, - { - "Id": "mec", - "Scope": "I", - "LanguageType": "L", - "RefName": "Marra" - }, - { - "Id": "med", - "Scope": "I", - "LanguageType": "L", - "RefName": "Melpa" - }, - { - "Id": "mee", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mengen" - }, - { - "Id": "mef", - "Scope": "I", - "LanguageType": "L", - "RefName": "Megam" - }, - { - "Id": "meh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southwestern Tlaxiaco Mixtec" - }, - { - "Id": "mei", - "Scope": "I", - "LanguageType": "L", - "RefName": "Midob" - }, - { - "Id": "mej", - "Scope": "I", - "LanguageType": "L", - "RefName": "Meyah" - }, - { - "Id": "mek", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mekeo" - }, - { - "Id": "mel", - "Scope": "I", - "LanguageType": "L", - "RefName": "Central Melanau" - }, - { - "Id": "mem", - "Scope": "I", - "LanguageType": "E", - "RefName": "Mangala" - }, - { - "Id": "men", - "Part2B": "men", - "Part2T": "men", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mende (Sierra Leone)" - }, - { - "Id": "meo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kedah Malay" - }, - { - "Id": "mep", - "Scope": "I", - "LanguageType": "L", - "RefName": "Miriwoong" - }, - { - "Id": "meq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Merey" - }, - { - "Id": "mer", - "Scope": "I", - "LanguageType": "L", - "RefName": "Meru" - }, - { - "Id": "mes", - "Scope": "I", - "LanguageType": "L", - "RefName": "Masmaje" - }, - { - "Id": "met", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mato" - }, - { - "Id": "meu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Motu" - }, - { - "Id": "mev", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mano" - }, - { - "Id": "mew", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maaka" - }, - { - "Id": "mey", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hassaniyya" - }, - { - "Id": "mez", - "Scope": "I", - "LanguageType": "L", - "RefName": "Menominee" - }, - { - "Id": "mfa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pattani Malay" - }, - { - "Id": "mfb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bangka" - }, - { - "Id": "mfc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mba" - }, - { - "Id": "mfd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mendankwe-Nkwen" - }, - { - "Id": "mfe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Morisyen" - }, - { - "Id": "mff", - "Scope": "I", - "LanguageType": "L", - "RefName": "Naki" - }, - { - "Id": "mfg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mogofin" - }, - { - "Id": "mfh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Matal" - }, - { - "Id": "mfi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wandala" - }, - { - "Id": "mfj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mefele" - }, - { - "Id": "mfk", - "Scope": "I", - "LanguageType": "L", - "RefName": "North Mofu" - }, - { - "Id": "mfl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Putai" - }, - { - "Id": "mfm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Marghi South" - }, - { - "Id": "mfn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cross River Mbembe" - }, - { - "Id": "mfo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mbe" - }, - { - "Id": "mfp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Makassar Malay" - }, - { - "Id": "mfq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Moba" - }, - { - "Id": "mfr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Marrithiyel" - }, - { - "Id": "mfs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mexican Sign Language" - }, - { - "Id": "mft", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mokerang" - }, - { - "Id": "mfu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mbwela" - }, - { - "Id": "mfv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mandjak" - }, - { - "Id": "mfw", - "Scope": "I", - "LanguageType": "E", - "RefName": "Mulaha" - }, - { - "Id": "mfx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Melo" - }, - { - "Id": "mfy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mayo" - }, - { - "Id": "mfz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mabaan" - }, - { - "Id": "mga", - "Part2B": "mga", - "Part2T": "mga", - "Scope": "I", - "LanguageType": "H", - "RefName": "Middle Irish (900-1200)" - }, - { - "Id": "mgb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mararit" - }, - { - "Id": "mgc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Morokodo" - }, - { - "Id": "mgd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Moru" - }, - { - "Id": "mge", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mango" - }, - { - "Id": "mgf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maklew" - }, - { - "Id": "mgg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mpumpong" - }, - { - "Id": "mgh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Makhuwa-Meetto" - }, - { - "Id": "mgi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lijili" - }, - { - "Id": "mgj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Abureni" - }, - { - "Id": "mgk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mawes" - }, - { - "Id": "mgl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maleu-Kilenge" - }, - { - "Id": "mgm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mambae" - }, - { - "Id": "mgn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mbangi" - }, - { - "Id": "mgo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Meta\u0027" - }, - { - "Id": "mgp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Magar" - }, - { - "Id": "mgq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Malila" - }, - { - "Id": "mgr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mambwe-Lungu" - }, - { - "Id": "mgs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Manda (Tanzania)" - }, - { - "Id": "mgt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mongol" - }, - { - "Id": "mgu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mailu" - }, - { - "Id": "mgv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Matengo" - }, - { - "Id": "mgw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Matumbi" - }, - { - "Id": "mgy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mbunga" - }, - { - "Id": "mgz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mbugwe" - }, - { - "Id": "mha", - "Scope": "I", - "LanguageType": "L", - "RefName": "Manda (India)" - }, - { - "Id": "mhb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mahongwe" - }, - { - "Id": "mhc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mocho" - }, - { - "Id": "mhd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mbugu" - }, - { - "Id": "mhe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Besisi" - }, - { - "Id": "mhf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mamaa" - }, - { - "Id": "mhg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Margu" - }, - { - "Id": "mhi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ma\u0027di" - }, - { - "Id": "mhj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mogholi" - }, - { - "Id": "mhk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mungaka" - }, - { - "Id": "mhl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mauwake" - }, - { - "Id": "mhm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Makhuwa-Moniga" - }, - { - "Id": "mhn", - "Scope": "I", - "LanguageType": "L", - "RefName": "M\u00F2cheno" - }, - { - "Id": "mho", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mashi (Zambia)" - }, - { - "Id": "mhp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Balinese Malay" - }, - { - "Id": "mhq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mandan" - }, - { - "Id": "mhr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Mari" - }, - { - "Id": "mhs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Buru (Indonesia)" - }, - { - "Id": "mht", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mandahuaca" - }, - { - "Id": "mhu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Digaro-Mishmi" - }, - { - "Id": "mhw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mbukushu" - }, - { - "Id": "mhx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maru" - }, - { - "Id": "mhy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ma\u0027anyan" - }, - { - "Id": "mhz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mor (Mor Islands)" - }, - { - "Id": "mia", - "Scope": "I", - "LanguageType": "L", - "RefName": "Miami" - }, - { - "Id": "mib", - "Scope": "I", - "LanguageType": "L", - "RefName": "Atatl\u00E1huca Mixtec" - }, - { - "Id": "mic", - "Part2B": "mic", - "Part2T": "mic", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mi\u0027kmaq" - }, - { - "Id": "mid", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mandaic" - }, - { - "Id": "mie", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ocotepec Mixtec" - }, - { - "Id": "mif", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mofu-Gudur" - }, - { - "Id": "mig", - "Scope": "I", - "LanguageType": "L", - "RefName": "San Miguel El Grande Mixtec" - }, - { - "Id": "mih", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chayuco Mixtec" - }, - { - "Id": "mii", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chigmecatitl\u00E1n Mixtec" - }, - { - "Id": "mij", - "Scope": "I", - "LanguageType": "L", - "RefName": "Abar" - }, - { - "Id": "mik", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mikasuki" - }, - { - "Id": "mil", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pe\u00F1oles Mixtec" - }, - { - "Id": "mim", - "Scope": "I", - "LanguageType": "L", - "RefName": "Alacatlatzala Mixtec" - }, - { - "Id": "min", - "Part2B": "min", - "Part2T": "min", - "Scope": "I", - "LanguageType": "L", - "RefName": "Minangkabau" - }, - { - "Id": "mio", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pinotepa Nacional Mixtec" - }, - { - "Id": "mip", - "Scope": "I", - "LanguageType": "L", - "RefName": "Apasco-Apoala Mixtec" - }, - { - "Id": "miq", - "Scope": "I", - "LanguageType": "L", - "RefName": "M\u00EDskito" - }, - { - "Id": "mir", - "Scope": "I", - "LanguageType": "L", - "RefName": "Isthmus Mixe" - }, - { - "Id": "mis", - "Part2B": "mis", - "Part2T": "mis", - "Scope": "S", - "LanguageType": "S", - "RefName": "Uncoded languages" - }, - { - "Id": "mit", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Puebla Mixtec" - }, - { - "Id": "miu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cacaloxtepec Mixtec" - }, - { - "Id": "miw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Akoye" - }, - { - "Id": "mix", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mixtepec Mixtec" - }, - { - "Id": "miy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ayutla Mixtec" - }, - { - "Id": "miz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Coatzospan Mixtec" - }, - { - "Id": "mjb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Makalero" - }, - { - "Id": "mjc", - "Scope": "I", - "LanguageType": "L", - "RefName": "San Juan Colorado Mixtec" - }, - { - "Id": "mjd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northwest Maidu" - }, - { - "Id": "mje", - "Scope": "I", - "LanguageType": "E", - "RefName": "Muskum" - }, - { - "Id": "mjg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tu" - }, - { - "Id": "mjh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mwera (Nyasa)" - }, - { - "Id": "mji", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kim Mun" - }, - { - "Id": "mjj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mawak" - }, - { - "Id": "mjk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Matukar" - }, - { - "Id": "mjl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mandeali" - }, - { - "Id": "mjm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Medebur" - }, - { - "Id": "mjn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ma (Papua New Guinea)" - }, - { - "Id": "mjo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Malankuravan" - }, - { - "Id": "mjp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Malapandaram" - }, - { - "Id": "mjq", - "Scope": "I", - "LanguageType": "E", - "RefName": "Malaryan" - }, - { - "Id": "mjr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Malavedan" - }, - { - "Id": "mjs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Miship" - }, - { - "Id": "mjt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sauria Paharia" - }, - { - "Id": "mju", - "Scope": "I", - "LanguageType": "L", - "RefName": "Manna-Dora" - }, - { - "Id": "mjv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mannan" - }, - { - "Id": "mjw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Karbi" - }, - { - "Id": "mjx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mahali" - }, - { - "Id": "mjy", - "Scope": "I", - "LanguageType": "E", - "RefName": "Mahican" - }, - { - "Id": "mjz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Majhi" - }, - { - "Id": "mka", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mbre" - }, - { - "Id": "mkb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mal Paharia" - }, - { - "Id": "mkc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Siliput" - }, - { - "Id": "mkd", - "Part2B": "mac", - "Part2T": "mkd", - "Part1": "mk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Macedonian" - }, - { - "Id": "mke", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mawchi" - }, - { - "Id": "mkf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Miya" - }, - { - "Id": "mkg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mak (China)" - }, - { - "Id": "mki", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dhatki" - }, - { - "Id": "mkj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mokilese" - }, - { - "Id": "mkk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Byep" - }, - { - "Id": "mkl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mokole" - }, - { - "Id": "mkm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Moklen" - }, - { - "Id": "mkn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kupang Malay" - }, - { - "Id": "mko", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mingang Doso" - }, - { - "Id": "mkp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Moikodi" - }, - { - "Id": "mkq", - "Scope": "I", - "LanguageType": "E", - "RefName": "Bay Miwok" - }, - { - "Id": "mkr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Malas" - }, - { - "Id": "mks", - "Scope": "I", - "LanguageType": "L", - "RefName": "Silacayoapan Mixtec" - }, - { - "Id": "mkt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Vamale" - }, - { - "Id": "mku", - "Scope": "I", - "LanguageType": "L", - "RefName": "Konyanka Maninka" - }, - { - "Id": "mkv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mafea" - }, - { - "Id": "mkw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kituba (Congo)" - }, - { - "Id": "mkx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kinamiging Manobo" - }, - { - "Id": "mky", - "Scope": "I", - "LanguageType": "L", - "RefName": "East Makian" - }, - { - "Id": "mkz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Makasae" - }, - { - "Id": "mla", - "Scope": "I", - "LanguageType": "L", - "RefName": "Malo" - }, - { - "Id": "mlb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mbule" - }, - { - "Id": "mlc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cao Lan" - }, - { - "Id": "mle", - "Scope": "I", - "LanguageType": "L", - "RefName": "Manambu" - }, - { - "Id": "mlf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mal" - }, - { - "Id": "mlg", - "Part2B": "mlg", - "Part2T": "mlg", - "Part1": "mg", - "Scope": "M", - "LanguageType": "L", - "RefName": "Malagasy" - }, - { - "Id": "mlh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mape" - }, - { - "Id": "mli", - "Scope": "I", - "LanguageType": "L", - "RefName": "Malimpung" - }, - { - "Id": "mlj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Miltu" - }, - { - "Id": "mlk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ilwana" - }, - { - "Id": "mll", - "Scope": "I", - "LanguageType": "L", - "RefName": "Malua Bay" - }, - { - "Id": "mlm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mulam" - }, - { - "Id": "mln", - "Scope": "I", - "LanguageType": "L", - "RefName": "Malango" - }, - { - "Id": "mlo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mlomp" - }, - { - "Id": "mlp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bargam" - }, - { - "Id": "mlq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Maninkakan" - }, - { - "Id": "mlr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Vame" - }, - { - "Id": "mls", - "Scope": "I", - "LanguageType": "L", - "RefName": "Masalit" - }, - { - "Id": "mlt", - "Part2B": "mlt", - "Part2T": "mlt", - "Part1": "mt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maltese" - }, - { - "Id": "mlu", - "Scope": "I", - "LanguageType": "L", - "RefName": "To\u0027abaita" - }, - { - "Id": "mlv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Motlav" - }, - { - "Id": "mlw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Moloko" - }, - { - "Id": "mlx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Malfaxal" - }, - { - "Id": "mlz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Malaynon" - }, - { - "Id": "mma", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mama" - }, - { - "Id": "mmb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Momina" - }, - { - "Id": "mmc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Michoac\u00E1n Mazahua" - }, - { - "Id": "mmd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maonan" - }, - { - "Id": "mme", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mae" - }, - { - "Id": "mmf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mundat" - }, - { - "Id": "mmg", - "Scope": "I", - "LanguageType": "L", - "RefName": "North Ambrym" - }, - { - "Id": "mmh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mehin\u00E1ku" - }, - { - "Id": "mmi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hember Avu" - }, - { - "Id": "mmj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Majhwar" - }, - { - "Id": "mmk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mukha-Dora" - }, - { - "Id": "mml", - "Scope": "I", - "LanguageType": "L", - "RefName": "Man Met" - }, - { - "Id": "mmm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maii" - }, - { - "Id": "mmn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mamanwa" - }, - { - "Id": "mmo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mangga Buang" - }, - { - "Id": "mmp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Siawi" - }, - { - "Id": "mmq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Musak" - }, - { - "Id": "mmr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Xiangxi Miao" - }, - { - "Id": "mmt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Malalamai" - }, - { - "Id": "mmu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mmaala" - }, - { - "Id": "mmv", - "Scope": "I", - "LanguageType": "E", - "RefName": "Miriti" - }, - { - "Id": "mmw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Emae" - }, - { - "Id": "mmx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Madak" - }, - { - "Id": "mmy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Migaama" - }, - { - "Id": "mmz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mabaale" - }, - { - "Id": "mna", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mbula" - }, - { - "Id": "mnb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Muna" - }, - { - "Id": "mnc", - "Part2B": "mnc", - "Part2T": "mnc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Manchu" - }, - { - "Id": "mnd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mond\u00E9" - }, - { - "Id": "mne", - "Scope": "I", - "LanguageType": "L", - "RefName": "Naba" - }, - { - "Id": "mnf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mundani" - }, - { - "Id": "mng", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Mnong" - }, - { - "Id": "mnh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mono (Democratic Republic of Congo)" - }, - { - "Id": "mni", - "Part2B": "mni", - "Part2T": "mni", - "Scope": "I", - "LanguageType": "L", - "RefName": "Manipuri" - }, - { - "Id": "mnj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Munji" - }, - { - "Id": "mnk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mandinka" - }, - { - "Id": "mnl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tiale" - }, - { - "Id": "mnm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mapena" - }, - { - "Id": "mnn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Mnong" - }, - { - "Id": "mnp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Min Bei Chinese" - }, - { - "Id": "mnq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Minriq" - }, - { - "Id": "mnr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mono (USA)" - }, - { - "Id": "mns", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mansi" - }, - { - "Id": "mnu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mer" - }, - { - "Id": "mnv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rennell-Bellona" - }, - { - "Id": "mnw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mon" - }, - { - "Id": "mnx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Manikion" - }, - { - "Id": "mny", - "Scope": "I", - "LanguageType": "L", - "RefName": "Manyawa" - }, - { - "Id": "mnz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Moni" - }, - { - "Id": "moa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mwan" - }, - { - "Id": "moc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mocov\u00ED" - }, - { - "Id": "mod", - "Scope": "I", - "LanguageType": "E", - "RefName": "Mobilian" - }, - { - "Id": "moe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Innu" - }, - { - "Id": "mog", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mongondow" - }, - { - "Id": "moh", - "Part2B": "moh", - "Part2T": "moh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mohawk" - }, - { - "Id": "moi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mboi" - }, - { - "Id": "moj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Monzombo" - }, - { - "Id": "mok", - "Scope": "I", - "LanguageType": "L", - "RefName": "Morori" - }, - { - "Id": "mom", - "Scope": "I", - "LanguageType": "E", - "RefName": "Mangue" - }, - { - "Id": "mon", - "Part2B": "mon", - "Part2T": "mon", - "Part1": "mn", - "Scope": "M", - "LanguageType": "L", - "RefName": "Mongolian" - }, - { - "Id": "moo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Monom" - }, - { - "Id": "mop", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mop\u00E1n Maya" - }, - { - "Id": "moq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mor (Bomberai Peninsula)" - }, - { - "Id": "mor", - "Scope": "I", - "LanguageType": "L", - "RefName": "Moro" - }, - { - "Id": "mos", - "Part2B": "mos", - "Part2T": "mos", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mossi" - }, - { - "Id": "mot", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bar\u00ED" - }, - { - "Id": "mou", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mogum" - }, - { - "Id": "mov", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mohave" - }, - { - "Id": "mow", - "Scope": "I", - "LanguageType": "L", - "RefName": "Moi (Congo)" - }, - { - "Id": "mox", - "Scope": "I", - "LanguageType": "L", - "RefName": "Molima" - }, - { - "Id": "moy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Shekkacho" - }, - { - "Id": "moz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mukulu" - }, - { - "Id": "mpa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mpoto" - }, - { - "Id": "mpb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Malak Malak" - }, - { - "Id": "mpc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mangarrayi" - }, - { - "Id": "mpd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Machinere" - }, - { - "Id": "mpe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Majang" - }, - { - "Id": "mpg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Marba" - }, - { - "Id": "mph", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maung" - }, - { - "Id": "mpi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mpade" - }, - { - "Id": "mpj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Martu Wangka" - }, - { - "Id": "mpk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mbara (Chad)" - }, - { - "Id": "mpl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Middle Watut" - }, - { - "Id": "mpm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yosond\u00FAa Mixtec" - }, - { - "Id": "mpn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mindiri" - }, - { - "Id": "mpo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Miu" - }, - { - "Id": "mpp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Migabac" - }, - { - "Id": "mpq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mat\u00EDs" - }, - { - "Id": "mpr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Vangunu" - }, - { - "Id": "mps", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dadibi" - }, - { - "Id": "mpt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mian" - }, - { - "Id": "mpu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Makur\u00E1p" - }, - { - "Id": "mpv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mungkip" - }, - { - "Id": "mpw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mapidian" - }, - { - "Id": "mpx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Misima-Panaeati" - }, - { - "Id": "mpy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mapia" - }, - { - "Id": "mpz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mpi" - }, - { - "Id": "mqa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maba (Indonesia)" - }, - { - "Id": "mqb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mbuko" - }, - { - "Id": "mqc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mangole" - }, - { - "Id": "mqe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Matepi" - }, - { - "Id": "mqf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Momuna" - }, - { - "Id": "mqg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kota Bangun Kutai Malay" - }, - { - "Id": "mqh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tlazoyaltepec Mixtec" - }, - { - "Id": "mqi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mariri" - }, - { - "Id": "mqj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mamasa" - }, - { - "Id": "mqk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rajah Kabunsuwan Manobo" - }, - { - "Id": "mql", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mbelime" - }, - { - "Id": "mqm", - "Scope": "I", - "LanguageType": "L", - "RefName": "South Marquesan" - }, - { - "Id": "mqn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Moronene" - }, - { - "Id": "mqo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Modole" - }, - { - "Id": "mqp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Manipa" - }, - { - "Id": "mqq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Minokok" - }, - { - "Id": "mqr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mander" - }, - { - "Id": "mqs", - "Scope": "I", - "LanguageType": "L", - "RefName": "West Makian" - }, - { - "Id": "mqt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mok" - }, - { - "Id": "mqu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mandari" - }, - { - "Id": "mqv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mosimo" - }, - { - "Id": "mqw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Murupi" - }, - { - "Id": "mqx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mamuju" - }, - { - "Id": "mqy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Manggarai" - }, - { - "Id": "mqz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pano" - }, - { - "Id": "mra", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mlabri" - }, - { - "Id": "mrb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Marino" - }, - { - "Id": "mrc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maricopa" - }, - { - "Id": "mrd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Magar" - }, - { - "Id": "mre", - "Scope": "I", - "LanguageType": "E", - "RefName": "Martha\u0027s Vineyard Sign Language" - }, - { - "Id": "mrf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Elseng" - }, - { - "Id": "mrg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mising" - }, - { - "Id": "mrh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mara Chin" - }, - { - "Id": "mri", - "Part2B": "mao", - "Part2T": "mri", - "Part1": "mi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maori" - }, - { - "Id": "mrj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Mari" - }, - { - "Id": "mrk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hmwaveke" - }, - { - "Id": "mrl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mortlockese" - }, - { - "Id": "mrm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Merlav" - }, - { - "Id": "mrn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cheke Holo" - }, - { - "Id": "mro", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mru" - }, - { - "Id": "mrp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Morouas" - }, - { - "Id": "mrq", - "Scope": "I", - "LanguageType": "L", - "RefName": "North Marquesan" - }, - { - "Id": "mrr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maria (India)" - }, - { - "Id": "mrs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maragus" - }, - { - "Id": "mrt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Marghi Central" - }, - { - "Id": "mru", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mono (Cameroon)" - }, - { - "Id": "mrv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mangareva" - }, - { - "Id": "mrw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maranao" - }, - { - "Id": "mrx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maremgi" - }, - { - "Id": "mry", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mandaya" - }, - { - "Id": "mrz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Marind" - }, - { - "Id": "msa", - "Part2B": "may", - "Part2T": "msa", - "Part1": "ms", - "Scope": "M", - "LanguageType": "L", - "RefName": "Malay (macrolanguage)" - }, - { - "Id": "msb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Masbatenyo" - }, - { - "Id": "msc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sankaran Maninka" - }, - { - "Id": "msd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yucatec Maya Sign Language" - }, - { - "Id": "mse", - "Scope": "I", - "LanguageType": "L", - "RefName": "Musey" - }, - { - "Id": "msf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mekwei" - }, - { - "Id": "msg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Moraid" - }, - { - "Id": "msh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Masikoro Malagasy" - }, - { - "Id": "msi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sabah Malay" - }, - { - "Id": "msj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ma (Democratic Republic of Congo)" - }, - { - "Id": "msk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mansaka" - }, - { - "Id": "msl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Molof" - }, - { - "Id": "msm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Agusan Manobo" - }, - { - "Id": "msn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Vur\u00EBs" - }, - { - "Id": "mso", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mombum" - }, - { - "Id": "msp", - "Scope": "I", - "LanguageType": "E", - "RefName": "Maritsau\u00E1" - }, - { - "Id": "msq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Caac" - }, - { - "Id": "msr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mongolian Sign Language" - }, - { - "Id": "mss", - "Scope": "I", - "LanguageType": "L", - "RefName": "West Masela" - }, - { - "Id": "msu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Musom" - }, - { - "Id": "msv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maslam" - }, - { - "Id": "msw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mansoanka" - }, - { - "Id": "msx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Moresada" - }, - { - "Id": "msy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aruamu" - }, - { - "Id": "msz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Momare" - }, - { - "Id": "mta", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cotabato Manobo" - }, - { - "Id": "mtb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Anyin Morofo" - }, - { - "Id": "mtc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Munit" - }, - { - "Id": "mtd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mualang" - }, - { - "Id": "mte", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mono (Solomon Islands)" - }, - { - "Id": "mtf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Murik (Papua New Guinea)" - }, - { - "Id": "mtg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Una" - }, - { - "Id": "mth", - "Scope": "I", - "LanguageType": "L", - "RefName": "Munggui" - }, - { - "Id": "mti", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maiwa (Papua New Guinea)" - }, - { - "Id": "mtj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Moskona" - }, - { - "Id": "mtk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mbe\u0027" - }, - { - "Id": "mtl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Montol" - }, - { - "Id": "mtm", - "Scope": "I", - "LanguageType": "E", - "RefName": "Mator" - }, - { - "Id": "mtn", - "Scope": "I", - "LanguageType": "E", - "RefName": "Matagalpa" - }, - { - "Id": "mto", - "Scope": "I", - "LanguageType": "L", - "RefName": "Totontepec Mixe" - }, - { - "Id": "mtp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wich\u00ED Lhamt\u00E9s Nocten" - }, - { - "Id": "mtq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Muong" - }, - { - "Id": "mtr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mewari" - }, - { - "Id": "mts", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yora" - }, - { - "Id": "mtt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mota" - }, - { - "Id": "mtu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tututepec Mixtec" - }, - { - "Id": "mtv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Asaro\u0027o" - }, - { - "Id": "mtw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Binukidnon" - }, - { - "Id": "mtx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tida\u00E1 Mixtec" - }, - { - "Id": "mty", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nabi" - }, - { - "Id": "mua", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mundang" - }, - { - "Id": "mub", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mubi" - }, - { - "Id": "muc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ajumbu" - }, - { - "Id": "mud", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mednyj Aleut" - }, - { - "Id": "mue", - "Scope": "I", - "LanguageType": "L", - "RefName": "Media Lengua" - }, - { - "Id": "mug", - "Scope": "I", - "LanguageType": "L", - "RefName": "Musgu" - }, - { - "Id": "muh", - "Scope": "I", - "LanguageType": "L", - "RefName": "M\u00FCnd\u00FC" - }, - { - "Id": "mui", - "Scope": "I", - "LanguageType": "L", - "RefName": "Musi" - }, - { - "Id": "muj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mabire" - }, - { - "Id": "muk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mugom" - }, - { - "Id": "mul", - "Part2B": "mul", - "Part2T": "mul", - "Scope": "S", - "LanguageType": "S", - "RefName": "Multiple languages" - }, - { - "Id": "mum", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maiwala" - }, - { - "Id": "muo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nyong" - }, - { - "Id": "mup", - "Scope": "I", - "LanguageType": "L", - "RefName": "Malvi" - }, - { - "Id": "muq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Xiangxi Miao" - }, - { - "Id": "mur", - "Scope": "I", - "LanguageType": "L", - "RefName": "Murle" - }, - { - "Id": "mus", - "Part2B": "mus", - "Part2T": "mus", - "Scope": "I", - "LanguageType": "L", - "RefName": "Creek" - }, - { - "Id": "mut", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Muria" - }, - { - "Id": "muu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yaaku" - }, - { - "Id": "muv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Muthuvan" - }, - { - "Id": "mux", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bo-Ung" - }, - { - "Id": "muy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Muyang" - }, - { - "Id": "muz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mursi" - }, - { - "Id": "mva", - "Scope": "I", - "LanguageType": "L", - "RefName": "Manam" - }, - { - "Id": "mvb", - "Scope": "I", - "LanguageType": "E", - "RefName": "Mattole" - }, - { - "Id": "mvd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mamboru" - }, - { - "Id": "mve", - "Scope": "I", - "LanguageType": "L", - "RefName": "Marwari (Pakistan)" - }, - { - "Id": "mvf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Peripheral Mongolian" - }, - { - "Id": "mvg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yucua\u00F1e Mixtec" - }, - { - "Id": "mvh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mulgi" - }, - { - "Id": "mvi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Miyako" - }, - { - "Id": "mvk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mekmek" - }, - { - "Id": "mvl", - "Scope": "I", - "LanguageType": "E", - "RefName": "Mbara (Australia)" - }, - { - "Id": "mvn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Minaveha" - }, - { - "Id": "mvo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Marovo" - }, - { - "Id": "mvp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Duri" - }, - { - "Id": "mvq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Moere" - }, - { - "Id": "mvr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Marau" - }, - { - "Id": "mvs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Massep" - }, - { - "Id": "mvt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mpotovoro" - }, - { - "Id": "mvu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Marfa" - }, - { - "Id": "mvv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tagal Murut" - }, - { - "Id": "mvw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Machinga" - }, - { - "Id": "mvx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Meoswar" - }, - { - "Id": "mvy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Indus Kohistani" - }, - { - "Id": "mvz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mesqan" - }, - { - "Id": "mwa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mwatebu" - }, - { - "Id": "mwb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Juwal" - }, - { - "Id": "mwc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Are" - }, - { - "Id": "mwe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mwera (Chimwera)" - }, - { - "Id": "mwf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Murrinh-Patha" - }, - { - "Id": "mwg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aiklep" - }, - { - "Id": "mwh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mouk-Aria" - }, - { - "Id": "mwi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Labo" - }, - { - "Id": "mwk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kita Maninkakan" - }, - { - "Id": "mwl", - "Part2B": "mwl", - "Part2T": "mwl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mirandese" - }, - { - "Id": "mwm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sar" - }, - { - "Id": "mwn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nyamwanga" - }, - { - "Id": "mwo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Central Maewo" - }, - { - "Id": "mwp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kala Lagaw Ya" - }, - { - "Id": "mwq", - "Scope": "I", - "LanguageType": "L", - "RefName": "M\u00FCn Chin" - }, - { - "Id": "mwr", - "Part2B": "mwr", - "Part2T": "mwr", - "Scope": "M", - "LanguageType": "L", - "RefName": "Marwari" - }, - { - "Id": "mws", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mwimbi-Muthambi" - }, - { - "Id": "mwt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Moken" - }, - { - "Id": "mwu", - "Scope": "I", - "LanguageType": "E", - "RefName": "Mittu" - }, - { - "Id": "mwv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mentawai" - }, - { - "Id": "mww", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hmong Daw" - }, - { - "Id": "mwz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Moingi" - }, - { - "Id": "mxa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northwest Oaxaca Mixtec" - }, - { - "Id": "mxb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tezoatl\u00E1n Mixtec" - }, - { - "Id": "mxc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Manyika" - }, - { - "Id": "mxd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Modang" - }, - { - "Id": "mxe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mele-Fila" - }, - { - "Id": "mxf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Malgbe" - }, - { - "Id": "mxg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mbangala" - }, - { - "Id": "mxh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mvuba" - }, - { - "Id": "mxi", - "Scope": "I", - "LanguageType": "H", - "RefName": "Mozarabic" - }, - { - "Id": "mxj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Miju-Mishmi" - }, - { - "Id": "mxk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Monumbo" - }, - { - "Id": "mxl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maxi Gbe" - }, - { - "Id": "mxm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Meramera" - }, - { - "Id": "mxn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Moi (Indonesia)" - }, - { - "Id": "mxo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mbowe" - }, - { - "Id": "mxp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tlahuitoltepec Mixe" - }, - { - "Id": "mxq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Juquila Mixe" - }, - { - "Id": "mxr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Murik (Malaysia)" - }, - { - "Id": "mxs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Huitepec Mixtec" - }, - { - "Id": "mxt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jamiltepec Mixtec" - }, - { - "Id": "mxu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mada (Cameroon)" - }, - { - "Id": "mxv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Metlat\u00F3noc Mixtec" - }, - { - "Id": "mxw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Namo" - }, - { - "Id": "mxx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mahou" - }, - { - "Id": "mxy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southeastern Nochixtl\u00E1n Mixtec" - }, - { - "Id": "mxz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Central Masela" - }, - { - "Id": "mya", - "Part2B": "bur", - "Part2T": "mya", - "Part1": "my", - "Scope": "I", - "LanguageType": "L", - "RefName": "Burmese" - }, - { - "Id": "myb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mbay" - }, - { - "Id": "myc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mayeka" - }, - { - "Id": "mye", - "Scope": "I", - "LanguageType": "L", - "RefName": "Myene" - }, - { - "Id": "myf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bambassi" - }, - { - "Id": "myg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Manta" - }, - { - "Id": "myh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Makah" - }, - { - "Id": "myj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mangayat" - }, - { - "Id": "myk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mamara Senoufo" - }, - { - "Id": "myl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Moma" - }, - { - "Id": "mym", - "Scope": "I", - "LanguageType": "L", - "RefName": "Me\u0027en" - }, - { - "Id": "myo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Anfillo" - }, - { - "Id": "myp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pirah\u00E3" - }, - { - "Id": "myr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Muniche" - }, - { - "Id": "mys", - "Scope": "I", - "LanguageType": "E", - "RefName": "Mesmes" - }, - { - "Id": "myu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Munduruk\u00FA" - }, - { - "Id": "myv", - "Part2B": "myv", - "Part2T": "myv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Erzya" - }, - { - "Id": "myw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Muyuw" - }, - { - "Id": "myx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Masaaba" - }, - { - "Id": "myy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Macuna" - }, - { - "Id": "myz", - "Scope": "I", - "LanguageType": "H", - "RefName": "Classical Mandaic" - }, - { - "Id": "mza", - "Scope": "I", - "LanguageType": "L", - "RefName": "Santa Mar\u00EDa Zacatepec Mixtec" - }, - { - "Id": "mzb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tumzabt" - }, - { - "Id": "mzc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Madagascar Sign Language" - }, - { - "Id": "mzd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Malimba" - }, - { - "Id": "mze", - "Scope": "I", - "LanguageType": "L", - "RefName": "Morawa" - }, - { - "Id": "mzg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Monastic Sign Language" - }, - { - "Id": "mzh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wich\u00ED Lhamt\u00E9s G\u00FCisnay" - }, - { - "Id": "mzi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ixcatl\u00E1n Mazatec" - }, - { - "Id": "mzj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Manya" - }, - { - "Id": "mzk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nigeria Mambila" - }, - { - "Id": "mzl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mazatl\u00E1n Mixe" - }, - { - "Id": "mzm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mumuye" - }, - { - "Id": "mzn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mazanderani" - }, - { - "Id": "mzo", - "Scope": "I", - "LanguageType": "E", - "RefName": "Matipuhy" - }, - { - "Id": "mzp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Movima" - }, - { - "Id": "mzq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mori Atas" - }, - { - "Id": "mzr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mar\u00FAbo" - }, - { - "Id": "mzs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Macanese" - }, - { - "Id": "mzt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mintil" - }, - { - "Id": "mzu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Inapang" - }, - { - "Id": "mzv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Manza" - }, - { - "Id": "mzw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Deg" - }, - { - "Id": "mzx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mawayana" - }, - { - "Id": "mzy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mozambican Sign Language" - }, - { - "Id": "mzz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maiadomu" - }, - { - "Id": "naa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Namla" - }, - { - "Id": "nab", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Nambiku\u00E1ra" - }, - { - "Id": "nac", - "Scope": "I", - "LanguageType": "L", - "RefName": "Narak" - }, - { - "Id": "nae", - "Scope": "I", - "LanguageType": "E", - "RefName": "Naka\u0027ela" - }, - { - "Id": "naf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nabak" - }, - { - "Id": "nag", - "Scope": "I", - "LanguageType": "L", - "RefName": "Naga Pidgin" - }, - { - "Id": "naj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nalu" - }, - { - "Id": "nak", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nakanai" - }, - { - "Id": "nal", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nalik" - }, - { - "Id": "nam", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngan\u0027gityemerri" - }, - { - "Id": "nan", - "Scope": "I", - "LanguageType": "L", - "RefName": "Min Nan Chinese" - }, - { - "Id": "nao", - "Scope": "I", - "LanguageType": "L", - "RefName": "Naaba" - }, - { - "Id": "nap", - "Part2B": "nap", - "Part2T": "nap", - "Scope": "I", - "LanguageType": "L", - "RefName": "Neapolitan" - }, - { - "Id": "naq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Khoekhoe" - }, - { - "Id": "nar", - "Scope": "I", - "LanguageType": "L", - "RefName": "Iguta" - }, - { - "Id": "nas", - "Scope": "I", - "LanguageType": "L", - "RefName": "Naasioi" - }, - { - "Id": "nat", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ca\u0331hungwa\u0331rya\u0331" - }, - { - "Id": "nau", - "Part2B": "nau", - "Part2T": "nau", - "Part1": "na", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nauru" - }, - { - "Id": "nav", - "Part2B": "nav", - "Part2T": "nav", - "Part1": "nv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Navajo" - }, - { - "Id": "naw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nawuri" - }, - { - "Id": "nax", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nakwi" - }, - { - "Id": "nay", - "Scope": "I", - "LanguageType": "E", - "RefName": "Ngarrindjeri" - }, - { - "Id": "naz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Coatepec Nahuatl" - }, - { - "Id": "nba", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nyemba" - }, - { - "Id": "nbb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ndoe" - }, - { - "Id": "nbc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chang Naga" - }, - { - "Id": "nbd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngbinda" - }, - { - "Id": "nbe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Konyak Naga" - }, - { - "Id": "nbg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nagarchal" - }, - { - "Id": "nbh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngamo" - }, - { - "Id": "nbi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mao Naga" - }, - { - "Id": "nbj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngarinyman" - }, - { - "Id": "nbk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nake" - }, - { - "Id": "nbl", - "Part2B": "nbl", - "Part2T": "nbl", - "Part1": "nr", - "Scope": "I", - "LanguageType": "L", - "RefName": "South Ndebele" - }, - { - "Id": "nbm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngbaka Ma\u0027bo" - }, - { - "Id": "nbn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kuri" - }, - { - "Id": "nbo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nkukoli" - }, - { - "Id": "nbp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nnam" - }, - { - "Id": "nbq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nggem" - }, - { - "Id": "nbr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Numana" - }, - { - "Id": "nbs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Namibian Sign Language" - }, - { - "Id": "nbt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Na" - }, - { - "Id": "nbu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rongmei Naga" - }, - { - "Id": "nbv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngamambo" - }, - { - "Id": "nbw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Ngbandi" - }, - { - "Id": "nby", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ningera" - }, - { - "Id": "nca", - "Scope": "I", - "LanguageType": "L", - "RefName": "Iyo" - }, - { - "Id": "ncb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Central Nicobarese" - }, - { - "Id": "ncc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ponam" - }, - { - "Id": "ncd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nachering" - }, - { - "Id": "nce", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yale" - }, - { - "Id": "ncf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Notsi" - }, - { - "Id": "ncg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nisga\u0027a" - }, - { - "Id": "nch", - "Scope": "I", - "LanguageType": "L", - "RefName": "Central Huasteca Nahuatl" - }, - { - "Id": "nci", - "Scope": "I", - "LanguageType": "H", - "RefName": "Classical Nahuatl" - }, - { - "Id": "ncj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Puebla Nahuatl" - }, - { - "Id": "nck", - "Scope": "I", - "LanguageType": "L", - "RefName": "Na-kara" - }, - { - "Id": "ncl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Michoac\u00E1n Nahuatl" - }, - { - "Id": "ncm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nambo" - }, - { - "Id": "ncn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nauna" - }, - { - "Id": "nco", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sibe" - }, - { - "Id": "ncq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Katang" - }, - { - "Id": "ncr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ncane" - }, - { - "Id": "ncs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nicaraguan Sign Language" - }, - { - "Id": "nct", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chothe Naga" - }, - { - "Id": "ncu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chumburung" - }, - { - "Id": "ncx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Central Puebla Nahuatl" - }, - { - "Id": "ncz", - "Scope": "I", - "LanguageType": "E", - "RefName": "Natchez" - }, - { - "Id": "nda", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ndasa" - }, - { - "Id": "ndb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kenswei Nsei" - }, - { - "Id": "ndc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ndau" - }, - { - "Id": "ndd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nde-Nsele-Nta" - }, - { - "Id": "nde", - "Part2B": "nde", - "Part2T": "nde", - "Part1": "nd", - "Scope": "I", - "LanguageType": "L", - "RefName": "North Ndebele" - }, - { - "Id": "ndf", - "Scope": "I", - "LanguageType": "H", - "RefName": "Nadruvian" - }, - { - "Id": "ndg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ndengereko" - }, - { - "Id": "ndh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ndali" - }, - { - "Id": "ndi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Samba Leko" - }, - { - "Id": "ndj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ndamba" - }, - { - "Id": "ndk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ndaka" - }, - { - "Id": "ndl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ndolo" - }, - { - "Id": "ndm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ndam" - }, - { - "Id": "ndn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngundi" - }, - { - "Id": "ndo", - "Part2B": "ndo", - "Part2T": "ndo", - "Part1": "ng", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ndonga" - }, - { - "Id": "ndp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ndo" - }, - { - "Id": "ndq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ndombe" - }, - { - "Id": "ndr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ndoola" - }, - { - "Id": "nds", - "Part2B": "nds", - "Part2T": "nds", - "Scope": "I", - "LanguageType": "L", - "RefName": "Low German" - }, - { - "Id": "ndt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ndunga" - }, - { - "Id": "ndu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dugun" - }, - { - "Id": "ndv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ndut" - }, - { - "Id": "ndw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ndobo" - }, - { - "Id": "ndx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nduga" - }, - { - "Id": "ndy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lutos" - }, - { - "Id": "ndz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ndogo" - }, - { - "Id": "nea", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Ngad\u0027a" - }, - { - "Id": "neb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Toura (C\u00F4te d\u0027Ivoire)" - }, - { - "Id": "nec", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nedebang" - }, - { - "Id": "ned", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nde-Gbite" - }, - { - "Id": "nee", - "Scope": "I", - "LanguageType": "L", - "RefName": "N\u00EAl\u00EAmwa-Nixumwak" - }, - { - "Id": "nef", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nefamese" - }, - { - "Id": "neg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Negidal" - }, - { - "Id": "neh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nyenkha" - }, - { - "Id": "nei", - "Scope": "I", - "LanguageType": "H", - "RefName": "Neo-Hittite" - }, - { - "Id": "nej", - "Scope": "I", - "LanguageType": "L", - "RefName": "Neko" - }, - { - "Id": "nek", - "Scope": "I", - "LanguageType": "L", - "RefName": "Neku" - }, - { - "Id": "nem", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nemi" - }, - { - "Id": "nen", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nengone" - }, - { - "Id": "neo", - "Scope": "I", - "LanguageType": "L", - "RefName": "N\u00E1-Meo" - }, - { - "Id": "nep", - "Part2B": "nep", - "Part2T": "nep", - "Part1": "ne", - "Scope": "M", - "LanguageType": "L", - "RefName": "Nepali (macrolanguage)" - }, - { - "Id": "neq", - "Scope": "I", - "LanguageType": "L", - "RefName": "North Central Mixe" - }, - { - "Id": "ner", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yahadian" - }, - { - "Id": "nes", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bhoti Kinnauri" - }, - { - "Id": "net", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nete" - }, - { - "Id": "neu", - "Scope": "I", - "LanguageType": "C", - "RefName": "Neo" - }, - { - "Id": "nev", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nyaheun" - }, - { - "Id": "new", - "Part2B": "new", - "Part2T": "new", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nepal Bhasa" - }, - { - "Id": "nex", - "Scope": "I", - "LanguageType": "L", - "RefName": "Neme" - }, - { - "Id": "ney", - "Scope": "I", - "LanguageType": "L", - "RefName": "Neyo" - }, - { - "Id": "nez", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nez Perce" - }, - { - "Id": "nfa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dhao" - }, - { - "Id": "nfd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ahwai" - }, - { - "Id": "nfl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ayiwo" - }, - { - "Id": "nfr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nafaanra" - }, - { - "Id": "nfu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mfumte" - }, - { - "Id": "nga", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngbaka" - }, - { - "Id": "ngb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Ngbandi" - }, - { - "Id": "ngc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngombe (Democratic Republic of Congo)" - }, - { - "Id": "ngd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngando (Central African Republic)" - }, - { - "Id": "nge", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngemba" - }, - { - "Id": "ngg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngbaka Manza" - }, - { - "Id": "ngh", - "Scope": "I", - "LanguageType": "L", - "RefName": "N\u01C1ng" - }, - { - "Id": "ngi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngizim" - }, - { - "Id": "ngj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngie" - }, - { - "Id": "ngk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dalabon" - }, - { - "Id": "ngl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lomwe" - }, - { - "Id": "ngm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngatik Men\u0027s Creole" - }, - { - "Id": "ngn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngwo" - }, - { - "Id": "ngp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngulu" - }, - { - "Id": "ngq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngurimi" - }, - { - "Id": "ngr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Engdewu" - }, - { - "Id": "ngs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gvoko" - }, - { - "Id": "ngt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kriang" - }, - { - "Id": "ngu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Guerrero Nahuatl" - }, - { - "Id": "ngv", - "Scope": "I", - "LanguageType": "E", - "RefName": "Nagumi" - }, - { - "Id": "ngw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngwaba" - }, - { - "Id": "ngx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nggwahyi" - }, - { - "Id": "ngy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tibea" - }, - { - "Id": "ngz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngungwel" - }, - { - "Id": "nha", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nhanda" - }, - { - "Id": "nhb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Beng" - }, - { - "Id": "nhc", - "Scope": "I", - "LanguageType": "E", - "RefName": "Tabasco Nahuatl" - }, - { - "Id": "nhd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chirip\u00E1" - }, - { - "Id": "nhe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Huasteca Nahuatl" - }, - { - "Id": "nhf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nhuwala" - }, - { - "Id": "nhg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tetelcingo Nahuatl" - }, - { - "Id": "nhh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nahari" - }, - { - "Id": "nhi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zacatl\u00E1n-Ahuacatl\u00E1n-Tepetzintla Nahuatl" - }, - { - "Id": "nhk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Isthmus-Cosoleacaque Nahuatl" - }, - { - "Id": "nhm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Morelos Nahuatl" - }, - { - "Id": "nhn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Central Nahuatl" - }, - { - "Id": "nho", - "Scope": "I", - "LanguageType": "L", - "RefName": "Takuu" - }, - { - "Id": "nhp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Isthmus-Pajapan Nahuatl" - }, - { - "Id": "nhq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Huaxcaleca Nahuatl" - }, - { - "Id": "nhr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Naro" - }, - { - "Id": "nht", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ometepec Nahuatl" - }, - { - "Id": "nhu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Noone" - }, - { - "Id": "nhv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Temascaltepec Nahuatl" - }, - { - "Id": "nhw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Huasteca Nahuatl" - }, - { - "Id": "nhx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Isthmus-Mecayapan Nahuatl" - }, - { - "Id": "nhy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Oaxaca Nahuatl" - }, - { - "Id": "nhz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Santa Mar\u00EDa La Alta Nahuatl" - }, - { - "Id": "nia", - "Part2B": "nia", - "Part2T": "nia", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nias" - }, - { - "Id": "nib", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nakame" - }, - { - "Id": "nid", - "Scope": "I", - "LanguageType": "E", - "RefName": "Ngandi" - }, - { - "Id": "nie", - "Scope": "I", - "LanguageType": "L", - "RefName": "Niellim" - }, - { - "Id": "nif", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nek" - }, - { - "Id": "nig", - "Scope": "I", - "LanguageType": "E", - "RefName": "Ngalakgan" - }, - { - "Id": "nih", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nyiha (Tanzania)" - }, - { - "Id": "nii", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nii" - }, - { - "Id": "nij", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngaju" - }, - { - "Id": "nik", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Nicobarese" - }, - { - "Id": "nil", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nila" - }, - { - "Id": "nim", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nilamba" - }, - { - "Id": "nin", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ninzo" - }, - { - "Id": "nio", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nganasan" - }, - { - "Id": "niq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nandi" - }, - { - "Id": "nir", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nimboran" - }, - { - "Id": "nis", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nimi" - }, - { - "Id": "nit", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southeastern Kolami" - }, - { - "Id": "niu", - "Part2B": "niu", - "Part2T": "niu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Niuean" - }, - { - "Id": "niv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gilyak" - }, - { - "Id": "niw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nimo" - }, - { - "Id": "nix", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hema" - }, - { - "Id": "niy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngiti" - }, - { - "Id": "niz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ningil" - }, - { - "Id": "nja", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nzanyi" - }, - { - "Id": "njb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nocte Naga" - }, - { - "Id": "njd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ndonde Hamba" - }, - { - "Id": "njh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lotha Naga" - }, - { - "Id": "nji", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gudanji" - }, - { - "Id": "njj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Njen" - }, - { - "Id": "njl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Njalgulgule" - }, - { - "Id": "njm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Angami Naga" - }, - { - "Id": "njn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Liangmai Naga" - }, - { - "Id": "njo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ao Naga" - }, - { - "Id": "njr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Njerep" - }, - { - "Id": "njs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nisa" - }, - { - "Id": "njt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ndyuka-Trio Pidgin" - }, - { - "Id": "nju", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngadjunmaya" - }, - { - "Id": "njx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kunyi" - }, - { - "Id": "njy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Njyem" - }, - { - "Id": "njz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nyishi" - }, - { - "Id": "nka", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nkoya" - }, - { - "Id": "nkb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Khoibu Naga" - }, - { - "Id": "nkc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nkongho" - }, - { - "Id": "nkd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Koireng" - }, - { - "Id": "nke", - "Scope": "I", - "LanguageType": "L", - "RefName": "Duke" - }, - { - "Id": "nkf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Inpui Naga" - }, - { - "Id": "nkg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nekgini" - }, - { - "Id": "nkh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Khezha Naga" - }, - { - "Id": "nki", - "Scope": "I", - "LanguageType": "L", - "RefName": "Thangal Naga" - }, - { - "Id": "nkj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nakai" - }, - { - "Id": "nkk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nokuku" - }, - { - "Id": "nkm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Namat" - }, - { - "Id": "nkn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nkangala" - }, - { - "Id": "nko", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nkonya" - }, - { - "Id": "nkp", - "Scope": "I", - "LanguageType": "E", - "RefName": "Niuatoputapu" - }, - { - "Id": "nkq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nkami" - }, - { - "Id": "nkr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nukuoro" - }, - { - "Id": "nks", - "Scope": "I", - "LanguageType": "L", - "RefName": "North Asmat" - }, - { - "Id": "nkt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nyika (Tanzania)" - }, - { - "Id": "nku", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bouna Kulango" - }, - { - "Id": "nkv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nyika (Malawi and Zambia)" - }, - { - "Id": "nkw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nkutu" - }, - { - "Id": "nkx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nkoroo" - }, - { - "Id": "nkz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nkari" - }, - { - "Id": "nla", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngombale" - }, - { - "Id": "nlc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nalca" - }, - { - "Id": "nld", - "Part2B": "dut", - "Part2T": "nld", - "Part1": "nl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dutch" - }, - { - "Id": "nle", - "Scope": "I", - "LanguageType": "L", - "RefName": "East Nyala" - }, - { - "Id": "nlg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gela" - }, - { - "Id": "nli", - "Scope": "I", - "LanguageType": "L", - "RefName": "Grangali" - }, - { - "Id": "nlj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nyali" - }, - { - "Id": "nlk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ninia Yali" - }, - { - "Id": "nll", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nihali" - }, - { - "Id": "nlm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mankiyali" - }, - { - "Id": "nlo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngul" - }, - { - "Id": "nlq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lao Naga" - }, - { - "Id": "nlu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nchumbulu" - }, - { - "Id": "nlv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Orizaba Nahuatl" - }, - { - "Id": "nlw", - "Scope": "I", - "LanguageType": "E", - "RefName": "Walangama" - }, - { - "Id": "nlx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nahali" - }, - { - "Id": "nly", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nyamal" - }, - { - "Id": "nlz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nal\u00F6go" - }, - { - "Id": "nma", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maram Naga" - }, - { - "Id": "nmb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Big Nambas" - }, - { - "Id": "nmc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngam" - }, - { - "Id": "nmd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ndumu" - }, - { - "Id": "nme", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mzieme Naga" - }, - { - "Id": "nmf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tangkhul Naga (India)" - }, - { - "Id": "nmg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kwasio" - }, - { - "Id": "nmh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Monsang Naga" - }, - { - "Id": "nmi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nyam" - }, - { - "Id": "nmj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngombe (Central African Republic)" - }, - { - "Id": "nmk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Namakura" - }, - { - "Id": "nml", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ndemli" - }, - { - "Id": "nmm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Manangba" - }, - { - "Id": "nmn", - "Scope": "I", - "LanguageType": "L", - "RefName": "\u01C3X\u00F3\u00F5" - }, - { - "Id": "nmo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Moyon Naga" - }, - { - "Id": "nmp", - "Scope": "I", - "LanguageType": "E", - "RefName": "Nimanbur" - }, - { - "Id": "nmq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nambya" - }, - { - "Id": "nmr", - "Scope": "I", - "LanguageType": "E", - "RefName": "Nimbari" - }, - { - "Id": "nms", - "Scope": "I", - "LanguageType": "L", - "RefName": "Letemboi" - }, - { - "Id": "nmt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Namonuito" - }, - { - "Id": "nmu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northeast Maidu" - }, - { - "Id": "nmv", - "Scope": "I", - "LanguageType": "E", - "RefName": "Ngamini" - }, - { - "Id": "nmw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nimoa" - }, - { - "Id": "nmx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nama (Papua New Guinea)" - }, - { - "Id": "nmy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Namuyi" - }, - { - "Id": "nmz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nawdm" - }, - { - "Id": "nna", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nyangumarta" - }, - { - "Id": "nnb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nande" - }, - { - "Id": "nnc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nancere" - }, - { - "Id": "nnd", - "Scope": "I", - "LanguageType": "L", - "RefName": "West Ambae" - }, - { - "Id": "nne", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngandyera" - }, - { - "Id": "nnf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngaing" - }, - { - "Id": "nng", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maring Naga" - }, - { - "Id": "nnh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngiemboon" - }, - { - "Id": "nni", - "Scope": "I", - "LanguageType": "L", - "RefName": "North Nuaulu" - }, - { - "Id": "nnj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nyangatom" - }, - { - "Id": "nnk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nankina" - }, - { - "Id": "nnl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Rengma Naga" - }, - { - "Id": "nnm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Namia" - }, - { - "Id": "nnn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngete" - }, - { - "Id": "nno", - "Part2B": "nno", - "Part2T": "nno", - "Part1": "nn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Norwegian Nynorsk" - }, - { - "Id": "nnp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wancho Naga" - }, - { - "Id": "nnq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngindo" - }, - { - "Id": "nnr", - "Scope": "I", - "LanguageType": "E", - "RefName": "Narungga" - }, - { - "Id": "nnt", - "Scope": "I", - "LanguageType": "E", - "RefName": "Nanticoke" - }, - { - "Id": "nnu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dwang" - }, - { - "Id": "nnv", - "Scope": "I", - "LanguageType": "E", - "RefName": "Nugunu (Australia)" - }, - { - "Id": "nnw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Nuni" - }, - { - "Id": "nny", - "Scope": "I", - "LanguageType": "E", - "RefName": "Nyangga" - }, - { - "Id": "nnz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nda\u0027nda\u0027" - }, - { - "Id": "noa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Woun Meu" - }, - { - "Id": "nob", - "Part2B": "nob", - "Part2T": "nob", - "Part1": "nb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Norwegian Bokm\u00E5l" - }, - { - "Id": "noc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nuk" - }, - { - "Id": "nod", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Thai" - }, - { - "Id": "noe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nimadi" - }, - { - "Id": "nof", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nomane" - }, - { - "Id": "nog", - "Part2B": "nog", - "Part2T": "nog", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nogai" - }, - { - "Id": "noh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nomu" - }, - { - "Id": "noi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Noiri" - }, - { - "Id": "noj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nonuya" - }, - { - "Id": "nok", - "Scope": "I", - "LanguageType": "E", - "RefName": "Nooksack" - }, - { - "Id": "nol", - "Scope": "I", - "LanguageType": "E", - "RefName": "Nomlaki" - }, - { - "Id": "non", - "Part2B": "non", - "Part2T": "non", - "Scope": "I", - "LanguageType": "H", - "RefName": "Old Norse" - }, - { - "Id": "nop", - "Scope": "I", - "LanguageType": "L", - "RefName": "Numanggang" - }, - { - "Id": "noq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngongo" - }, - { - "Id": "nor", - "Part2B": "nor", - "Part2T": "nor", - "Part1": "no", - "Scope": "M", - "LanguageType": "L", - "RefName": "Norwegian" - }, - { - "Id": "nos", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Nisu" - }, - { - "Id": "not", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nomatsiguenga" - }, - { - "Id": "nou", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ewage-Notu" - }, - { - "Id": "nov", - "Scope": "I", - "LanguageType": "C", - "RefName": "Novial" - }, - { - "Id": "now", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nyambo" - }, - { - "Id": "noy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Noy" - }, - { - "Id": "noz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nayi" - }, - { - "Id": "npa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nar Phu" - }, - { - "Id": "npb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nupbikha" - }, - { - "Id": "npg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ponyo-Gongwang Naga" - }, - { - "Id": "nph", - "Scope": "I", - "LanguageType": "L", - "RefName": "Phom Naga" - }, - { - "Id": "npi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nepali (individual language)" - }, - { - "Id": "npl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southeastern Puebla Nahuatl" - }, - { - "Id": "npn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mondropolon" - }, - { - "Id": "npo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pochuri Naga" - }, - { - "Id": "nps", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nipsan" - }, - { - "Id": "npu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Puimei Naga" - }, - { - "Id": "npx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Noipx" - }, - { - "Id": "npy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Napu" - }, - { - "Id": "nqg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Nago" - }, - { - "Id": "nqk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kura Ede Nago" - }, - { - "Id": "nql", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngendelengo" - }, - { - "Id": "nqm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ndom" - }, - { - "Id": "nqn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nen" - }, - { - "Id": "nqo", - "Part2B": "nqo", - "Part2T": "nqo", - "Scope": "I", - "LanguageType": "L", - "RefName": "N\u0027Ko" - }, - { - "Id": "nqq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kyan-Karyaw Naga" - }, - { - "Id": "nqt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nteng" - }, - { - "Id": "nqy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Akyaung Ari Naga" - }, - { - "Id": "nra", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngom" - }, - { - "Id": "nrb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nara" - }, - { - "Id": "nrc", - "Scope": "I", - "LanguageType": "H", - "RefName": "Noric" - }, - { - "Id": "nre", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Rengma Naga" - }, - { - "Id": "nrf", - "Scope": "I", - "LanguageType": "L", - "RefName": "J\u00E8rriais" - }, - { - "Id": "nrg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Narango" - }, - { - "Id": "nri", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chokri Naga" - }, - { - "Id": "nrk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngarla" - }, - { - "Id": "nrl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngarluma" - }, - { - "Id": "nrm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Narom" - }, - { - "Id": "nrn", - "Scope": "I", - "LanguageType": "E", - "RefName": "Norn" - }, - { - "Id": "nrp", - "Scope": "I", - "LanguageType": "H", - "RefName": "North Picene" - }, - { - "Id": "nrr", - "Scope": "I", - "LanguageType": "E", - "RefName": "Norra" - }, - { - "Id": "nrt", - "Scope": "I", - "LanguageType": "E", - "RefName": "Northern Kalapuya" - }, - { - "Id": "nru", - "Scope": "I", - "LanguageType": "L", - "RefName": "Narua" - }, - { - "Id": "nrx", - "Scope": "I", - "LanguageType": "E", - "RefName": "Ngurmbur" - }, - { - "Id": "nrz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lala" - }, - { - "Id": "nsa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sangtam Naga" - }, - { - "Id": "nsb", - "Scope": "I", - "LanguageType": "E", - "RefName": "Lower Nossob" - }, - { - "Id": "nsc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nshi" - }, - { - "Id": "nsd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Nisu" - }, - { - "Id": "nse", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nsenga" - }, - { - "Id": "nsf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northwestern Nisu" - }, - { - "Id": "nsg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngasa" - }, - { - "Id": "nsh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngoshie" - }, - { - "Id": "nsi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nigerian Sign Language" - }, - { - "Id": "nsk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Naskapi" - }, - { - "Id": "nsl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Norwegian Sign Language" - }, - { - "Id": "nsm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sumi Naga" - }, - { - "Id": "nsn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nehan" - }, - { - "Id": "nso", - "Part2B": "nso", - "Part2T": "nso", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pedi" - }, - { - "Id": "nsp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nepalese Sign Language" - }, - { - "Id": "nsq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Sierra Miwok" - }, - { - "Id": "nsr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maritime Sign Language" - }, - { - "Id": "nss", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nali" - }, - { - "Id": "nst", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tase Naga" - }, - { - "Id": "nsu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sierra Negra Nahuatl" - }, - { - "Id": "nsv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southwestern Nisu" - }, - { - "Id": "nsw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Navut" - }, - { - "Id": "nsx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nsongo" - }, - { - "Id": "nsy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nasal" - }, - { - "Id": "nsz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nisenan" - }, - { - "Id": "ntd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Tidung" - }, - { - "Id": "ntg", - "Scope": "I", - "LanguageType": "E", - "RefName": "Ngantangarra" - }, - { - "Id": "nti", - "Scope": "I", - "LanguageType": "L", - "RefName": "Natioro" - }, - { - "Id": "ntj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngaanyatjarra" - }, - { - "Id": "ntk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ikoma-Nata-Isenye" - }, - { - "Id": "ntm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nateni" - }, - { - "Id": "nto", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ntomba" - }, - { - "Id": "ntp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Tepehuan" - }, - { - "Id": "ntr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Delo" - }, - { - "Id": "ntu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nat\u00FCgu" - }, - { - "Id": "ntw", - "Scope": "I", - "LanguageType": "E", - "RefName": "Nottoway" - }, - { - "Id": "ntx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tangkhul Naga (Myanmar)" - }, - { - "Id": "nty", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mantsi" - }, - { - "Id": "ntz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Natanzi" - }, - { - "Id": "nua", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yuanga" - }, - { - "Id": "nuc", - "Scope": "I", - "LanguageType": "E", - "RefName": "Nukuini" - }, - { - "Id": "nud", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngala" - }, - { - "Id": "nue", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngundu" - }, - { - "Id": "nuf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nusu" - }, - { - "Id": "nug", - "Scope": "I", - "LanguageType": "E", - "RefName": "Nungali" - }, - { - "Id": "nuh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ndunda" - }, - { - "Id": "nui", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngumbi" - }, - { - "Id": "nuj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nyole" - }, - { - "Id": "nuk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nuu-chah-nulth" - }, - { - "Id": "nul", - "Scope": "I", - "LanguageType": "E", - "RefName": "Nusa Laut" - }, - { - "Id": "num", - "Scope": "I", - "LanguageType": "L", - "RefName": "Niuafo\u0027ou" - }, - { - "Id": "nun", - "Scope": "I", - "LanguageType": "L", - "RefName": "Anong" - }, - { - "Id": "nuo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngu\u00F4n" - }, - { - "Id": "nup", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nupe-Nupe-Tako" - }, - { - "Id": "nuq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nukumanu" - }, - { - "Id": "nur", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nukuria" - }, - { - "Id": "nus", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nuer" - }, - { - "Id": "nut", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nung (Viet Nam)" - }, - { - "Id": "nuu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngbundu" - }, - { - "Id": "nuv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Nuni" - }, - { - "Id": "nuw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nguluwan" - }, - { - "Id": "nux", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mehek" - }, - { - "Id": "nuy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nunggubuyu" - }, - { - "Id": "nuz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tlamacazapa Nahuatl" - }, - { - "Id": "nvh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nasarian" - }, - { - "Id": "nvm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Namiae" - }, - { - "Id": "nvo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nyokon" - }, - { - "Id": "nwa", - "Scope": "I", - "LanguageType": "E", - "RefName": "Nawathinehena" - }, - { - "Id": "nwb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nyabwa" - }, - { - "Id": "nwc", - "Part2B": "nwc", - "Part2T": "nwc", - "Scope": "I", - "LanguageType": "H", - "RefName": "Classical Newari" - }, - { - "Id": "nwe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngwe" - }, - { - "Id": "nwg", - "Scope": "I", - "LanguageType": "E", - "RefName": "Ngayawung" - }, - { - "Id": "nwi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southwest Tanna" - }, - { - "Id": "nwm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nyamusa-Molo" - }, - { - "Id": "nwo", - "Scope": "I", - "LanguageType": "E", - "RefName": "Nauo" - }, - { - "Id": "nwr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nawaru" - }, - { - "Id": "nww", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ndwewe" - }, - { - "Id": "nwx", - "Scope": "I", - "LanguageType": "H", - "RefName": "Middle Newar" - }, - { - "Id": "nwy", - "Scope": "I", - "LanguageType": "E", - "RefName": "Nottoway-Meherrin" - }, - { - "Id": "nxa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nauete" - }, - { - "Id": "nxd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngando (Democratic Republic of Congo)" - }, - { - "Id": "nxe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nage" - }, - { - "Id": "nxg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngad\u0027a" - }, - { - "Id": "nxi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nindi" - }, - { - "Id": "nxk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Koki Naga" - }, - { - "Id": "nxl", - "Scope": "I", - "LanguageType": "L", - "RefName": "South Nuaulu" - }, - { - "Id": "nxm", - "Scope": "I", - "LanguageType": "H", - "RefName": "Numidian" - }, - { - "Id": "nxn", - "Scope": "I", - "LanguageType": "E", - "RefName": "Ngawun" - }, - { - "Id": "nxo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ndambomo" - }, - { - "Id": "nxq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Naxi" - }, - { - "Id": "nxr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ninggerum" - }, - { - "Id": "nxx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nafri" - }, - { - "Id": "nya", - "Part2B": "nya", - "Part2T": "nya", - "Part1": "ny", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chichewa" - }, - { - "Id": "nyb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nyangbo" - }, - { - "Id": "nyc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nyanga-li" - }, - { - "Id": "nyd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nyore" - }, - { - "Id": "nye", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nyengo" - }, - { - "Id": "nyf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Giryama" - }, - { - "Id": "nyg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nyindu" - }, - { - "Id": "nyh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nyikina" - }, - { - "Id": "nyi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ama (Sudan)" - }, - { - "Id": "nyj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nyanga" - }, - { - "Id": "nyk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nyaneka" - }, - { - "Id": "nyl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nyeu" - }, - { - "Id": "nym", - "Part2B": "nym", - "Part2T": "nym", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nyamwezi" - }, - { - "Id": "nyn", - "Part2B": "nyn", - "Part2T": "nyn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nyankole" - }, - { - "Id": "nyo", - "Part2B": "nyo", - "Part2T": "nyo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nyoro" - }, - { - "Id": "nyp", - "Scope": "I", - "LanguageType": "E", - "RefName": "Nyang\u0027i" - }, - { - "Id": "nyq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nayini" - }, - { - "Id": "nyr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nyiha (Malawi)" - }, - { - "Id": "nys", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nyungar" - }, - { - "Id": "nyt", - "Scope": "I", - "LanguageType": "E", - "RefName": "Nyawaygi" - }, - { - "Id": "nyu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nyungwe" - }, - { - "Id": "nyv", - "Scope": "I", - "LanguageType": "E", - "RefName": "Nyulnyul" - }, - { - "Id": "nyw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nyaw" - }, - { - "Id": "nyx", - "Scope": "I", - "LanguageType": "E", - "RefName": "Nganyaywana" - }, - { - "Id": "nyy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nyakyusa-Ngonde" - }, - { - "Id": "nza", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tigon Mbembe" - }, - { - "Id": "nzb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Njebi" - }, - { - "Id": "nzd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nzadi" - }, - { - "Id": "nzi", - "Part2B": "nzi", - "Part2T": "nzi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nzima" - }, - { - "Id": "nzk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nzakara" - }, - { - "Id": "nzm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zeme Naga" - }, - { - "Id": "nzr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dir-Nyamzak-Mbarimi" - }, - { - "Id": "nzs", - "Scope": "I", - "LanguageType": "L", - "RefName": "New Zealand Sign Language" - }, - { - "Id": "nzu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Teke-Nzikou" - }, - { - "Id": "nzy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nzakambay" - }, - { - "Id": "nzz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nanga Dama Dogon" - }, - { - "Id": "oaa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Orok" - }, - { - "Id": "oac", - "Scope": "I", - "LanguageType": "L", - "RefName": "Oroch" - }, - { - "Id": "oak", - "Scope": "I", - "LanguageType": "L", - "RefName": "Noakhali" - }, - { - "Id": "oar", - "Scope": "I", - "LanguageType": "H", - "RefName": "Old Aramaic (up to 700 BCE)" - }, - { - "Id": "oav", - "Scope": "I", - "LanguageType": "H", - "RefName": "Old Avar" - }, - { - "Id": "obi", - "Scope": "I", - "LanguageType": "E", - "RefName": "Obispe\u00F1o" - }, - { - "Id": "obk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Bontok" - }, - { - "Id": "obl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Oblo" - }, - { - "Id": "obm", - "Scope": "I", - "LanguageType": "H", - "RefName": "Moabite" - }, - { - "Id": "obo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Obo Manobo" - }, - { - "Id": "obr", - "Scope": "I", - "LanguageType": "H", - "RefName": "Old Burmese" - }, - { - "Id": "obt", - "Scope": "I", - "LanguageType": "H", - "RefName": "Old Breton" - }, - { - "Id": "obu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Obulom" - }, - { - "Id": "oca", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ocaina" - }, - { - "Id": "och", - "Scope": "I", - "LanguageType": "H", - "RefName": "Old Chinese" - }, - { - "Id": "oci", - "Part2B": "oci", - "Part2T": "oci", - "Part1": "oc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Occitan (post 1500)" - }, - { - "Id": "ocm", - "Scope": "I", - "LanguageType": "H", - "RefName": "Old Cham" - }, - { - "Id": "oco", - "Scope": "I", - "LanguageType": "H", - "RefName": "Old Cornish" - }, - { - "Id": "ocu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Atzingo Matlatzinca" - }, - { - "Id": "oda", - "Scope": "I", - "LanguageType": "L", - "RefName": "Odut" - }, - { - "Id": "odk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Od" - }, - { - "Id": "odt", - "Scope": "I", - "LanguageType": "H", - "RefName": "Old Dutch" - }, - { - "Id": "odu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Odual" - }, - { - "Id": "ofo", - "Scope": "I", - "LanguageType": "E", - "RefName": "Ofo" - }, - { - "Id": "ofs", - "Scope": "I", - "LanguageType": "H", - "RefName": "Old Frisian" - }, - { - "Id": "ofu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Efutop" - }, - { - "Id": "ogb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ogbia" - }, - { - "Id": "ogc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ogbah" - }, - { - "Id": "oge", - "Scope": "I", - "LanguageType": "H", - "RefName": "Old Georgian" - }, - { - "Id": "ogg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ogbogolo" - }, - { - "Id": "ogo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Khana" - }, - { - "Id": "ogu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ogbronuagum" - }, - { - "Id": "oht", - "Scope": "I", - "LanguageType": "H", - "RefName": "Old Hittite" - }, - { - "Id": "ohu", - "Scope": "I", - "LanguageType": "H", - "RefName": "Old Hungarian" - }, - { - "Id": "oia", - "Scope": "I", - "LanguageType": "L", - "RefName": "Oirata" - }, - { - "Id": "oie", - "Scope": "I", - "LanguageType": "L", - "RefName": "Okolie" - }, - { - "Id": "oin", - "Scope": "I", - "LanguageType": "L", - "RefName": "Inebu One" - }, - { - "Id": "ojb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northwestern Ojibwa" - }, - { - "Id": "ojc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Central Ojibwa" - }, - { - "Id": "ojg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Ojibwa" - }, - { - "Id": "oji", - "Part2B": "oji", - "Part2T": "oji", - "Part1": "oj", - "Scope": "M", - "LanguageType": "L", - "RefName": "Ojibwa" - }, - { - "Id": "ojp", - "Scope": "I", - "LanguageType": "H", - "RefName": "Old Japanese" - }, - { - "Id": "ojs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Severn Ojibwa" - }, - { - "Id": "ojv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ontong Java" - }, - { - "Id": "ojw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Ojibwa" - }, - { - "Id": "oka", - "Scope": "I", - "LanguageType": "L", - "RefName": "Okanagan" - }, - { - "Id": "okb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Okobo" - }, - { - "Id": "okc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kobo" - }, - { - "Id": "okd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Okodia" - }, - { - "Id": "oke", - "Scope": "I", - "LanguageType": "L", - "RefName": "Okpe (Southwestern Edo)" - }, - { - "Id": "okg", - "Scope": "I", - "LanguageType": "E", - "RefName": "Koko Babangk" - }, - { - "Id": "okh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Koresh-e Rostam" - }, - { - "Id": "oki", - "Scope": "I", - "LanguageType": "L", - "RefName": "Okiek" - }, - { - "Id": "okj", - "Scope": "I", - "LanguageType": "E", - "RefName": "Oko-Juwoi" - }, - { - "Id": "okk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kwamtim One" - }, - { - "Id": "okl", - "Scope": "I", - "LanguageType": "E", - "RefName": "Old Kentish Sign Language" - }, - { - "Id": "okm", - "Scope": "I", - "LanguageType": "H", - "RefName": "Middle Korean (10th-16th cent.)" - }, - { - "Id": "okn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Oki-No-Erabu" - }, - { - "Id": "oko", - "Scope": "I", - "LanguageType": "H", - "RefName": "Old Korean (3rd-9th cent.)" - }, - { - "Id": "okr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kirike" - }, - { - "Id": "oks", - "Scope": "I", - "LanguageType": "L", - "RefName": "Oko-Eni-Osayen" - }, - { - "Id": "oku", - "Scope": "I", - "LanguageType": "L", - "RefName": "Oku" - }, - { - "Id": "okv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Orokaiva" - }, - { - "Id": "okx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Okpe (Northwestern Edo)" - }, - { - "Id": "okz", - "Scope": "I", - "LanguageType": "H", - "RefName": "Old Khmer" - }, - { - "Id": "ola", - "Scope": "I", - "LanguageType": "L", - "RefName": "Walungge" - }, - { - "Id": "olb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Oli-Bodiman" - }, - { - "Id": "old", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mochi" - }, - { - "Id": "ole", - "Scope": "I", - "LanguageType": "L", - "RefName": "Olekha" - }, - { - "Id": "olk", - "Scope": "I", - "LanguageType": "E", - "RefName": "Olkol" - }, - { - "Id": "olm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Oloma" - }, - { - "Id": "olo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Livvi" - }, - { - "Id": "olr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Olrat" - }, - { - "Id": "olt", - "Scope": "I", - "LanguageType": "H", - "RefName": "Old Lithuanian" - }, - { - "Id": "olu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kuvale" - }, - { - "Id": "oma", - "Scope": "I", - "LanguageType": "L", - "RefName": "Omaha-Ponca" - }, - { - "Id": "omb", - "Scope": "I", - "LanguageType": "L", - "RefName": "East Ambae" - }, - { - "Id": "omc", - "Scope": "I", - "LanguageType": "E", - "RefName": "Mochica" - }, - { - "Id": "omg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Omagua" - }, - { - "Id": "omi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Omi" - }, - { - "Id": "omk", - "Scope": "I", - "LanguageType": "E", - "RefName": "Omok" - }, - { - "Id": "oml", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ombo" - }, - { - "Id": "omn", - "Scope": "I", - "LanguageType": "H", - "RefName": "Minoan" - }, - { - "Id": "omo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Utarmbung" - }, - { - "Id": "omp", - "Scope": "I", - "LanguageType": "H", - "RefName": "Old Manipuri" - }, - { - "Id": "omr", - "Scope": "I", - "LanguageType": "H", - "RefName": "Old Marathi" - }, - { - "Id": "omt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Omotik" - }, - { - "Id": "omu", - "Scope": "I", - "LanguageType": "E", - "RefName": "Omurano" - }, - { - "Id": "omw", - "Scope": "I", - "LanguageType": "L", - "RefName": "South Tairora" - }, - { - "Id": "omx", - "Scope": "I", - "LanguageType": "H", - "RefName": "Old Mon" - }, - { - "Id": "omy", - "Scope": "I", - "LanguageType": "H", - "RefName": "Old Malay" - }, - { - "Id": "ona", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ona" - }, - { - "Id": "onb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lingao" - }, - { - "Id": "one", - "Scope": "I", - "LanguageType": "L", - "RefName": "Oneida" - }, - { - "Id": "ong", - "Scope": "I", - "LanguageType": "L", - "RefName": "Olo" - }, - { - "Id": "oni", - "Scope": "I", - "LanguageType": "L", - "RefName": "Onin" - }, - { - "Id": "onj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Onjob" - }, - { - "Id": "onk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kabore One" - }, - { - "Id": "onn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Onobasulu" - }, - { - "Id": "ono", - "Scope": "I", - "LanguageType": "L", - "RefName": "Onondaga" - }, - { - "Id": "onp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sartang" - }, - { - "Id": "onr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern One" - }, - { - "Id": "ons", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ono" - }, - { - "Id": "ont", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ontenu" - }, - { - "Id": "onu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Unua" - }, - { - "Id": "onw", - "Scope": "I", - "LanguageType": "H", - "RefName": "Old Nubian" - }, - { - "Id": "onx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Onin Based Pidgin" - }, - { - "Id": "ood", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tohono O\u0027odham" - }, - { - "Id": "oog", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ong" - }, - { - "Id": "oon", - "Scope": "I", - "LanguageType": "L", - "RefName": "\u00D6nge" - }, - { - "Id": "oor", - "Scope": "I", - "LanguageType": "L", - "RefName": "Oorlams" - }, - { - "Id": "oos", - "Scope": "I", - "LanguageType": "H", - "RefName": "Old Ossetic" - }, - { - "Id": "opa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Okpamheri" - }, - { - "Id": "opk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kopkaka" - }, - { - "Id": "opm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Oksapmin" - }, - { - "Id": "opo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Opao" - }, - { - "Id": "opt", - "Scope": "I", - "LanguageType": "E", - "RefName": "Opata" - }, - { - "Id": "opy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ofay\u00E9" - }, - { - "Id": "ora", - "Scope": "I", - "LanguageType": "L", - "RefName": "Oroha" - }, - { - "Id": "orc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Orma" - }, - { - "Id": "ore", - "Scope": "I", - "LanguageType": "L", - "RefName": "Orej\u00F3n" - }, - { - "Id": "org", - "Scope": "I", - "LanguageType": "L", - "RefName": "Oring" - }, - { - "Id": "orh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Oroqen" - }, - { - "Id": "ori", - "Part2B": "ori", - "Part2T": "ori", - "Part1": "or", - "Scope": "M", - "LanguageType": "L", - "RefName": "Oriya (macrolanguage)" - }, - { - "Id": "orm", - "Part2B": "orm", - "Part2T": "orm", - "Part1": "om", - "Scope": "M", - "LanguageType": "L", - "RefName": "Oromo" - }, - { - "Id": "orn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Orang Kanaq" - }, - { - "Id": "oro", - "Scope": "I", - "LanguageType": "L", - "RefName": "Orokolo" - }, - { - "Id": "orr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Oruma" - }, - { - "Id": "ors", - "Scope": "I", - "LanguageType": "L", - "RefName": "Orang Seletar" - }, - { - "Id": "ort", - "Scope": "I", - "LanguageType": "L", - "RefName": "Adivasi Oriya" - }, - { - "Id": "oru", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ormuri" - }, - { - "Id": "orv", - "Scope": "I", - "LanguageType": "H", - "RefName": "Old Russian" - }, - { - "Id": "orw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Oro Win" - }, - { - "Id": "orx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Oro" - }, - { - "Id": "ory", - "Scope": "I", - "LanguageType": "L", - "RefName": "Odia" - }, - { - "Id": "orz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ormu" - }, - { - "Id": "osa", - "Part2B": "osa", - "Part2T": "osa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Osage" - }, - { - "Id": "osc", - "Scope": "I", - "LanguageType": "H", - "RefName": "Oscan" - }, - { - "Id": "osd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Digor Ossetic" - }, - { - "Id": "osi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Osing" - }, - { - "Id": "osn", - "Scope": "I", - "LanguageType": "H", - "RefName": "Old Sundanese" - }, - { - "Id": "oso", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ososo" - }, - { - "Id": "osp", - "Scope": "I", - "LanguageType": "H", - "RefName": "Old Spanish" - }, - { - "Id": "oss", - "Part2B": "oss", - "Part2T": "oss", - "Part1": "os", - "Scope": "I", - "LanguageType": "L", - "RefName": "Iron Ossetic" - }, - { - "Id": "ost", - "Scope": "I", - "LanguageType": "L", - "RefName": "Osatu" - }, - { - "Id": "osu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern One" - }, - { - "Id": "osx", - "Scope": "I", - "LanguageType": "H", - "RefName": "Old Saxon" - }, - { - "Id": "ota", - "Part2B": "ota", - "Part2T": "ota", - "Scope": "I", - "LanguageType": "H", - "RefName": "Ottoman Turkish (1500-1928)" - }, - { - "Id": "otb", - "Scope": "I", - "LanguageType": "H", - "RefName": "Old Tibetan" - }, - { - "Id": "otd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ot Danum" - }, - { - "Id": "ote", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mezquital Otomi" - }, - { - "Id": "oti", - "Scope": "I", - "LanguageType": "E", - "RefName": "Oti" - }, - { - "Id": "otk", - "Scope": "I", - "LanguageType": "H", - "RefName": "Old Turkish" - }, - { - "Id": "otl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tilapa Otomi" - }, - { - "Id": "otm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Highland Otomi" - }, - { - "Id": "otn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tenango Otomi" - }, - { - "Id": "otq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Quer\u00E9taro Otomi" - }, - { - "Id": "otr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Otoro" - }, - { - "Id": "ots", - "Scope": "I", - "LanguageType": "L", - "RefName": "Estado de M\u00E9xico Otomi" - }, - { - "Id": "ott", - "Scope": "I", - "LanguageType": "L", - "RefName": "Temoaya Otomi" - }, - { - "Id": "otu", - "Scope": "I", - "LanguageType": "E", - "RefName": "Otuke" - }, - { - "Id": "otw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ottawa" - }, - { - "Id": "otx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Texcatepec Otomi" - }, - { - "Id": "oty", - "Scope": "I", - "LanguageType": "H", - "RefName": "Old Tamil" - }, - { - "Id": "otz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ixtenco Otomi" - }, - { - "Id": "oua", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tagargrent" - }, - { - "Id": "oub", - "Scope": "I", - "LanguageType": "L", - "RefName": "Glio-Oubi" - }, - { - "Id": "oue", - "Scope": "I", - "LanguageType": "L", - "RefName": "Oune" - }, - { - "Id": "oui", - "Scope": "I", - "LanguageType": "H", - "RefName": "Old Uighur" - }, - { - "Id": "oum", - "Scope": "I", - "LanguageType": "E", - "RefName": "Ouma" - }, - { - "Id": "ovd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Elfdalian" - }, - { - "Id": "owi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Owiniga" - }, - { - "Id": "owl", - "Scope": "I", - "LanguageType": "H", - "RefName": "Old Welsh" - }, - { - "Id": "oyb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Oy" - }, - { - "Id": "oyd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Oyda" - }, - { - "Id": "oym", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wayampi" - }, - { - "Id": "oyy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Oya\u0027oya" - }, - { - "Id": "ozm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Koonzime" - }, - { - "Id": "pab", - "Scope": "I", - "LanguageType": "L", - "RefName": "Parec\u00EDs" - }, - { - "Id": "pac", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pacoh" - }, - { - "Id": "pad", - "Scope": "I", - "LanguageType": "L", - "RefName": "Paumar\u00ED" - }, - { - "Id": "pae", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pagibete" - }, - { - "Id": "paf", - "Scope": "I", - "LanguageType": "E", - "RefName": "Paranaw\u00E1t" - }, - { - "Id": "pag", - "Part2B": "pag", - "Part2T": "pag", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pangasinan" - }, - { - "Id": "pah", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tenharim" - }, - { - "Id": "pai", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pe" - }, - { - "Id": "pak", - "Scope": "I", - "LanguageType": "L", - "RefName": "Parakan\u00E3" - }, - { - "Id": "pal", - "Part2B": "pal", - "Part2T": "pal", - "Scope": "I", - "LanguageType": "H", - "RefName": "Pahlavi" - }, - { - "Id": "pam", - "Part2B": "pam", - "Part2T": "pam", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pampanga" - }, - { - "Id": "pan", - "Part2B": "pan", - "Part2T": "pan", - "Part1": "pa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Panjabi" - }, - { - "Id": "pao", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Paiute" - }, - { - "Id": "pap", - "Part2B": "pap", - "Part2T": "pap", - "Scope": "I", - "LanguageType": "L", - "RefName": "Papiamento" - }, - { - "Id": "paq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Parya" - }, - { - "Id": "par", - "Scope": "I", - "LanguageType": "L", - "RefName": "Panamint" - }, - { - "Id": "pas", - "Scope": "I", - "LanguageType": "L", - "RefName": "Papasena" - }, - { - "Id": "pau", - "Part2B": "pau", - "Part2T": "pau", - "Scope": "I", - "LanguageType": "L", - "RefName": "Palauan" - }, - { - "Id": "pav", - "Scope": "I", - "LanguageType": "L", - "RefName": "Paka\u00E1snovos" - }, - { - "Id": "paw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pawnee" - }, - { - "Id": "pax", - "Scope": "I", - "LanguageType": "E", - "RefName": "Pankarar\u00E9" - }, - { - "Id": "pay", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pech" - }, - { - "Id": "paz", - "Scope": "I", - "LanguageType": "E", - "RefName": "Pankarar\u00FA" - }, - { - "Id": "pbb", - "Scope": "I", - "LanguageType": "L", - "RefName": "P\u00E1ez" - }, - { - "Id": "pbc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Patamona" - }, - { - "Id": "pbe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mezontla Popoloca" - }, - { - "Id": "pbf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Coyotepec Popoloca" - }, - { - "Id": "pbg", - "Scope": "I", - "LanguageType": "E", - "RefName": "Paraujano" - }, - { - "Id": "pbh", - "Scope": "I", - "LanguageType": "L", - "RefName": "E\u0027\u00F1apa Woromaipu" - }, - { - "Id": "pbi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Parkwa" - }, - { - "Id": "pbl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mak (Nigeria)" - }, - { - "Id": "pbm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Puebla Mazatec" - }, - { - "Id": "pbn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kpasam" - }, - { - "Id": "pbo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Papel" - }, - { - "Id": "pbp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Badyara" - }, - { - "Id": "pbr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pangwa" - }, - { - "Id": "pbs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Central Pame" - }, - { - "Id": "pbt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Pashto" - }, - { - "Id": "pbu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Pashto" - }, - { - "Id": "pbv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pnar" - }, - { - "Id": "pby", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pyu (Papua New Guinea)" - }, - { - "Id": "pca", - "Scope": "I", - "LanguageType": "L", - "RefName": "Santa In\u00E9s Ahuatempan Popoloca" - }, - { - "Id": "pcb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pear" - }, - { - "Id": "pcc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bouyei" - }, - { - "Id": "pcd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Picard" - }, - { - "Id": "pce", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ruching Palaung" - }, - { - "Id": "pcf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Paliyan" - }, - { - "Id": "pcg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Paniya" - }, - { - "Id": "pch", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pardhan" - }, - { - "Id": "pci", - "Scope": "I", - "LanguageType": "L", - "RefName": "Duruwa" - }, - { - "Id": "pcj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Parenga" - }, - { - "Id": "pck", - "Scope": "I", - "LanguageType": "L", - "RefName": "Paite Chin" - }, - { - "Id": "pcl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pardhi" - }, - { - "Id": "pcm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nigerian Pidgin" - }, - { - "Id": "pcn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Piti" - }, - { - "Id": "pcp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pacahuara" - }, - { - "Id": "pcw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pyapun" - }, - { - "Id": "pda", - "Scope": "I", - "LanguageType": "L", - "RefName": "Anam" - }, - { - "Id": "pdc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pennsylvania German" - }, - { - "Id": "pdi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pa Di" - }, - { - "Id": "pdn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Podena" - }, - { - "Id": "pdo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Padoe" - }, - { - "Id": "pdt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Plautdietsch" - }, - { - "Id": "pdu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kayan" - }, - { - "Id": "pea", - "Scope": "I", - "LanguageType": "L", - "RefName": "Peranakan Indonesian" - }, - { - "Id": "peb", - "Scope": "I", - "LanguageType": "E", - "RefName": "Eastern Pomo" - }, - { - "Id": "ped", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mala (Papua New Guinea)" - }, - { - "Id": "pee", - "Scope": "I", - "LanguageType": "L", - "RefName": "Taje" - }, - { - "Id": "pef", - "Scope": "I", - "LanguageType": "E", - "RefName": "Northeastern Pomo" - }, - { - "Id": "peg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pengo" - }, - { - "Id": "peh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bonan" - }, - { - "Id": "pei", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chichimeca-Jonaz" - }, - { - "Id": "pej", - "Scope": "I", - "LanguageType": "E", - "RefName": "Northern Pomo" - }, - { - "Id": "pek", - "Scope": "I", - "LanguageType": "L", - "RefName": "Penchal" - }, - { - "Id": "pel", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pekal" - }, - { - "Id": "pem", - "Scope": "I", - "LanguageType": "L", - "RefName": "Phende" - }, - { - "Id": "peo", - "Part2B": "peo", - "Part2T": "peo", - "Scope": "I", - "LanguageType": "H", - "RefName": "Old Persian (ca. 600-400 B.C.)" - }, - { - "Id": "pep", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kunja" - }, - { - "Id": "peq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Pomo" - }, - { - "Id": "pes", - "Scope": "I", - "LanguageType": "L", - "RefName": "Iranian Persian" - }, - { - "Id": "pev", - "Scope": "I", - "LanguageType": "L", - "RefName": "P\u00E9mono" - }, - { - "Id": "pex", - "Scope": "I", - "LanguageType": "L", - "RefName": "Petats" - }, - { - "Id": "pey", - "Scope": "I", - "LanguageType": "L", - "RefName": "Petjo" - }, - { - "Id": "pez", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Penan" - }, - { - "Id": "pfa", - "Scope": "I", - "LanguageType": "L", - "RefName": "P\u00E1\u00E1fang" - }, - { - "Id": "pfe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pere" - }, - { - "Id": "pfl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pfaelzisch" - }, - { - "Id": "pga", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sudanese Creole Arabic" - }, - { - "Id": "pgd", - "Scope": "I", - "LanguageType": "H", - "RefName": "G\u0101ndh\u0101r\u012B" - }, - { - "Id": "pgg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pangwali" - }, - { - "Id": "pgi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pagi" - }, - { - "Id": "pgk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rerep" - }, - { - "Id": "pgl", - "Scope": "I", - "LanguageType": "H", - "RefName": "Primitive Irish" - }, - { - "Id": "pgn", - "Scope": "I", - "LanguageType": "H", - "RefName": "Paelignian" - }, - { - "Id": "pgs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pangseng" - }, - { - "Id": "pgu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pagu" - }, - { - "Id": "pgz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Papua New Guinean Sign Language" - }, - { - "Id": "pha", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pa-Hng" - }, - { - "Id": "phd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Phudagi" - }, - { - "Id": "phg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Phuong" - }, - { - "Id": "phh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Phukha" - }, - { - "Id": "phj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pahari" - }, - { - "Id": "phk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Phake" - }, - { - "Id": "phl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Phalura" - }, - { - "Id": "phm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Phimbi" - }, - { - "Id": "phn", - "Part2B": "phn", - "Part2T": "phn", - "Scope": "I", - "LanguageType": "H", - "RefName": "Phoenician" - }, - { - "Id": "pho", - "Scope": "I", - "LanguageType": "L", - "RefName": "Phunoi" - }, - { - "Id": "phq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Phana\u0027" - }, - { - "Id": "phr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pahari-Potwari" - }, - { - "Id": "pht", - "Scope": "I", - "LanguageType": "L", - "RefName": "Phu Thai" - }, - { - "Id": "phu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Phuan" - }, - { - "Id": "phv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pahlavani" - }, - { - "Id": "phw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Phangduwali" - }, - { - "Id": "pia", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pima Bajo" - }, - { - "Id": "pib", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yine" - }, - { - "Id": "pic", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pinji" - }, - { - "Id": "pid", - "Scope": "I", - "LanguageType": "L", - "RefName": "Piaroa" - }, - { - "Id": "pie", - "Scope": "I", - "LanguageType": "E", - "RefName": "Piro" - }, - { - "Id": "pif", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pingelapese" - }, - { - "Id": "pig", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pisabo" - }, - { - "Id": "pih", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pitcairn-Norfolk" - }, - { - "Id": "pij", - "Scope": "I", - "LanguageType": "E", - "RefName": "Pijao" - }, - { - "Id": "pil", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yom" - }, - { - "Id": "pim", - "Scope": "I", - "LanguageType": "E", - "RefName": "Powhatan" - }, - { - "Id": "pin", - "Scope": "I", - "LanguageType": "L", - "RefName": "Piame" - }, - { - "Id": "pio", - "Scope": "I", - "LanguageType": "L", - "RefName": "Piapoco" - }, - { - "Id": "pip", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pero" - }, - { - "Id": "pir", - "Scope": "I", - "LanguageType": "L", - "RefName": "Piratapuyo" - }, - { - "Id": "pis", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pijin" - }, - { - "Id": "pit", - "Scope": "I", - "LanguageType": "E", - "RefName": "Pitta Pitta" - }, - { - "Id": "piu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pintupi-Luritja" - }, - { - "Id": "piv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pileni" - }, - { - "Id": "piw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pimbwe" - }, - { - "Id": "pix", - "Scope": "I", - "LanguageType": "L", - "RefName": "Piu" - }, - { - "Id": "piy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Piya-Kwonci" - }, - { - "Id": "piz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pije" - }, - { - "Id": "pjt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pitjantjatjara" - }, - { - "Id": "pka", - "Scope": "I", - "LanguageType": "H", - "RefName": "Ardham\u0101gadh\u012B Pr\u0101krit" - }, - { - "Id": "pkb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pokomo" - }, - { - "Id": "pkc", - "Scope": "I", - "LanguageType": "H", - "RefName": "Paekche" - }, - { - "Id": "pkg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pak-Tong" - }, - { - "Id": "pkh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pankhu" - }, - { - "Id": "pkn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pakanha" - }, - { - "Id": "pko", - "Scope": "I", - "LanguageType": "L", - "RefName": "P\u00F6koot" - }, - { - "Id": "pkp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pukapuka" - }, - { - "Id": "pkr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Attapady Kurumba" - }, - { - "Id": "pks", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pakistan Sign Language" - }, - { - "Id": "pkt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maleng" - }, - { - "Id": "pku", - "Scope": "I", - "LanguageType": "L", - "RefName": "Paku" - }, - { - "Id": "pla", - "Scope": "I", - "LanguageType": "L", - "RefName": "Miani" - }, - { - "Id": "plb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Polonombauk" - }, - { - "Id": "plc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Central Palawano" - }, - { - "Id": "pld", - "Scope": "I", - "LanguageType": "L", - "RefName": "Polari" - }, - { - "Id": "ple", - "Scope": "I", - "LanguageType": "L", - "RefName": "Palu\u0027e" - }, - { - "Id": "plg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pilag\u00E1" - }, - { - "Id": "plh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Paulohi" - }, - { - "Id": "pli", - "Part2B": "pli", - "Part2T": "pli", - "Part1": "pi", - "Scope": "I", - "LanguageType": "H", - "RefName": "Pali" - }, - { - "Id": "plk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kohistani Shina" - }, - { - "Id": "pll", - "Scope": "I", - "LanguageType": "L", - "RefName": "Shwe Palaung" - }, - { - "Id": "pln", - "Scope": "I", - "LanguageType": "L", - "RefName": "Palenquero" - }, - { - "Id": "plo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Oluta Popoluca" - }, - { - "Id": "plq", - "Scope": "I", - "LanguageType": "H", - "RefName": "Palaic" - }, - { - "Id": "plr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Palaka Senoufo" - }, - { - "Id": "pls", - "Scope": "I", - "LanguageType": "L", - "RefName": "San Marcos Tlacoyalco Popoloca" - }, - { - "Id": "plt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Plateau Malagasy" - }, - { - "Id": "plu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Palik\u00FAr" - }, - { - "Id": "plv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southwest Palawano" - }, - { - "Id": "plw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Brooke\u0027s Point Palawano" - }, - { - "Id": "ply", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bolyu" - }, - { - "Id": "plz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Paluan" - }, - { - "Id": "pma", - "Scope": "I", - "LanguageType": "L", - "RefName": "Paama" - }, - { - "Id": "pmb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pambia" - }, - { - "Id": "pmd", - "Scope": "I", - "LanguageType": "E", - "RefName": "Pallanganmiddang" - }, - { - "Id": "pme", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pwaamei" - }, - { - "Id": "pmf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pamona" - }, - { - "Id": "pmh", - "Scope": "I", - "LanguageType": "H", - "RefName": "M\u0101h\u0101r\u0101\u1E63\u1E6Dri Pr\u0101krit" - }, - { - "Id": "pmi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Pumi" - }, - { - "Id": "pmj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Pumi" - }, - { - "Id": "pml", - "Scope": "I", - "LanguageType": "E", - "RefName": "Lingua Franca" - }, - { - "Id": "pmm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pomo" - }, - { - "Id": "pmn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pam" - }, - { - "Id": "pmo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pom" - }, - { - "Id": "pmq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Pame" - }, - { - "Id": "pmr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Paynamar" - }, - { - "Id": "pms", - "Scope": "I", - "LanguageType": "L", - "RefName": "Piemontese" - }, - { - "Id": "pmt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tuamotuan" - }, - { - "Id": "pmw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Plains Miwok" - }, - { - "Id": "pmx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Poumei Naga" - }, - { - "Id": "pmy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Papuan Malay" - }, - { - "Id": "pmz", - "Scope": "I", - "LanguageType": "E", - "RefName": "Southern Pame" - }, - { - "Id": "pna", - "Scope": "I", - "LanguageType": "L", - "RefName": "Punan Bah-Biau" - }, - { - "Id": "pnb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Panjabi" - }, - { - "Id": "pnc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pannei" - }, - { - "Id": "pnd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mpinda" - }, - { - "Id": "pne", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Penan" - }, - { - "Id": "png", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pangu" - }, - { - "Id": "pnh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Penrhyn" - }, - { - "Id": "pni", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aoheng" - }, - { - "Id": "pnj", - "Scope": "I", - "LanguageType": "E", - "RefName": "Pinjarup" - }, - { - "Id": "pnk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Paunaka" - }, - { - "Id": "pnl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Paleni" - }, - { - "Id": "pnm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Punan Batu 1" - }, - { - "Id": "pnn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pinai-Hagahai" - }, - { - "Id": "pno", - "Scope": "I", - "LanguageType": "E", - "RefName": "Panobo" - }, - { - "Id": "pnp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pancana" - }, - { - "Id": "pnq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pana (Burkina Faso)" - }, - { - "Id": "pnr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Panim" - }, - { - "Id": "pns", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ponosakan" - }, - { - "Id": "pnt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pontic" - }, - { - "Id": "pnu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jiongnai Bunu" - }, - { - "Id": "pnv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pinigura" - }, - { - "Id": "pnw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Banyjima" - }, - { - "Id": "pnx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Phong-Kniang" - }, - { - "Id": "pny", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pinyin" - }, - { - "Id": "pnz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pana (Central African Republic)" - }, - { - "Id": "poc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Poqomam" - }, - { - "Id": "poe", - "Scope": "I", - "LanguageType": "L", - "RefName": "San Juan Atzingo Popoloca" - }, - { - "Id": "pof", - "Scope": "I", - "LanguageType": "L", - "RefName": "Poke" - }, - { - "Id": "pog", - "Scope": "I", - "LanguageType": "E", - "RefName": "Potigu\u00E1ra" - }, - { - "Id": "poh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Poqomchi\u0027" - }, - { - "Id": "poi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Highland Popoluca" - }, - { - "Id": "pok", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pokang\u00E1" - }, - { - "Id": "pol", - "Part2B": "pol", - "Part2T": "pol", - "Part1": "pl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Polish" - }, - { - "Id": "pom", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southeastern Pomo" - }, - { - "Id": "pon", - "Part2B": "pon", - "Part2T": "pon", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pohnpeian" - }, - { - "Id": "poo", - "Scope": "I", - "LanguageType": "E", - "RefName": "Central Pomo" - }, - { - "Id": "pop", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pwapw\u00E2" - }, - { - "Id": "poq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Texistepec Popoluca" - }, - { - "Id": "por", - "Part2B": "por", - "Part2T": "por", - "Part1": "pt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Portuguese" - }, - { - "Id": "pos", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sayula Popoluca" - }, - { - "Id": "pot", - "Scope": "I", - "LanguageType": "L", - "RefName": "Potawatomi" - }, - { - "Id": "pov", - "Scope": "I", - "LanguageType": "L", - "RefName": "Upper Guinea Crioulo" - }, - { - "Id": "pow", - "Scope": "I", - "LanguageType": "L", - "RefName": "San Felipe Otlaltepec Popoloca" - }, - { - "Id": "pox", - "Scope": "I", - "LanguageType": "E", - "RefName": "Polabian" - }, - { - "Id": "poy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pogolo" - }, - { - "Id": "ppe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Papi" - }, - { - "Id": "ppi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Paipai" - }, - { - "Id": "ppk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Uma" - }, - { - "Id": "ppl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pipil" - }, - { - "Id": "ppm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Papuma" - }, - { - "Id": "ppn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Papapana" - }, - { - "Id": "ppo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Folopa" - }, - { - "Id": "ppp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pelende" - }, - { - "Id": "ppq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pei" - }, - { - "Id": "pps", - "Scope": "I", - "LanguageType": "L", - "RefName": "San Lu\u00EDs Temalacayuca Popoloca" - }, - { - "Id": "ppt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pare" - }, - { - "Id": "ppu", - "Scope": "I", - "LanguageType": "E", - "RefName": "Papora" - }, - { - "Id": "pqa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pa\u0027a" - }, - { - "Id": "pqm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Malecite-Passamaquoddy" - }, - { - "Id": "prc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Parachi" - }, - { - "Id": "prd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Parsi-Dari" - }, - { - "Id": "pre", - "Scope": "I", - "LanguageType": "L", - "RefName": "Principense" - }, - { - "Id": "prf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Paranan" - }, - { - "Id": "prg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Prussian" - }, - { - "Id": "prh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Porohanon" - }, - { - "Id": "pri", - "Scope": "I", - "LanguageType": "L", - "RefName": "Paic\u00EE" - }, - { - "Id": "prk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Parauk" - }, - { - "Id": "prl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Peruvian Sign Language" - }, - { - "Id": "prm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kibiri" - }, - { - "Id": "prn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Prasuni" - }, - { - "Id": "pro", - "Part2B": "pro", - "Part2T": "pro", - "Scope": "I", - "LanguageType": "H", - "RefName": "Old Proven\u00E7al (to 1500)" - }, - { - "Id": "prq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ash\u00E9ninka Peren\u00E9" - }, - { - "Id": "prr", - "Scope": "I", - "LanguageType": "E", - "RefName": "Puri" - }, - { - "Id": "prs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dari" - }, - { - "Id": "prt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Phai" - }, - { - "Id": "pru", - "Scope": "I", - "LanguageType": "L", - "RefName": "Puragi" - }, - { - "Id": "prw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Parawen" - }, - { - "Id": "prx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Purik" - }, - { - "Id": "prz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Providencia Sign Language" - }, - { - "Id": "psa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Asue Awyu" - }, - { - "Id": "psc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Iranian Sign Language" - }, - { - "Id": "psd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Plains Indian Sign Language" - }, - { - "Id": "pse", - "Scope": "I", - "LanguageType": "L", - "RefName": "Central Malay" - }, - { - "Id": "psg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Penang Sign Language" - }, - { - "Id": "psh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southwest Pashai" - }, - { - "Id": "psi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southeast Pashai" - }, - { - "Id": "psl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Puerto Rican Sign Language" - }, - { - "Id": "psm", - "Scope": "I", - "LanguageType": "E", - "RefName": "Pauserna" - }, - { - "Id": "psn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Panasuan" - }, - { - "Id": "pso", - "Scope": "I", - "LanguageType": "L", - "RefName": "Polish Sign Language" - }, - { - "Id": "psp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Philippine Sign Language" - }, - { - "Id": "psq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pasi" - }, - { - "Id": "psr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Portuguese Sign Language" - }, - { - "Id": "pss", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kaulong" - }, - { - "Id": "pst", - "Scope": "I", - "LanguageType": "L", - "RefName": "Central Pashto" - }, - { - "Id": "psu", - "Scope": "I", - "LanguageType": "H", - "RefName": "Sauraseni Pr\u0101krit" - }, - { - "Id": "psw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Port Sandwich" - }, - { - "Id": "psy", - "Scope": "I", - "LanguageType": "E", - "RefName": "Piscataway" - }, - { - "Id": "pta", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pai Tavytera" - }, - { - "Id": "pth", - "Scope": "I", - "LanguageType": "E", - "RefName": "Patax\u00F3 H\u00E3-Ha-H\u00E3e" - }, - { - "Id": "pti", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pindiini" - }, - { - "Id": "ptn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Patani" - }, - { - "Id": "pto", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zo\u0027\u00E9" - }, - { - "Id": "ptp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Patep" - }, - { - "Id": "ptq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pattapu" - }, - { - "Id": "ptr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Piamatsina" - }, - { - "Id": "ptt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Enrekang" - }, - { - "Id": "ptu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bambam" - }, - { - "Id": "ptv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Port Vato" - }, - { - "Id": "ptw", - "Scope": "I", - "LanguageType": "E", - "RefName": "Pentlatch" - }, - { - "Id": "pty", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pathiya" - }, - { - "Id": "pua", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Highland Purepecha" - }, - { - "Id": "pub", - "Scope": "I", - "LanguageType": "L", - "RefName": "Purum" - }, - { - "Id": "puc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Punan Merap" - }, - { - "Id": "pud", - "Scope": "I", - "LanguageType": "L", - "RefName": "Punan Aput" - }, - { - "Id": "pue", - "Scope": "I", - "LanguageType": "E", - "RefName": "Puelche" - }, - { - "Id": "puf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Punan Merah" - }, - { - "Id": "pug", - "Scope": "I", - "LanguageType": "L", - "RefName": "Phuie" - }, - { - "Id": "pui", - "Scope": "I", - "LanguageType": "L", - "RefName": "Puinave" - }, - { - "Id": "puj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Punan Tubu" - }, - { - "Id": "pum", - "Scope": "I", - "LanguageType": "L", - "RefName": "Puma" - }, - { - "Id": "puo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Puoc" - }, - { - "Id": "pup", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pulabu" - }, - { - "Id": "puq", - "Scope": "I", - "LanguageType": "E", - "RefName": "Puquina" - }, - { - "Id": "pur", - "Scope": "I", - "LanguageType": "L", - "RefName": "Purubor\u00E1" - }, - { - "Id": "pus", - "Part2B": "pus", - "Part2T": "pus", - "Part1": "ps", - "Scope": "M", - "LanguageType": "L", - "RefName": "Pushto" - }, - { - "Id": "put", - "Scope": "I", - "LanguageType": "L", - "RefName": "Putoh" - }, - { - "Id": "puu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Punu" - }, - { - "Id": "puw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Puluwatese" - }, - { - "Id": "pux", - "Scope": "I", - "LanguageType": "L", - "RefName": "Puare" - }, - { - "Id": "puy", - "Scope": "I", - "LanguageType": "E", - "RefName": "Purisime\u00F1o" - }, - { - "Id": "pwa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pawaia" - }, - { - "Id": "pwb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Panawa" - }, - { - "Id": "pwg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gapapaiwa" - }, - { - "Id": "pwi", - "Scope": "I", - "LanguageType": "E", - "RefName": "Patwin" - }, - { - "Id": "pwm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Molbog" - }, - { - "Id": "pwn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Paiwan" - }, - { - "Id": "pwo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pwo Western Karen" - }, - { - "Id": "pwr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Powari" - }, - { - "Id": "pww", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pwo Northern Karen" - }, - { - "Id": "pxm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Quetzaltepec Mixe" - }, - { - "Id": "pye", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pye Krumen" - }, - { - "Id": "pym", - "Scope": "I", - "LanguageType": "L", - "RefName": "Fyam" - }, - { - "Id": "pyn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Poyan\u00E1wa" - }, - { - "Id": "pys", - "Scope": "I", - "LanguageType": "L", - "RefName": "Paraguayan Sign Language" - }, - { - "Id": "pyu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Puyuma" - }, - { - "Id": "pyx", - "Scope": "I", - "LanguageType": "H", - "RefName": "Pyu (Myanmar)" - }, - { - "Id": "pyy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pyen" - }, - { - "Id": "pze", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pesse" - }, - { - "Id": "pzh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pazeh" - }, - { - "Id": "pzn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jejara Naga" - }, - { - "Id": "qua", - "Scope": "I", - "LanguageType": "L", - "RefName": "Quapaw" - }, - { - "Id": "qub", - "Scope": "I", - "LanguageType": "L", - "RefName": "Huallaga Hu\u00E1nuco Quechua" - }, - { - "Id": "quc", - "Scope": "I", - "LanguageType": "L", - "RefName": "K\u0027iche\u0027" - }, - { - "Id": "qud", - "Scope": "I", - "LanguageType": "L", - "RefName": "Calder\u00F3n Highland Quichua" - }, - { - "Id": "que", - "Part2B": "que", - "Part2T": "que", - "Part1": "qu", - "Scope": "M", - "LanguageType": "L", - "RefName": "Quechua" - }, - { - "Id": "quf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lambayeque Quechua" - }, - { - "Id": "qug", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chimborazo Highland Quichua" - }, - { - "Id": "quh", - "Scope": "I", - "LanguageType": "L", - "RefName": "South Bolivian Quechua" - }, - { - "Id": "qui", - "Scope": "I", - "LanguageType": "L", - "RefName": "Quileute" - }, - { - "Id": "quk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chachapoyas Quechua" - }, - { - "Id": "qul", - "Scope": "I", - "LanguageType": "L", - "RefName": "North Bolivian Quechua" - }, - { - "Id": "qum", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sipacapense" - }, - { - "Id": "qun", - "Scope": "I", - "LanguageType": "E", - "RefName": "Quinault" - }, - { - "Id": "qup", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Pastaza Quechua" - }, - { - "Id": "quq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Quinqui" - }, - { - "Id": "qur", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yanahuanca Pasco Quechua" - }, - { - "Id": "qus", - "Scope": "I", - "LanguageType": "L", - "RefName": "Santiago del Estero Quichua" - }, - { - "Id": "quv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sacapulteco" - }, - { - "Id": "quw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tena Lowland Quichua" - }, - { - "Id": "qux", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yauyos Quechua" - }, - { - "Id": "quy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ayacucho Quechua" - }, - { - "Id": "quz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cusco Quechua" - }, - { - "Id": "qva", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ambo-Pasco Quechua" - }, - { - "Id": "qvc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cajamarca Quechua" - }, - { - "Id": "qve", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Apur\u00EDmac Quechua" - }, - { - "Id": "qvh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Huamal\u00EDes-Dos de Mayo Hu\u00E1nuco Quechua" - }, - { - "Id": "qvi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Imbabura Highland Quichua" - }, - { - "Id": "qvj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Loja Highland Quichua" - }, - { - "Id": "qvl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cajatambo North Lima Quechua" - }, - { - "Id": "qvm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Margos-Yarowilca-Lauricocha Quechua" - }, - { - "Id": "qvn", - "Scope": "I", - "LanguageType": "L", - "RefName": "North Jun\u00EDn Quechua" - }, - { - "Id": "qvo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Napo Lowland Quechua" - }, - { - "Id": "qvp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pacaraos Quechua" - }, - { - "Id": "qvs", - "Scope": "I", - "LanguageType": "L", - "RefName": "San Mart\u00EDn Quechua" - }, - { - "Id": "qvw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Huaylla Wanca Quechua" - }, - { - "Id": "qvy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Queyu" - }, - { - "Id": "qvz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Pastaza Quichua" - }, - { - "Id": "qwa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Corongo Ancash Quechua" - }, - { - "Id": "qwc", - "Scope": "I", - "LanguageType": "H", - "RefName": "Classical Quechua" - }, - { - "Id": "qwh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Huaylas Ancash Quechua" - }, - { - "Id": "qwm", - "Scope": "I", - "LanguageType": "E", - "RefName": "Kuman (Russia)" - }, - { - "Id": "qws", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sihuas Ancash Quechua" - }, - { - "Id": "qwt", - "Scope": "I", - "LanguageType": "E", - "RefName": "Kwalhioqua-Tlatskanai" - }, - { - "Id": "qxa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chiqui\u00E1n Ancash Quechua" - }, - { - "Id": "qxc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chincha Quechua" - }, - { - "Id": "qxh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Panao Hu\u00E1nuco Quechua" - }, - { - "Id": "qxl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Salasaca Highland Quichua" - }, - { - "Id": "qxn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Conchucos Ancash Quechua" - }, - { - "Id": "qxo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Conchucos Ancash Quechua" - }, - { - "Id": "qxp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Puno Quechua" - }, - { - "Id": "qxq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Qashqa\u0027i" - }, - { - "Id": "qxr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ca\u00F1ar Highland Quichua" - }, - { - "Id": "qxs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Qiang" - }, - { - "Id": "qxt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Santa Ana de Tusi Pasco Quechua" - }, - { - "Id": "qxu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Arequipa-La Uni\u00F3n Quechua" - }, - { - "Id": "qxw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jauja Wanca Quechua" - }, - { - "Id": "qya", - "Scope": "I", - "LanguageType": "C", - "RefName": "Quenya" - }, - { - "Id": "qyp", - "Scope": "I", - "LanguageType": "E", - "RefName": "Quiripi" - }, - { - "Id": "raa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dungmali" - }, - { - "Id": "rab", - "Scope": "I", - "LanguageType": "L", - "RefName": "Camling" - }, - { - "Id": "rac", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rasawa" - }, - { - "Id": "rad", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rade" - }, - { - "Id": "raf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Meohang" - }, - { - "Id": "rag", - "Scope": "I", - "LanguageType": "L", - "RefName": "Logooli" - }, - { - "Id": "rah", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rabha" - }, - { - "Id": "rai", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ramoaaina" - }, - { - "Id": "raj", - "Part2B": "raj", - "Part2T": "raj", - "Scope": "M", - "LanguageType": "L", - "RefName": "Rajasthani" - }, - { - "Id": "rak", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tulu-Bohuai" - }, - { - "Id": "ral", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ralte" - }, - { - "Id": "ram", - "Scope": "I", - "LanguageType": "L", - "RefName": "Canela" - }, - { - "Id": "ran", - "Scope": "I", - "LanguageType": "L", - "RefName": "Riantana" - }, - { - "Id": "rao", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rao" - }, - { - "Id": "rap", - "Part2B": "rap", - "Part2T": "rap", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rapanui" - }, - { - "Id": "raq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Saam" - }, - { - "Id": "rar", - "Part2B": "rar", - "Part2T": "rar", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rarotongan" - }, - { - "Id": "ras", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tegali" - }, - { - "Id": "rat", - "Scope": "I", - "LanguageType": "L", - "RefName": "Razajerdi" - }, - { - "Id": "rau", - "Scope": "I", - "LanguageType": "L", - "RefName": "Raute" - }, - { - "Id": "rav", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sampang" - }, - { - "Id": "raw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rawang" - }, - { - "Id": "rax", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rang" - }, - { - "Id": "ray", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rapa" - }, - { - "Id": "raz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rahambuu" - }, - { - "Id": "rbb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rumai Palaung" - }, - { - "Id": "rbk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Bontok" - }, - { - "Id": "rbl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Miraya Bikol" - }, - { - "Id": "rbp", - "Scope": "I", - "LanguageType": "E", - "RefName": "Barababaraba" - }, - { - "Id": "rcf", - "Scope": "I", - "LanguageType": "L", - "RefName": "R\u00E9union Creole French" - }, - { - "Id": "rdb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rudbari" - }, - { - "Id": "rea", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rerau" - }, - { - "Id": "reb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rembong" - }, - { - "Id": "ree", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rejang Kayan" - }, - { - "Id": "reg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kara (Tanzania)" - }, - { - "Id": "rei", - "Scope": "I", - "LanguageType": "L", - "RefName": "Reli" - }, - { - "Id": "rej", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rejang" - }, - { - "Id": "rel", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rendille" - }, - { - "Id": "rem", - "Scope": "I", - "LanguageType": "E", - "RefName": "Remo" - }, - { - "Id": "ren", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rengao" - }, - { - "Id": "rer", - "Scope": "I", - "LanguageType": "E", - "RefName": "Rer Bare" - }, - { - "Id": "res", - "Scope": "I", - "LanguageType": "L", - "RefName": "Reshe" - }, - { - "Id": "ret", - "Scope": "I", - "LanguageType": "L", - "RefName": "Retta" - }, - { - "Id": "rey", - "Scope": "I", - "LanguageType": "L", - "RefName": "Reyesano" - }, - { - "Id": "rga", - "Scope": "I", - "LanguageType": "L", - "RefName": "Roria" - }, - { - "Id": "rge", - "Scope": "I", - "LanguageType": "L", - "RefName": "Romano-Greek" - }, - { - "Id": "rgk", - "Scope": "I", - "LanguageType": "E", - "RefName": "Rangkas" - }, - { - "Id": "rgn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Romagnol" - }, - { - "Id": "rgr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Res\u00EDgaro" - }, - { - "Id": "rgs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Roglai" - }, - { - "Id": "rgu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ringgou" - }, - { - "Id": "rhg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rohingya" - }, - { - "Id": "rhp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yahang" - }, - { - "Id": "ria", - "Scope": "I", - "LanguageType": "L", - "RefName": "Riang (India)" - }, - { - "Id": "rib", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bribri Sign Language" - }, - { - "Id": "rif", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tarifit" - }, - { - "Id": "ril", - "Scope": "I", - "LanguageType": "L", - "RefName": "Riang Lang" - }, - { - "Id": "rim", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nyaturu" - }, - { - "Id": "rin", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nungu" - }, - { - "Id": "rir", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ribun" - }, - { - "Id": "rit", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ritharrngu" - }, - { - "Id": "riu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Riung" - }, - { - "Id": "rjg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rajong" - }, - { - "Id": "rji", - "Scope": "I", - "LanguageType": "L", - "RefName": "Raji" - }, - { - "Id": "rjs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rajbanshi" - }, - { - "Id": "rka", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kraol" - }, - { - "Id": "rkb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rikbaktsa" - }, - { - "Id": "rkh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rakahanga-Manihiki" - }, - { - "Id": "rki", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rakhine" - }, - { - "Id": "rkm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Marka" - }, - { - "Id": "rkt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rangpuri" - }, - { - "Id": "rkw", - "Scope": "I", - "LanguageType": "E", - "RefName": "Arakwal" - }, - { - "Id": "rma", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rama" - }, - { - "Id": "rmb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rembarrnga" - }, - { - "Id": "rmc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Carpathian Romani" - }, - { - "Id": "rmd", - "Scope": "I", - "LanguageType": "E", - "RefName": "Traveller Danish" - }, - { - "Id": "rme", - "Scope": "I", - "LanguageType": "L", - "RefName": "Angloromani" - }, - { - "Id": "rmf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kalo Finnish Romani" - }, - { - "Id": "rmg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Traveller Norwegian" - }, - { - "Id": "rmh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Murkim" - }, - { - "Id": "rmi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lomavren" - }, - { - "Id": "rmk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Romkun" - }, - { - "Id": "rml", - "Scope": "I", - "LanguageType": "L", - "RefName": "Baltic Romani" - }, - { - "Id": "rmm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Roma" - }, - { - "Id": "rmn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Balkan Romani" - }, - { - "Id": "rmo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sinte Romani" - }, - { - "Id": "rmp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rempi" - }, - { - "Id": "rmq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cal\u00F3" - }, - { - "Id": "rms", - "Scope": "I", - "LanguageType": "L", - "RefName": "Romanian Sign Language" - }, - { - "Id": "rmt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Domari" - }, - { - "Id": "rmu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tavringer Romani" - }, - { - "Id": "rmv", - "Scope": "I", - "LanguageType": "C", - "RefName": "Romanova" - }, - { - "Id": "rmw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Welsh Romani" - }, - { - "Id": "rmx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Romam" - }, - { - "Id": "rmy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Vlax Romani" - }, - { - "Id": "rmz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Marma" - }, - { - "Id": "rnb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Brunca Sign Language" - }, - { - "Id": "rnd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ruund" - }, - { - "Id": "rng", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ronga" - }, - { - "Id": "rnl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ranglong" - }, - { - "Id": "rnn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Roon" - }, - { - "Id": "rnp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rongpo" - }, - { - "Id": "rnr", - "Scope": "I", - "LanguageType": "E", - "RefName": "Nari Nari" - }, - { - "Id": "rnw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rungwa" - }, - { - "Id": "rob", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tae\u0027" - }, - { - "Id": "roc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cacgia Roglai" - }, - { - "Id": "rod", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rogo" - }, - { - "Id": "roe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ronji" - }, - { - "Id": "rof", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rombo" - }, - { - "Id": "rog", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Roglai" - }, - { - "Id": "roh", - "Part2B": "roh", - "Part2T": "roh", - "Part1": "rm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Romansh" - }, - { - "Id": "rol", - "Scope": "I", - "LanguageType": "L", - "RefName": "Romblomanon" - }, - { - "Id": "rom", - "Part2B": "rom", - "Part2T": "rom", - "Scope": "M", - "LanguageType": "L", - "RefName": "Romany" - }, - { - "Id": "ron", - "Part2B": "rum", - "Part2T": "ron", - "Part1": "ro", - "Scope": "I", - "LanguageType": "L", - "RefName": "Romanian" - }, - { - "Id": "roo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rotokas" - }, - { - "Id": "rop", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kriol" - }, - { - "Id": "ror", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rongga" - }, - { - "Id": "rou", - "Scope": "I", - "LanguageType": "L", - "RefName": "Runga" - }, - { - "Id": "row", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dela-Oenale" - }, - { - "Id": "rpn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Repanbitip" - }, - { - "Id": "rpt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rapting" - }, - { - "Id": "rri", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ririo" - }, - { - "Id": "rrm", - "Scope": "I", - "LanguageType": "E", - "RefName": "Moriori" - }, - { - "Id": "rro", - "Scope": "I", - "LanguageType": "L", - "RefName": "Waima" - }, - { - "Id": "rrt", - "Scope": "I", - "LanguageType": "E", - "RefName": "Arritinngithigh" - }, - { - "Id": "rsb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Romano-Serbian" - }, - { - "Id": "rsk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ruthenian" - }, - { - "Id": "rsl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Russian Sign Language" - }, - { - "Id": "rsm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Miriwoong Sign Language" - }, - { - "Id": "rsn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rwandan Sign Language" - }, - { - "Id": "rsw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rishiwa" - }, - { - "Id": "rtc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rungtu Chin" - }, - { - "Id": "rth", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ratahan" - }, - { - "Id": "rtm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rotuman" - }, - { - "Id": "rts", - "Scope": "I", - "LanguageType": "E", - "RefName": "Yurats" - }, - { - "Id": "rtw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rathawi" - }, - { - "Id": "rub", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gungu" - }, - { - "Id": "ruc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ruuli" - }, - { - "Id": "rue", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rusyn" - }, - { - "Id": "ruf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Luguru" - }, - { - "Id": "rug", - "Scope": "I", - "LanguageType": "L", - "RefName": "Roviana" - }, - { - "Id": "ruh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ruga" - }, - { - "Id": "rui", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rufiji" - }, - { - "Id": "ruk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Che" - }, - { - "Id": "run", - "Part2B": "run", - "Part2T": "run", - "Part1": "rn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rundi" - }, - { - "Id": "ruo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Istro Romanian" - }, - { - "Id": "rup", - "Part2B": "rup", - "Part2T": "rup", - "Scope": "I", - "LanguageType": "L", - "RefName": "Macedo-Romanian" - }, - { - "Id": "ruq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Megleno Romanian" - }, - { - "Id": "rus", - "Part2B": "rus", - "Part2T": "rus", - "Part1": "ru", - "Scope": "I", - "LanguageType": "L", - "RefName": "Russian" - }, - { - "Id": "rut", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rutul" - }, - { - "Id": "ruu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lanas Lobu" - }, - { - "Id": "ruy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mala (Nigeria)" - }, - { - "Id": "ruz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ruma" - }, - { - "Id": "rwa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rawo" - }, - { - "Id": "rwk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rwa" - }, - { - "Id": "rwl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ruwila" - }, - { - "Id": "rwm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Amba (Uganda)" - }, - { - "Id": "rwo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rawa" - }, - { - "Id": "rwr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Marwari (India)" - }, - { - "Id": "rxd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngardi" - }, - { - "Id": "rxw", - "Scope": "I", - "LanguageType": "E", - "RefName": "Karuwali" - }, - { - "Id": "ryn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Amami-Oshima" - }, - { - "Id": "rys", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yaeyama" - }, - { - "Id": "ryu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Central Okinawan" - }, - { - "Id": "rzh", - "Scope": "I", - "LanguageType": "L", - "RefName": "R\u0101zi\u1E25\u012B" - }, - { - "Id": "saa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Saba" - }, - { - "Id": "sab", - "Scope": "I", - "LanguageType": "L", - "RefName": "Buglere" - }, - { - "Id": "sac", - "Scope": "I", - "LanguageType": "L", - "RefName": "Meskwaki" - }, - { - "Id": "sad", - "Part2B": "sad", - "Part2T": "sad", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sandawe" - }, - { - "Id": "sae", - "Scope": "I", - "LanguageType": "L", - "RefName": "Saban\u00EA" - }, - { - "Id": "saf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Safaliba" - }, - { - "Id": "sag", - "Part2B": "sag", - "Part2T": "sag", - "Part1": "sg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sango" - }, - { - "Id": "sah", - "Part2B": "sah", - "Part2T": "sah", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yakut" - }, - { - "Id": "saj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sahu" - }, - { - "Id": "sak", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sake" - }, - { - "Id": "sam", - "Part2B": "sam", - "Part2T": "sam", - "Scope": "I", - "LanguageType": "E", - "RefName": "Samaritan Aramaic" - }, - { - "Id": "san", - "Part2B": "san", - "Part2T": "san", - "Part1": "sa", - "Scope": "M", - "LanguageType": "H", - "RefName": "Sanskrit" - }, - { - "Id": "sao", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sause" - }, - { - "Id": "saq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Samburu" - }, - { - "Id": "sar", - "Scope": "I", - "LanguageType": "E", - "RefName": "Saraveca" - }, - { - "Id": "sas", - "Part2B": "sas", - "Part2T": "sas", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sasak" - }, - { - "Id": "sat", - "Part2B": "sat", - "Part2T": "sat", - "Scope": "I", - "LanguageType": "L", - "RefName": "Santali" - }, - { - "Id": "sau", - "Scope": "I", - "LanguageType": "L", - "RefName": "Saleman" - }, - { - "Id": "sav", - "Scope": "I", - "LanguageType": "L", - "RefName": "Saafi-Saafi" - }, - { - "Id": "saw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sawi" - }, - { - "Id": "sax", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sa" - }, - { - "Id": "say", - "Scope": "I", - "LanguageType": "L", - "RefName": "Saya" - }, - { - "Id": "saz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Saurashtra" - }, - { - "Id": "sba", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngambay" - }, - { - "Id": "sbb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Simbo" - }, - { - "Id": "sbc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kele (Papua New Guinea)" - }, - { - "Id": "sbd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Samo" - }, - { - "Id": "sbe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Saliba" - }, - { - "Id": "sbf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chabu" - }, - { - "Id": "sbg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Seget" - }, - { - "Id": "sbh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sori-Harengan" - }, - { - "Id": "sbi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Seti" - }, - { - "Id": "sbj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Surbakhal" - }, - { - "Id": "sbk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Safwa" - }, - { - "Id": "sbl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Botolan Sambal" - }, - { - "Id": "sbm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sagala" - }, - { - "Id": "sbn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sindhi Bhil" - }, - { - "Id": "sbo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sab\u00FCm" - }, - { - "Id": "sbp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sangu (Tanzania)" - }, - { - "Id": "sbq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sileibi" - }, - { - "Id": "sbr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sembakung Murut" - }, - { - "Id": "sbs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Subiya" - }, - { - "Id": "sbt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kimki" - }, - { - "Id": "sbu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Stod Bhoti" - }, - { - "Id": "sbv", - "Scope": "I", - "LanguageType": "H", - "RefName": "Sabine" - }, - { - "Id": "sbw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Simba" - }, - { - "Id": "sbx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Seberuang" - }, - { - "Id": "sby", - "Scope": "I", - "LanguageType": "L", - "RefName": "Soli" - }, - { - "Id": "sbz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sara Kaba" - }, - { - "Id": "scb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chut" - }, - { - "Id": "sce", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dongxiang" - }, - { - "Id": "scf", - "Scope": "I", - "LanguageType": "L", - "RefName": "San Miguel Creole French" - }, - { - "Id": "scg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sanggau" - }, - { - "Id": "sch", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sakachep" - }, - { - "Id": "sci", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sri Lankan Creole Malay" - }, - { - "Id": "sck", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sadri" - }, - { - "Id": "scl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Shina" - }, - { - "Id": "scn", - "Part2B": "scn", - "Part2T": "scn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sicilian" - }, - { - "Id": "sco", - "Part2B": "sco", - "Part2T": "sco", - "Scope": "I", - "LanguageType": "L", - "RefName": "Scots" - }, - { - "Id": "scp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hyolmo" - }, - { - "Id": "scq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sa\u0027och" - }, - { - "Id": "scs", - "Scope": "I", - "LanguageType": "L", - "RefName": "North Slavey" - }, - { - "Id": "sct", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Katang" - }, - { - "Id": "scu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Shumcho" - }, - { - "Id": "scv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sheni" - }, - { - "Id": "scw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sha" - }, - { - "Id": "scx", - "Scope": "I", - "LanguageType": "H", - "RefName": "Sicel" - }, - { - "Id": "scz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Shaetlan" - }, - { - "Id": "sda", - "Scope": "I", - "LanguageType": "L", - "RefName": "Toraja-Sa\u0027dan" - }, - { - "Id": "sdb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Shabak" - }, - { - "Id": "sdc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sassarese Sardinian" - }, - { - "Id": "sde", - "Scope": "I", - "LanguageType": "L", - "RefName": "Surubu" - }, - { - "Id": "sdf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sarli" - }, - { - "Id": "sdg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Savi" - }, - { - "Id": "sdh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Kurdish" - }, - { - "Id": "sdj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Suundi" - }, - { - "Id": "sdk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sos Kundi" - }, - { - "Id": "sdl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Saudi Arabian Sign Language" - }, - { - "Id": "sdn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gallurese Sardinian" - }, - { - "Id": "sdo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bukar-Sadung Bidayuh" - }, - { - "Id": "sdp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sherdukpen" - }, - { - "Id": "sdq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Semandang" - }, - { - "Id": "sdr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Oraon Sadri" - }, - { - "Id": "sds", - "Scope": "I", - "LanguageType": "E", - "RefName": "Sened" - }, - { - "Id": "sdt", - "Scope": "I", - "LanguageType": "E", - "RefName": "Shuadit" - }, - { - "Id": "sdu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sarudu" - }, - { - "Id": "sdx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sibu Melanau" - }, - { - "Id": "sdz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sallands" - }, - { - "Id": "sea", - "Scope": "I", - "LanguageType": "L", - "RefName": "Semai" - }, - { - "Id": "seb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Shempire Senoufo" - }, - { - "Id": "sec", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sechelt" - }, - { - "Id": "sed", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sedang" - }, - { - "Id": "see", - "Scope": "I", - "LanguageType": "L", - "RefName": "Seneca" - }, - { - "Id": "sef", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cebaara Senoufo" - }, - { - "Id": "seg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Segeju" - }, - { - "Id": "seh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sena" - }, - { - "Id": "sei", - "Scope": "I", - "LanguageType": "L", - "RefName": "Seri" - }, - { - "Id": "sej", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sene" - }, - { - "Id": "sek", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sekani" - }, - { - "Id": "sel", - "Part2B": "sel", - "Part2T": "sel", - "Scope": "I", - "LanguageType": "L", - "RefName": "Selkup" - }, - { - "Id": "sen", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nanerig\u00E9 S\u00E9noufo" - }, - { - "Id": "seo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Suarmin" - }, - { - "Id": "sep", - "Scope": "I", - "LanguageType": "L", - "RefName": "S\u00ECc\u00ECt\u00E9 S\u00E9noufo" - }, - { - "Id": "seq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Senara S\u00E9noufo" - }, - { - "Id": "ser", - "Scope": "I", - "LanguageType": "L", - "RefName": "Serrano" - }, - { - "Id": "ses", - "Scope": "I", - "LanguageType": "L", - "RefName": "Koyraboro Senni Songhai" - }, - { - "Id": "set", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sentani" - }, - { - "Id": "seu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Serui-Laut" - }, - { - "Id": "sev", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nyarafolo Senoufo" - }, - { - "Id": "sew", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sewa Bay" - }, - { - "Id": "sey", - "Scope": "I", - "LanguageType": "L", - "RefName": "Secoya" - }, - { - "Id": "sez", - "Scope": "I", - "LanguageType": "L", - "RefName": "Senthang Chin" - }, - { - "Id": "sfb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Langue des signes de Belgique Francophone" - }, - { - "Id": "sfe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Subanen" - }, - { - "Id": "sfm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Small Flowery Miao" - }, - { - "Id": "sfs", - "Scope": "I", - "LanguageType": "L", - "RefName": "South African Sign Language" - }, - { - "Id": "sfw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sehwi" - }, - { - "Id": "sga", - "Part2B": "sga", - "Part2T": "sga", - "Scope": "I", - "LanguageType": "H", - "RefName": "Old Irish (to 900)" - }, - { - "Id": "sgb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mag-antsi Ayta" - }, - { - "Id": "sgc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kipsigis" - }, - { - "Id": "sgd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Surigaonon" - }, - { - "Id": "sge", - "Scope": "I", - "LanguageType": "L", - "RefName": "Segai" - }, - { - "Id": "sgg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Swiss-German Sign Language" - }, - { - "Id": "sgh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Shughni" - }, - { - "Id": "sgi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Suga" - }, - { - "Id": "sgj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Surgujia" - }, - { - "Id": "sgk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sangkong" - }, - { - "Id": "sgm", - "Scope": "I", - "LanguageType": "E", - "RefName": "Singa" - }, - { - "Id": "sgp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Singpho" - }, - { - "Id": "sgr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sangisari" - }, - { - "Id": "sgs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Samogitian" - }, - { - "Id": "sgt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Brokpake" - }, - { - "Id": "sgu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Salas" - }, - { - "Id": "sgw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sebat Bet Gurage" - }, - { - "Id": "sgx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sierra Leone Sign Language" - }, - { - "Id": "sgy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sanglechi" - }, - { - "Id": "sgz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sursurunga" - }, - { - "Id": "sha", - "Scope": "I", - "LanguageType": "L", - "RefName": "Shall-Zwall" - }, - { - "Id": "shb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ninam" - }, - { - "Id": "shc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sonde" - }, - { - "Id": "shd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kundal Shahi" - }, - { - "Id": "she", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sheko" - }, - { - "Id": "shg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Shua" - }, - { - "Id": "shh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Shoshoni" - }, - { - "Id": "shi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tachelhit" - }, - { - "Id": "shj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Shatt" - }, - { - "Id": "shk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Shilluk" - }, - { - "Id": "shl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Shendu" - }, - { - "Id": "shm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Shahrudi" - }, - { - "Id": "shn", - "Part2B": "shn", - "Part2T": "shn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Shan" - }, - { - "Id": "sho", - "Scope": "I", - "LanguageType": "L", - "RefName": "Shanga" - }, - { - "Id": "shp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Shipibo-Conibo" - }, - { - "Id": "shq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sala" - }, - { - "Id": "shr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Shi" - }, - { - "Id": "shs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Shuswap" - }, - { - "Id": "sht", - "Scope": "I", - "LanguageType": "E", - "RefName": "Shasta" - }, - { - "Id": "shu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chadian Arabic" - }, - { - "Id": "shv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Shehri" - }, - { - "Id": "shw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Shwai" - }, - { - "Id": "shx", - "Scope": "I", - "LanguageType": "L", - "RefName": "She" - }, - { - "Id": "shy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tachawit" - }, - { - "Id": "shz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Syenara Senoufo" - }, - { - "Id": "sia", - "Scope": "I", - "LanguageType": "E", - "RefName": "Akkala Sami" - }, - { - "Id": "sib", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sebop" - }, - { - "Id": "sid", - "Part2B": "sid", - "Part2T": "sid", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sidamo" - }, - { - "Id": "sie", - "Scope": "I", - "LanguageType": "L", - "RefName": "Simaa" - }, - { - "Id": "sif", - "Scope": "I", - "LanguageType": "L", - "RefName": "Siamou" - }, - { - "Id": "sig", - "Scope": "I", - "LanguageType": "L", - "RefName": "Paasaal" - }, - { - "Id": "sih", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zire" - }, - { - "Id": "sii", - "Scope": "I", - "LanguageType": "L", - "RefName": "Shom Peng" - }, - { - "Id": "sij", - "Scope": "I", - "LanguageType": "L", - "RefName": "Numbami" - }, - { - "Id": "sik", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sikiana" - }, - { - "Id": "sil", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tumulung Sisaala" - }, - { - "Id": "sim", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mende (Papua New Guinea)" - }, - { - "Id": "sin", - "Part2B": "sin", - "Part2T": "sin", - "Part1": "si", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sinhala" - }, - { - "Id": "sip", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sikkimese" - }, - { - "Id": "siq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sonia" - }, - { - "Id": "sir", - "Scope": "I", - "LanguageType": "L", - "RefName": "Siri" - }, - { - "Id": "sis", - "Scope": "I", - "LanguageType": "E", - "RefName": "Siuslaw" - }, - { - "Id": "siu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sinagen" - }, - { - "Id": "siv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sumariup" - }, - { - "Id": "siw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Siwai" - }, - { - "Id": "six", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sumau" - }, - { - "Id": "siy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sivandi" - }, - { - "Id": "siz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Siwi" - }, - { - "Id": "sja", - "Scope": "I", - "LanguageType": "L", - "RefName": "Epena" - }, - { - "Id": "sjb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sajau Basap" - }, - { - "Id": "sjc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Shaojiang Chinese" - }, - { - "Id": "sjd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kildin Sami" - }, - { - "Id": "sje", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pite Sami" - }, - { - "Id": "sjg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Assangori" - }, - { - "Id": "sjk", - "Scope": "I", - "LanguageType": "E", - "RefName": "Kemi Sami" - }, - { - "Id": "sjl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sajalong" - }, - { - "Id": "sjm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mapun" - }, - { - "Id": "sjn", - "Scope": "I", - "LanguageType": "C", - "RefName": "Sindarin" - }, - { - "Id": "sjo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Xibe" - }, - { - "Id": "sjp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Surjapuri" - }, - { - "Id": "sjr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Siar-Lak" - }, - { - "Id": "sjs", - "Scope": "I", - "LanguageType": "E", - "RefName": "Senhaja De Srair" - }, - { - "Id": "sjt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ter Sami" - }, - { - "Id": "sju", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ume Sami" - }, - { - "Id": "sjw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Shawnee" - }, - { - "Id": "ska", - "Scope": "I", - "LanguageType": "L", - "RefName": "Skagit" - }, - { - "Id": "skb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Saek" - }, - { - "Id": "skc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ma Manda" - }, - { - "Id": "skd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Sierra Miwok" - }, - { - "Id": "ske", - "Scope": "I", - "LanguageType": "L", - "RefName": "Seke (Vanuatu)" - }, - { - "Id": "skf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sakirabi\u00E1" - }, - { - "Id": "skg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sakalava Malagasy" - }, - { - "Id": "skh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sikule" - }, - { - "Id": "ski", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sika" - }, - { - "Id": "skj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Seke (Nepal)" - }, - { - "Id": "skm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kutong" - }, - { - "Id": "skn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kolibugan Subanon" - }, - { - "Id": "sko", - "Scope": "I", - "LanguageType": "L", - "RefName": "Seko Tengah" - }, - { - "Id": "skp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sekapan" - }, - { - "Id": "skq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sininkere" - }, - { - "Id": "skr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Saraiki" - }, - { - "Id": "sks", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maia" - }, - { - "Id": "skt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sakata" - }, - { - "Id": "sku", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sakao" - }, - { - "Id": "skv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Skou" - }, - { - "Id": "skw", - "Scope": "I", - "LanguageType": "E", - "RefName": "Skepi Creole Dutch" - }, - { - "Id": "skx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Seko Padang" - }, - { - "Id": "sky", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sikaiana" - }, - { - "Id": "skz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sekar" - }, - { - "Id": "slc", - "Scope": "I", - "LanguageType": "L", - "RefName": "S\u00E1liba" - }, - { - "Id": "sld", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sissala" - }, - { - "Id": "sle", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sholaga" - }, - { - "Id": "slf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Swiss-Italian Sign Language" - }, - { - "Id": "slg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Selungai Murut" - }, - { - "Id": "slh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Puget Sound Salish" - }, - { - "Id": "sli", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lower Silesian" - }, - { - "Id": "slj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Salum\u00E1" - }, - { - "Id": "slk", - "Part2B": "slo", - "Part2T": "slk", - "Part1": "sk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Slovak" - }, - { - "Id": "sll", - "Scope": "I", - "LanguageType": "L", - "RefName": "Salt-Yui" - }, - { - "Id": "slm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pangutaran Sama" - }, - { - "Id": "sln", - "Scope": "I", - "LanguageType": "E", - "RefName": "Salinan" - }, - { - "Id": "slp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lamaholot" - }, - { - "Id": "slr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Salar" - }, - { - "Id": "sls", - "Scope": "I", - "LanguageType": "L", - "RefName": "Singapore Sign Language" - }, - { - "Id": "slt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sila" - }, - { - "Id": "slu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Selaru" - }, - { - "Id": "slv", - "Part2B": "slv", - "Part2T": "slv", - "Part1": "sl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Slovenian" - }, - { - "Id": "slw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sialum" - }, - { - "Id": "slx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Salampasu" - }, - { - "Id": "sly", - "Scope": "I", - "LanguageType": "L", - "RefName": "Selayar" - }, - { - "Id": "slz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ma\u0027ya" - }, - { - "Id": "sma", - "Part2B": "sma", - "Part2T": "sma", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Sami" - }, - { - "Id": "smb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Simbari" - }, - { - "Id": "smc", - "Scope": "I", - "LanguageType": "E", - "RefName": "Som" - }, - { - "Id": "sme", - "Part2B": "sme", - "Part2T": "sme", - "Part1": "se", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Sami" - }, - { - "Id": "smf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Auwe" - }, - { - "Id": "smg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Simbali" - }, - { - "Id": "smh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Samei" - }, - { - "Id": "smj", - "Part2B": "smj", - "Part2T": "smj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lule Sami" - }, - { - "Id": "smk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bolinao" - }, - { - "Id": "sml", - "Scope": "I", - "LanguageType": "L", - "RefName": "Central Sama" - }, - { - "Id": "smm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Musasa" - }, - { - "Id": "smn", - "Part2B": "smn", - "Part2T": "smn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Inari Sami" - }, - { - "Id": "smo", - "Part2B": "smo", - "Part2T": "smo", - "Part1": "sm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Samoan" - }, - { - "Id": "smp", - "Scope": "I", - "LanguageType": "E", - "RefName": "Samaritan" - }, - { - "Id": "smq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Samo" - }, - { - "Id": "smr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Simeulue" - }, - { - "Id": "sms", - "Part2B": "sms", - "Part2T": "sms", - "Scope": "I", - "LanguageType": "L", - "RefName": "Skolt Sami" - }, - { - "Id": "smt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Simte" - }, - { - "Id": "smu", - "Scope": "I", - "LanguageType": "E", - "RefName": "Somray" - }, - { - "Id": "smv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Samvedi" - }, - { - "Id": "smw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sumbawa" - }, - { - "Id": "smx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Samba" - }, - { - "Id": "smy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Semnani" - }, - { - "Id": "smz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Simeku" - }, - { - "Id": "sna", - "Part2B": "sna", - "Part2T": "sna", - "Part1": "sn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Shona" - }, - { - "Id": "snc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sinaugoro" - }, - { - "Id": "snd", - "Part2B": "snd", - "Part2T": "snd", - "Part1": "sd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sindhi" - }, - { - "Id": "sne", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bau Bidayuh" - }, - { - "Id": "snf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Noon" - }, - { - "Id": "sng", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sanga (Democratic Republic of Congo)" - }, - { - "Id": "sni", - "Scope": "I", - "LanguageType": "E", - "RefName": "Sensi" - }, - { - "Id": "snj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Riverain Sango" - }, - { - "Id": "snk", - "Part2B": "snk", - "Part2T": "snk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Soninke" - }, - { - "Id": "snl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sangil" - }, - { - "Id": "snm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Ma\u0027di" - }, - { - "Id": "snn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Siona" - }, - { - "Id": "sno", - "Scope": "I", - "LanguageType": "L", - "RefName": "Snohomish" - }, - { - "Id": "snp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Siane" - }, - { - "Id": "snq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sangu (Gabon)" - }, - { - "Id": "snr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sihan" - }, - { - "Id": "sns", - "Scope": "I", - "LanguageType": "L", - "RefName": "South West Bay" - }, - { - "Id": "snu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Senggi" - }, - { - "Id": "snv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sa\u0027ban" - }, - { - "Id": "snw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Selee" - }, - { - "Id": "snx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sam" - }, - { - "Id": "sny", - "Scope": "I", - "LanguageType": "L", - "RefName": "Saniyo-Hiyewe" - }, - { - "Id": "snz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kou" - }, - { - "Id": "soa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Thai Song" - }, - { - "Id": "sob", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sobei" - }, - { - "Id": "soc", - "Scope": "I", - "LanguageType": "L", - "RefName": "So (Democratic Republic of Congo)" - }, - { - "Id": "sod", - "Scope": "I", - "LanguageType": "L", - "RefName": "Songoora" - }, - { - "Id": "soe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Songomeno" - }, - { - "Id": "sog", - "Part2B": "sog", - "Part2T": "sog", - "Scope": "I", - "LanguageType": "H", - "RefName": "Sogdian" - }, - { - "Id": "soh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aka" - }, - { - "Id": "soi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sonha" - }, - { - "Id": "soj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Soi" - }, - { - "Id": "sok", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sokoro" - }, - { - "Id": "sol", - "Scope": "I", - "LanguageType": "L", - "RefName": "Solos" - }, - { - "Id": "som", - "Part2B": "som", - "Part2T": "som", - "Part1": "so", - "Scope": "I", - "LanguageType": "L", - "RefName": "Somali" - }, - { - "Id": "soo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Songo" - }, - { - "Id": "sop", - "Scope": "I", - "LanguageType": "L", - "RefName": "Songe" - }, - { - "Id": "soq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kanasi" - }, - { - "Id": "sor", - "Scope": "I", - "LanguageType": "L", - "RefName": "Somrai" - }, - { - "Id": "sos", - "Scope": "I", - "LanguageType": "L", - "RefName": "Seeku" - }, - { - "Id": "sot", - "Part2B": "sot", - "Part2T": "sot", - "Part1": "st", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Sotho" - }, - { - "Id": "sou", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Thai" - }, - { - "Id": "sov", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sonsorol" - }, - { - "Id": "sow", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sowanda" - }, - { - "Id": "sox", - "Scope": "I", - "LanguageType": "L", - "RefName": "Swo" - }, - { - "Id": "soy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Miyobe" - }, - { - "Id": "soz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Temi" - }, - { - "Id": "spa", - "Part2B": "spa", - "Part2T": "spa", - "Part1": "es", - "Scope": "I", - "LanguageType": "L", - "RefName": "Spanish" - }, - { - "Id": "spb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sepa (Indonesia)" - }, - { - "Id": "spc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sap\u00E9" - }, - { - "Id": "spd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Saep" - }, - { - "Id": "spe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sepa (Papua New Guinea)" - }, - { - "Id": "spg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sian" - }, - { - "Id": "spi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Saponi" - }, - { - "Id": "spk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sengo" - }, - { - "Id": "spl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Selepet" - }, - { - "Id": "spm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Akukem" - }, - { - "Id": "spn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sanapan\u00E1" - }, - { - "Id": "spo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Spokane" - }, - { - "Id": "spp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Supyire Senoufo" - }, - { - "Id": "spq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Loreto-Ucayali Spanish" - }, - { - "Id": "spr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Saparua" - }, - { - "Id": "sps", - "Scope": "I", - "LanguageType": "L", - "RefName": "Saposa" - }, - { - "Id": "spt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Spiti Bhoti" - }, - { - "Id": "spu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sapuan" - }, - { - "Id": "spv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sambalpuri" - }, - { - "Id": "spx", - "Scope": "I", - "LanguageType": "H", - "RefName": "South Picene" - }, - { - "Id": "spy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sabaot" - }, - { - "Id": "sqa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Shama-Sambuga" - }, - { - "Id": "sqh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Shau" - }, - { - "Id": "sqi", - "Part2B": "alb", - "Part2T": "sqi", - "Part1": "sq", - "Scope": "M", - "LanguageType": "L", - "RefName": "Albanian" - }, - { - "Id": "sqk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Albanian Sign Language" - }, - { - "Id": "sqm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Suma" - }, - { - "Id": "sqn", - "Scope": "I", - "LanguageType": "E", - "RefName": "Susquehannock" - }, - { - "Id": "sqo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sorkhei" - }, - { - "Id": "sqq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sou" - }, - { - "Id": "sqr", - "Scope": "I", - "LanguageType": "H", - "RefName": "Siculo Arabic" - }, - { - "Id": "sqs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sri Lankan Sign Language" - }, - { - "Id": "sqt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Soqotri" - }, - { - "Id": "squ", - "Scope": "I", - "LanguageType": "L", - "RefName": "Squamish" - }, - { - "Id": "sqx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kufr Qassem Sign Language (KQSL)" - }, - { - "Id": "sra", - "Scope": "I", - "LanguageType": "L", - "RefName": "Saruga" - }, - { - "Id": "srb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sora" - }, - { - "Id": "src", - "Scope": "I", - "LanguageType": "L", - "RefName": "Logudorese Sardinian" - }, - { - "Id": "srd", - "Part2B": "srd", - "Part2T": "srd", - "Part1": "sc", - "Scope": "M", - "LanguageType": "L", - "RefName": "Sardinian" - }, - { - "Id": "sre", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sara" - }, - { - "Id": "srf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nafi" - }, - { - "Id": "srg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sulod" - }, - { - "Id": "srh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sarikoli" - }, - { - "Id": "sri", - "Scope": "I", - "LanguageType": "L", - "RefName": "Siriano" - }, - { - "Id": "srk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Serudung Murut" - }, - { - "Id": "srl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Isirawa" - }, - { - "Id": "srm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Saramaccan" - }, - { - "Id": "srn", - "Part2B": "srn", - "Part2T": "srn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sranan Tongo" - }, - { - "Id": "sro", - "Scope": "I", - "LanguageType": "L", - "RefName": "Campidanese Sardinian" - }, - { - "Id": "srp", - "Part2B": "srp", - "Part2T": "srp", - "Part1": "sr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Serbian" - }, - { - "Id": "srq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sirion\u00F3" - }, - { - "Id": "srr", - "Part2B": "srr", - "Part2T": "srr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Serer" - }, - { - "Id": "srs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tsuut\u0027ina" - }, - { - "Id": "srt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sauri" - }, - { - "Id": "sru", - "Scope": "I", - "LanguageType": "L", - "RefName": "Suru\u00ED" - }, - { - "Id": "srv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Sorsoganon" - }, - { - "Id": "srw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Serua" - }, - { - "Id": "srx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sirmauri" - }, - { - "Id": "sry", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sera" - }, - { - "Id": "srz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Shahmirzadi" - }, - { - "Id": "ssb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Sama" - }, - { - "Id": "ssc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Suba-Simbiti" - }, - { - "Id": "ssd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Siroi" - }, - { - "Id": "sse", - "Scope": "I", - "LanguageType": "L", - "RefName": "Balangingi" - }, - { - "Id": "ssf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Thao" - }, - { - "Id": "ssg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Seimat" - }, - { - "Id": "ssh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Shihhi Arabic" - }, - { - "Id": "ssi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sansi" - }, - { - "Id": "ssj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sausi" - }, - { - "Id": "ssk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sunam" - }, - { - "Id": "ssl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Sisaala" - }, - { - "Id": "ssm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Semnam" - }, - { - "Id": "ssn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Waata" - }, - { - "Id": "sso", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sissano" - }, - { - "Id": "ssp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Spanish Sign Language" - }, - { - "Id": "ssq", - "Scope": "I", - "LanguageType": "L", - "RefName": "So\u0027a" - }, - { - "Id": "ssr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Swiss-French Sign Language" - }, - { - "Id": "sss", - "Scope": "I", - "LanguageType": "L", - "RefName": "S\u00F4" - }, - { - "Id": "sst", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sinasina" - }, - { - "Id": "ssu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Susuami" - }, - { - "Id": "ssv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Shark Bay" - }, - { - "Id": "ssw", - "Part2B": "ssw", - "Part2T": "ssw", - "Part1": "ss", - "Scope": "I", - "LanguageType": "L", - "RefName": "Swati" - }, - { - "Id": "ssx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Samberigi" - }, - { - "Id": "ssy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Saho" - }, - { - "Id": "ssz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sengseng" - }, - { - "Id": "sta", - "Scope": "I", - "LanguageType": "L", - "RefName": "Settla" - }, - { - "Id": "stb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Subanen" - }, - { - "Id": "std", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sentinel" - }, - { - "Id": "ste", - "Scope": "I", - "LanguageType": "L", - "RefName": "Liana-Seti" - }, - { - "Id": "stf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Seta" - }, - { - "Id": "stg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Trieng" - }, - { - "Id": "sth", - "Scope": "I", - "LanguageType": "L", - "RefName": "Shelta" - }, - { - "Id": "sti", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bulo Stieng" - }, - { - "Id": "stj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Matya Samo" - }, - { - "Id": "stk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Arammba" - }, - { - "Id": "stl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Stellingwerfs" - }, - { - "Id": "stm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Setaman" - }, - { - "Id": "stn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Owa" - }, - { - "Id": "sto", - "Scope": "I", - "LanguageType": "L", - "RefName": "Stoney" - }, - { - "Id": "stp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southeastern Tepehuan" - }, - { - "Id": "stq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Saterfriesisch" - }, - { - "Id": "str", - "Scope": "I", - "LanguageType": "L", - "RefName": "Straits Salish" - }, - { - "Id": "sts", - "Scope": "I", - "LanguageType": "L", - "RefName": "Shumashti" - }, - { - "Id": "stt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Budeh Stieng" - }, - { - "Id": "stu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Samtao" - }, - { - "Id": "stv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Silt\u0027e" - }, - { - "Id": "stw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Satawalese" - }, - { - "Id": "sty", - "Scope": "I", - "LanguageType": "L", - "RefName": "Siberian Tatar" - }, - { - "Id": "sua", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sulka" - }, - { - "Id": "sub", - "Scope": "I", - "LanguageType": "L", - "RefName": "Suku" - }, - { - "Id": "suc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Subanon" - }, - { - "Id": "sue", - "Scope": "I", - "LanguageType": "L", - "RefName": "Suena" - }, - { - "Id": "sug", - "Scope": "I", - "LanguageType": "L", - "RefName": "Suganga" - }, - { - "Id": "sui", - "Scope": "I", - "LanguageType": "L", - "RefName": "Suki" - }, - { - "Id": "suj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Shubi" - }, - { - "Id": "suk", - "Part2B": "suk", - "Part2T": "suk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sukuma" - }, - { - "Id": "sun", - "Part2B": "sun", - "Part2T": "sun", - "Part1": "su", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sundanese" - }, - { - "Id": "suo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bouni" - }, - { - "Id": "suq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tirmaga-Chai Suri" - }, - { - "Id": "sur", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mwaghavul" - }, - { - "Id": "sus", - "Part2B": "sus", - "Part2T": "sus", - "Scope": "I", - "LanguageType": "L", - "RefName": "Susu" - }, - { - "Id": "sut", - "Scope": "I", - "LanguageType": "E", - "RefName": "Subtiaba" - }, - { - "Id": "suv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Puroik" - }, - { - "Id": "suw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sumbwa" - }, - { - "Id": "sux", - "Part2B": "sux", - "Part2T": "sux", - "Scope": "I", - "LanguageType": "H", - "RefName": "Sumerian" - }, - { - "Id": "suy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Suy\u00E1" - }, - { - "Id": "suz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sunwar" - }, - { - "Id": "sva", - "Scope": "I", - "LanguageType": "L", - "RefName": "Svan" - }, - { - "Id": "svb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ulau-Suain" - }, - { - "Id": "svc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Vincentian Creole English" - }, - { - "Id": "sve", - "Scope": "I", - "LanguageType": "L", - "RefName": "Serili" - }, - { - "Id": "svk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Slovakian Sign Language" - }, - { - "Id": "svm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Slavomolisano" - }, - { - "Id": "svs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Savosavo" - }, - { - "Id": "svx", - "Scope": "I", - "LanguageType": "H", - "RefName": "Skalvian" - }, - { - "Id": "swa", - "Part2B": "swa", - "Part2T": "swa", - "Part1": "sw", - "Scope": "M", - "LanguageType": "L", - "RefName": "Swahili (macrolanguage)" - }, - { - "Id": "swb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maore Comorian" - }, - { - "Id": "swc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Congo Swahili" - }, - { - "Id": "swe", - "Part2B": "swe", - "Part2T": "swe", - "Part1": "sv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Swedish" - }, - { - "Id": "swf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sere" - }, - { - "Id": "swg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Swabian" - }, - { - "Id": "swh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Swahili (individual language)" - }, - { - "Id": "swi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sui" - }, - { - "Id": "swj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sira" - }, - { - "Id": "swk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Malawi Sena" - }, - { - "Id": "swl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Swedish Sign Language" - }, - { - "Id": "swm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Samosa" - }, - { - "Id": "swn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sawknah" - }, - { - "Id": "swo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Shanenawa" - }, - { - "Id": "swp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Suau" - }, - { - "Id": "swq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sharwa" - }, - { - "Id": "swr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Saweru" - }, - { - "Id": "sws", - "Scope": "I", - "LanguageType": "L", - "RefName": "Seluwasan" - }, - { - "Id": "swt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sawila" - }, - { - "Id": "swu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Suwawa" - }, - { - "Id": "swv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Shekhawati" - }, - { - "Id": "sww", - "Scope": "I", - "LanguageType": "E", - "RefName": "Sowa" - }, - { - "Id": "swx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Suruah\u00E1" - }, - { - "Id": "swy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sarua" - }, - { - "Id": "sxb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Suba" - }, - { - "Id": "sxc", - "Scope": "I", - "LanguageType": "H", - "RefName": "Sicanian" - }, - { - "Id": "sxe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sighu" - }, - { - "Id": "sxg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Shuhi" - }, - { - "Id": "sxk", - "Scope": "I", - "LanguageType": "E", - "RefName": "Southern Kalapuya" - }, - { - "Id": "sxl", - "Scope": "I", - "LanguageType": "E", - "RefName": "Selian" - }, - { - "Id": "sxm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Samre" - }, - { - "Id": "sxn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sangir" - }, - { - "Id": "sxo", - "Scope": "I", - "LanguageType": "H", - "RefName": "Sorothaptic" - }, - { - "Id": "sxr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Saaroa" - }, - { - "Id": "sxs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sasaru" - }, - { - "Id": "sxu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Upper Saxon" - }, - { - "Id": "sxw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Saxwe Gbe" - }, - { - "Id": "sya", - "Scope": "I", - "LanguageType": "L", - "RefName": "Siang" - }, - { - "Id": "syb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Central Subanen" - }, - { - "Id": "syc", - "Part2B": "syc", - "Part2T": "syc", - "Scope": "I", - "LanguageType": "H", - "RefName": "Classical Syriac" - }, - { - "Id": "syi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Seki" - }, - { - "Id": "syk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sukur" - }, - { - "Id": "syl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sylheti" - }, - { - "Id": "sym", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maya Samo" - }, - { - "Id": "syn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Senaya" - }, - { - "Id": "syo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Suoy" - }, - { - "Id": "syr", - "Part2B": "syr", - "Part2T": "syr", - "Scope": "M", - "LanguageType": "L", - "RefName": "Syriac" - }, - { - "Id": "sys", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sinyar" - }, - { - "Id": "syw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kagate" - }, - { - "Id": "syx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Samay" - }, - { - "Id": "syy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Al-Sayyid Bedouin Sign Language" - }, - { - "Id": "sza", - "Scope": "I", - "LanguageType": "L", - "RefName": "Semelai" - }, - { - "Id": "szb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngalum" - }, - { - "Id": "szc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Semaq Beri" - }, - { - "Id": "sze", - "Scope": "I", - "LanguageType": "L", - "RefName": "Seze" - }, - { - "Id": "szg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sengele" - }, - { - "Id": "szl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Silesian" - }, - { - "Id": "szn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sula" - }, - { - "Id": "szp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Suabo" - }, - { - "Id": "szs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Solomon Islands Sign Language" - }, - { - "Id": "szv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Isubu" - }, - { - "Id": "szw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sawai" - }, - { - "Id": "szy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sakizaya" - }, - { - "Id": "taa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lower Tanana" - }, - { - "Id": "tab", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tabassaran" - }, - { - "Id": "tac", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lowland Tarahumara" - }, - { - "Id": "tad", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tause" - }, - { - "Id": "tae", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tariana" - }, - { - "Id": "taf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tapirap\u00E9" - }, - { - "Id": "tag", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tagoi" - }, - { - "Id": "tah", - "Part2B": "tah", - "Part2T": "tah", - "Part1": "ty", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tahitian" - }, - { - "Id": "taj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Tamang" - }, - { - "Id": "tak", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tala" - }, - { - "Id": "tal", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tal" - }, - { - "Id": "tam", - "Part2B": "tam", - "Part2T": "tam", - "Part1": "ta", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tamil" - }, - { - "Id": "tan", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tangale" - }, - { - "Id": "tao", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yami" - }, - { - "Id": "tap", - "Scope": "I", - "LanguageType": "L", - "RefName": "Taabwa" - }, - { - "Id": "taq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tamasheq" - }, - { - "Id": "tar", - "Scope": "I", - "LanguageType": "L", - "RefName": "Central Tarahumara" - }, - { - "Id": "tas", - "Scope": "I", - "LanguageType": "E", - "RefName": "Tay Boi" - }, - { - "Id": "tat", - "Part2B": "tat", - "Part2T": "tat", - "Part1": "tt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tatar" - }, - { - "Id": "tau", - "Scope": "I", - "LanguageType": "L", - "RefName": "Upper Tanana" - }, - { - "Id": "tav", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tatuyo" - }, - { - "Id": "taw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tai" - }, - { - "Id": "tax", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tamki" - }, - { - "Id": "tay", - "Scope": "I", - "LanguageType": "L", - "RefName": "Atayal" - }, - { - "Id": "taz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tocho" - }, - { - "Id": "tba", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aikan\u00E3" - }, - { - "Id": "tbc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Takia" - }, - { - "Id": "tbd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kaki Ae" - }, - { - "Id": "tbe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tanimbili" - }, - { - "Id": "tbf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mandara" - }, - { - "Id": "tbg", - "Scope": "I", - "LanguageType": "L", - "RefName": "North Tairora" - }, - { - "Id": "tbh", - "Scope": "I", - "LanguageType": "E", - "RefName": "Dharawal" - }, - { - "Id": "tbi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gaam" - }, - { - "Id": "tbj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tiang" - }, - { - "Id": "tbk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Calamian Tagbanwa" - }, - { - "Id": "tbl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tboli" - }, - { - "Id": "tbm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tagbu" - }, - { - "Id": "tbn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Barro Negro Tunebo" - }, - { - "Id": "tbo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tawala" - }, - { - "Id": "tbp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Taworta" - }, - { - "Id": "tbr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tumtum" - }, - { - "Id": "tbs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tanguat" - }, - { - "Id": "tbt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tembo (Kitembo)" - }, - { - "Id": "tbu", - "Scope": "I", - "LanguageType": "E", - "RefName": "Tubar" - }, - { - "Id": "tbv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tobo" - }, - { - "Id": "tbw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tagbanwa" - }, - { - "Id": "tbx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kapin" - }, - { - "Id": "tby", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tabaru" - }, - { - "Id": "tbz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ditammari" - }, - { - "Id": "tca", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ticuna" - }, - { - "Id": "tcb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tanacross" - }, - { - "Id": "tcc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Datooga" - }, - { - "Id": "tcd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tafi" - }, - { - "Id": "tce", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Tutchone" - }, - { - "Id": "tcf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Malinaltepec Me\u0027phaa" - }, - { - "Id": "tcg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tamagario" - }, - { - "Id": "tch", - "Scope": "I", - "LanguageType": "L", - "RefName": "Turks And Caicos Creole English" - }, - { - "Id": "tci", - "Scope": "I", - "LanguageType": "L", - "RefName": "W\u00E1ra" - }, - { - "Id": "tck", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tchitchege" - }, - { - "Id": "tcl", - "Scope": "I", - "LanguageType": "E", - "RefName": "Taman (Myanmar)" - }, - { - "Id": "tcm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tanahmerah" - }, - { - "Id": "tcn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tichurong" - }, - { - "Id": "tco", - "Scope": "I", - "LanguageType": "L", - "RefName": "Taungyo" - }, - { - "Id": "tcp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tawr Chin" - }, - { - "Id": "tcq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kaiy" - }, - { - "Id": "tcs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Torres Strait Creole" - }, - { - "Id": "tct", - "Scope": "I", - "LanguageType": "L", - "RefName": "T\u0027en" - }, - { - "Id": "tcu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southeastern Tarahumara" - }, - { - "Id": "tcw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tecpatl\u00E1n Totonac" - }, - { - "Id": "tcx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Toda" - }, - { - "Id": "tcy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tulu" - }, - { - "Id": "tcz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Thado Chin" - }, - { - "Id": "tda", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tagdal" - }, - { - "Id": "tdb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Panchpargania" - }, - { - "Id": "tdc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ember\u00E1-Tad\u00F3" - }, - { - "Id": "tdd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tai N\u00FCa" - }, - { - "Id": "tde", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tiranige Diga Dogon" - }, - { - "Id": "tdf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Talieng" - }, - { - "Id": "tdg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Tamang" - }, - { - "Id": "tdh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Thulung" - }, - { - "Id": "tdi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tomadino" - }, - { - "Id": "tdj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tajio" - }, - { - "Id": "tdk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tambas" - }, - { - "Id": "tdl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sur" - }, - { - "Id": "tdm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Taruma" - }, - { - "Id": "tdn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tondano" - }, - { - "Id": "tdo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Teme" - }, - { - "Id": "tdq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tita" - }, - { - "Id": "tdr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Todrah" - }, - { - "Id": "tds", - "Scope": "I", - "LanguageType": "L", - "RefName": "Doutai" - }, - { - "Id": "tdt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tetun Dili" - }, - { - "Id": "tdv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Toro" - }, - { - "Id": "tdx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tandroy-Mahafaly Malagasy" - }, - { - "Id": "tdy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tadyawan" - }, - { - "Id": "tea", - "Scope": "I", - "LanguageType": "L", - "RefName": "Temiar" - }, - { - "Id": "teb", - "Scope": "I", - "LanguageType": "E", - "RefName": "Tetete" - }, - { - "Id": "tec", - "Scope": "I", - "LanguageType": "L", - "RefName": "Terik" - }, - { - "Id": "ted", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tepo Krumen" - }, - { - "Id": "tee", - "Scope": "I", - "LanguageType": "L", - "RefName": "Huehuetla Tepehua" - }, - { - "Id": "tef", - "Scope": "I", - "LanguageType": "L", - "RefName": "Teressa" - }, - { - "Id": "teg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Teke-Tege" - }, - { - "Id": "teh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tehuelche" - }, - { - "Id": "tei", - "Scope": "I", - "LanguageType": "L", - "RefName": "Torricelli" - }, - { - "Id": "tek", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ibali Teke" - }, - { - "Id": "tel", - "Part2B": "tel", - "Part2T": "tel", - "Part1": "te", - "Scope": "I", - "LanguageType": "L", - "RefName": "Telugu" - }, - { - "Id": "tem", - "Part2B": "tem", - "Part2T": "tem", - "Scope": "I", - "LanguageType": "L", - "RefName": "Timne" - }, - { - "Id": "ten", - "Scope": "I", - "LanguageType": "E", - "RefName": "Tama (Colombia)" - }, - { - "Id": "teo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Teso" - }, - { - "Id": "tep", - "Scope": "I", - "LanguageType": "E", - "RefName": "Tepecano" - }, - { - "Id": "teq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Temein" - }, - { - "Id": "ter", - "Part2B": "ter", - "Part2T": "ter", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tereno" - }, - { - "Id": "tes", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tengger" - }, - { - "Id": "tet", - "Part2B": "tet", - "Part2T": "tet", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tetum" - }, - { - "Id": "teu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Soo" - }, - { - "Id": "tev", - "Scope": "I", - "LanguageType": "L", - "RefName": "Teor" - }, - { - "Id": "tew", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tewa (USA)" - }, - { - "Id": "tex", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tennet" - }, - { - "Id": "tey", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tulishi" - }, - { - "Id": "tez", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tetserret" - }, - { - "Id": "tfi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tofin Gbe" - }, - { - "Id": "tfn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tanaina" - }, - { - "Id": "tfo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tefaro" - }, - { - "Id": "tfr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Teribe" - }, - { - "Id": "tft", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ternate" - }, - { - "Id": "tga", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sagalla" - }, - { - "Id": "tgb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tobilung" - }, - { - "Id": "tgc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tigak" - }, - { - "Id": "tgd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ciwogai" - }, - { - "Id": "tge", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Gorkha Tamang" - }, - { - "Id": "tgf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chalikha" - }, - { - "Id": "tgh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tobagonian Creole English" - }, - { - "Id": "tgi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lawunuia" - }, - { - "Id": "tgj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tagin" - }, - { - "Id": "tgk", - "Part2B": "tgk", - "Part2T": "tgk", - "Part1": "tg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tajik" - }, - { - "Id": "tgl", - "Part2B": "tgl", - "Part2T": "tgl", - "Part1": "tl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tagalog" - }, - { - "Id": "tgn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tandaganon" - }, - { - "Id": "tgo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sudest" - }, - { - "Id": "tgp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tangoa" - }, - { - "Id": "tgq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tring" - }, - { - "Id": "tgr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tareng" - }, - { - "Id": "tgs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nume" - }, - { - "Id": "tgt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Central Tagbanwa" - }, - { - "Id": "tgu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tanggu" - }, - { - "Id": "tgv", - "Scope": "I", - "LanguageType": "E", - "RefName": "Tingui-Boto" - }, - { - "Id": "tgw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tagwana Senoufo" - }, - { - "Id": "tgx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tagish" - }, - { - "Id": "tgy", - "Scope": "I", - "LanguageType": "E", - "RefName": "Togoyo" - }, - { - "Id": "tgz", - "Scope": "I", - "LanguageType": "E", - "RefName": "Tagalaka" - }, - { - "Id": "tha", - "Part2B": "tha", - "Part2T": "tha", - "Part1": "th", - "Scope": "I", - "LanguageType": "L", - "RefName": "Thai" - }, - { - "Id": "thd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kuuk Thaayorre" - }, - { - "Id": "the", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chitwania Tharu" - }, - { - "Id": "thf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Thangmi" - }, - { - "Id": "thh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Tarahumara" - }, - { - "Id": "thi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tai Long" - }, - { - "Id": "thk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tharaka" - }, - { - "Id": "thl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dangaura Tharu" - }, - { - "Id": "thm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aheu" - }, - { - "Id": "thn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Thachanadan" - }, - { - "Id": "thp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Thompson" - }, - { - "Id": "thq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kochila Tharu" - }, - { - "Id": "thr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rana Tharu" - }, - { - "Id": "ths", - "Scope": "I", - "LanguageType": "L", - "RefName": "Thakali" - }, - { - "Id": "tht", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tahltan" - }, - { - "Id": "thu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Thuri" - }, - { - "Id": "thv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tahaggart Tamahaq" - }, - { - "Id": "thy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tha" - }, - { - "Id": "thz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tayart Tamajeq" - }, - { - "Id": "tia", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tidikelt Tamazight" - }, - { - "Id": "tic", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tira" - }, - { - "Id": "tif", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tifal" - }, - { - "Id": "tig", - "Part2B": "tig", - "Part2T": "tig", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tigre" - }, - { - "Id": "tih", - "Scope": "I", - "LanguageType": "L", - "RefName": "Timugon Murut" - }, - { - "Id": "tii", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tiene" - }, - { - "Id": "tij", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tilung" - }, - { - "Id": "tik", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tikar" - }, - { - "Id": "til", - "Scope": "I", - "LanguageType": "E", - "RefName": "Tillamook" - }, - { - "Id": "tim", - "Scope": "I", - "LanguageType": "L", - "RefName": "Timbe" - }, - { - "Id": "tin", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tindi" - }, - { - "Id": "tio", - "Scope": "I", - "LanguageType": "L", - "RefName": "Teop" - }, - { - "Id": "tip", - "Scope": "I", - "LanguageType": "L", - "RefName": "Trimuris" - }, - { - "Id": "tiq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ti\u00E9fo" - }, - { - "Id": "tir", - "Part2B": "tir", - "Part2T": "tir", - "Part1": "ti", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tigrinya" - }, - { - "Id": "tis", - "Scope": "I", - "LanguageType": "L", - "RefName": "Masadiit Itneg" - }, - { - "Id": "tit", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tinigua" - }, - { - "Id": "tiu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Adasen" - }, - { - "Id": "tiv", - "Part2B": "tiv", - "Part2T": "tiv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tiv" - }, - { - "Id": "tiw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tiwi" - }, - { - "Id": "tix", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Tiwa" - }, - { - "Id": "tiy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tiruray" - }, - { - "Id": "tiz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tai Hongjin" - }, - { - "Id": "tja", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tajuasohn" - }, - { - "Id": "tjg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tunjung" - }, - { - "Id": "tji", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Tujia" - }, - { - "Id": "tjj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tjungundji" - }, - { - "Id": "tjl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tai Laing" - }, - { - "Id": "tjm", - "Scope": "I", - "LanguageType": "E", - "RefName": "Timucua" - }, - { - "Id": "tjn", - "Scope": "I", - "LanguageType": "E", - "RefName": "Tonjon" - }, - { - "Id": "tjo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Temacine Tamazight" - }, - { - "Id": "tjp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tjupany" - }, - { - "Id": "tjs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Tujia" - }, - { - "Id": "tju", - "Scope": "I", - "LanguageType": "E", - "RefName": "Tjurruru" - }, - { - "Id": "tjw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Djabwurrung" - }, - { - "Id": "tka", - "Scope": "I", - "LanguageType": "E", - "RefName": "Truk\u00E1" - }, - { - "Id": "tkb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Buksa" - }, - { - "Id": "tkd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tukudede" - }, - { - "Id": "tke", - "Scope": "I", - "LanguageType": "L", - "RefName": "Takwane" - }, - { - "Id": "tkf", - "Scope": "I", - "LanguageType": "E", - "RefName": "Tukumanf\u00E9d" - }, - { - "Id": "tkg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tesaka Malagasy" - }, - { - "Id": "tkl", - "Part2B": "tkl", - "Part2T": "tkl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tokelau" - }, - { - "Id": "tkm", - "Scope": "I", - "LanguageType": "E", - "RefName": "Takelma" - }, - { - "Id": "tkn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Toku-No-Shima" - }, - { - "Id": "tkp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tikopia" - }, - { - "Id": "tkq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tee" - }, - { - "Id": "tkr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tsakhur" - }, - { - "Id": "tks", - "Scope": "I", - "LanguageType": "L", - "RefName": "Takestani" - }, - { - "Id": "tkt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kathoriya Tharu" - }, - { - "Id": "tku", - "Scope": "I", - "LanguageType": "L", - "RefName": "Upper Necaxa Totonac" - }, - { - "Id": "tkv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mur Pano" - }, - { - "Id": "tkw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Teanu" - }, - { - "Id": "tkx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tangko" - }, - { - "Id": "tkz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Takua" - }, - { - "Id": "tla", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southwestern Tepehuan" - }, - { - "Id": "tlb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tobelo" - }, - { - "Id": "tlc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yecuatla Totonac" - }, - { - "Id": "tld", - "Scope": "I", - "LanguageType": "L", - "RefName": "Talaud" - }, - { - "Id": "tlf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Telefol" - }, - { - "Id": "tlg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tofanma" - }, - { - "Id": "tlh", - "Part2B": "tlh", - "Part2T": "tlh", - "Scope": "I", - "LanguageType": "C", - "RefName": "Klingon" - }, - { - "Id": "tli", - "Part2B": "tli", - "Part2T": "tli", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tlingit" - }, - { - "Id": "tlj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Talinga-Bwisi" - }, - { - "Id": "tlk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Taloki" - }, - { - "Id": "tll", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tetela" - }, - { - "Id": "tlm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tolomako" - }, - { - "Id": "tln", - "Scope": "I", - "LanguageType": "L", - "RefName": "Talondo\u0027" - }, - { - "Id": "tlo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Talodi" - }, - { - "Id": "tlp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Filomena Mata-Coahuitl\u00E1n Totonac" - }, - { - "Id": "tlq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tai Loi" - }, - { - "Id": "tlr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Talise" - }, - { - "Id": "tls", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tambotalo" - }, - { - "Id": "tlt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sou Nama" - }, - { - "Id": "tlu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tulehu" - }, - { - "Id": "tlv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Taliabu" - }, - { - "Id": "tlx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Khehek" - }, - { - "Id": "tly", - "Scope": "I", - "LanguageType": "L", - "RefName": "Talysh" - }, - { - "Id": "tma", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tama (Chad)" - }, - { - "Id": "tmb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Katbol" - }, - { - "Id": "tmc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tumak" - }, - { - "Id": "tmd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Haruai" - }, - { - "Id": "tme", - "Scope": "I", - "LanguageType": "E", - "RefName": "Trememb\u00E9" - }, - { - "Id": "tmf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Toba-Maskoy" - }, - { - "Id": "tmg", - "Scope": "I", - "LanguageType": "E", - "RefName": "Ternate\u00F1o" - }, - { - "Id": "tmh", - "Part2B": "tmh", - "Part2T": "tmh", - "Scope": "M", - "LanguageType": "L", - "RefName": "Tamashek" - }, - { - "Id": "tmi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tutuba" - }, - { - "Id": "tmj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Samarokena" - }, - { - "Id": "tml", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tamnim Citak" - }, - { - "Id": "tmm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tai Thanh" - }, - { - "Id": "tmn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Taman (Indonesia)" - }, - { - "Id": "tmo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Temoq" - }, - { - "Id": "tmq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tumleo" - }, - { - "Id": "tmr", - "Scope": "I", - "LanguageType": "E", - "RefName": "Jewish Babylonian Aramaic (ca. 200-1200 CE)" - }, - { - "Id": "tms", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tima" - }, - { - "Id": "tmt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tasmate" - }, - { - "Id": "tmu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Iau" - }, - { - "Id": "tmv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tembo (Motembo)" - }, - { - "Id": "tmw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Temuan" - }, - { - "Id": "tmy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tami" - }, - { - "Id": "tmz", - "Scope": "I", - "LanguageType": "E", - "RefName": "Tamanaku" - }, - { - "Id": "tna", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tacana" - }, - { - "Id": "tnb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Tunebo" - }, - { - "Id": "tnc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tanimuca-Retuar\u00E3" - }, - { - "Id": "tnd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Angosturas Tunebo" - }, - { - "Id": "tng", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tobanga" - }, - { - "Id": "tnh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maiani" - }, - { - "Id": "tni", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tandia" - }, - { - "Id": "tnk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kwamera" - }, - { - "Id": "tnl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lenakel" - }, - { - "Id": "tnm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tabla" - }, - { - "Id": "tnn", - "Scope": "I", - "LanguageType": "L", - "RefName": "North Tanna" - }, - { - "Id": "tno", - "Scope": "I", - "LanguageType": "L", - "RefName": "Toromono" - }, - { - "Id": "tnp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Whitesands" - }, - { - "Id": "tnq", - "Scope": "I", - "LanguageType": "E", - "RefName": "Taino" - }, - { - "Id": "tnr", - "Scope": "I", - "LanguageType": "L", - "RefName": "M\u00E9nik" - }, - { - "Id": "tns", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tenis" - }, - { - "Id": "tnt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tontemboan" - }, - { - "Id": "tnu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tay Khang" - }, - { - "Id": "tnv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tangchangya" - }, - { - "Id": "tnw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tonsawang" - }, - { - "Id": "tnx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tanema" - }, - { - "Id": "tny", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tongwe" - }, - { - "Id": "tnz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ten\u0027edn" - }, - { - "Id": "tob", - "Scope": "I", - "LanguageType": "L", - "RefName": "Toba" - }, - { - "Id": "toc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Coyutla Totonac" - }, - { - "Id": "tod", - "Scope": "I", - "LanguageType": "L", - "RefName": "Toma" - }, - { - "Id": "tof", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gizrra" - }, - { - "Id": "tog", - "Part2B": "tog", - "Part2T": "tog", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tonga (Nyasa)" - }, - { - "Id": "toh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gitonga" - }, - { - "Id": "toi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tonga (Zambia)" - }, - { - "Id": "toj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tojolabal" - }, - { - "Id": "tok", - "Scope": "I", - "LanguageType": "C", - "RefName": "Toki Pona" - }, - { - "Id": "tol", - "Scope": "I", - "LanguageType": "E", - "RefName": "Tolowa" - }, - { - "Id": "tom", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tombulu" - }, - { - "Id": "ton", - "Part2B": "ton", - "Part2T": "ton", - "Part1": "to", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tonga (Tonga Islands)" - }, - { - "Id": "too", - "Scope": "I", - "LanguageType": "L", - "RefName": "Xicotepec De Ju\u00E1rez Totonac" - }, - { - "Id": "top", - "Scope": "I", - "LanguageType": "L", - "RefName": "Papantla Totonac" - }, - { - "Id": "toq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Toposa" - }, - { - "Id": "tor", - "Scope": "I", - "LanguageType": "L", - "RefName": "Togbo-Vara Banda" - }, - { - "Id": "tos", - "Scope": "I", - "LanguageType": "L", - "RefName": "Highland Totonac" - }, - { - "Id": "tou", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tho" - }, - { - "Id": "tov", - "Scope": "I", - "LanguageType": "L", - "RefName": "Upper Taromi" - }, - { - "Id": "tow", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jemez" - }, - { - "Id": "tox", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tobian" - }, - { - "Id": "toy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Topoiyo" - }, - { - "Id": "toz", - "Scope": "I", - "LanguageType": "L", - "RefName": "To" - }, - { - "Id": "tpa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Taupota" - }, - { - "Id": "tpc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Azoy\u00FA Me\u0027phaa" - }, - { - "Id": "tpe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tippera" - }, - { - "Id": "tpf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tarpia" - }, - { - "Id": "tpg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kula" - }, - { - "Id": "tpi", - "Part2B": "tpi", - "Part2T": "tpi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tok Pisin" - }, - { - "Id": "tpj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tapiet\u00E9" - }, - { - "Id": "tpk", - "Scope": "I", - "LanguageType": "E", - "RefName": "Tupinikin" - }, - { - "Id": "tpl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tlacoapa Me\u0027phaa" - }, - { - "Id": "tpm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tampulma" - }, - { - "Id": "tpn", - "Scope": "I", - "LanguageType": "E", - "RefName": "Tupinamb\u00E1" - }, - { - "Id": "tpo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tai Pao" - }, - { - "Id": "tpp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pisaflores Tepehua" - }, - { - "Id": "tpq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tukpa" - }, - { - "Id": "tpr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tupar\u00ED" - }, - { - "Id": "tpt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tlachichilco Tepehua" - }, - { - "Id": "tpu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tampuan" - }, - { - "Id": "tpv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tanapag" - }, - { - "Id": "tpx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Acatepec Me\u0027phaa" - }, - { - "Id": "tpy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Trumai" - }, - { - "Id": "tpz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tinputz" - }, - { - "Id": "tqb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Temb\u00E9" - }, - { - "Id": "tql", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lehali" - }, - { - "Id": "tqm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Turumsa" - }, - { - "Id": "tqn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tenino" - }, - { - "Id": "tqo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Toaripi" - }, - { - "Id": "tqp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tomoip" - }, - { - "Id": "tqq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tunni" - }, - { - "Id": "tqr", - "Scope": "I", - "LanguageType": "E", - "RefName": "Torona" - }, - { - "Id": "tqt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Totonac" - }, - { - "Id": "tqu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Touo" - }, - { - "Id": "tqw", - "Scope": "I", - "LanguageType": "E", - "RefName": "Tonkawa" - }, - { - "Id": "tra", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tirahi" - }, - { - "Id": "trb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Terebu" - }, - { - "Id": "trc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Copala Triqui" - }, - { - "Id": "trd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Turi" - }, - { - "Id": "tre", - "Scope": "I", - "LanguageType": "L", - "RefName": "East Tarangan" - }, - { - "Id": "trf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Trinidadian Creole English" - }, - { - "Id": "trg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lish\u00E1n Did\u00E1n" - }, - { - "Id": "trh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Turaka" - }, - { - "Id": "tri", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tri\u00F3" - }, - { - "Id": "trj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Toram" - }, - { - "Id": "trl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Traveller Scottish" - }, - { - "Id": "trm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tregami" - }, - { - "Id": "trn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Trinitario" - }, - { - "Id": "tro", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tarao Naga" - }, - { - "Id": "trp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kok Borok" - }, - { - "Id": "trq", - "Scope": "I", - "LanguageType": "L", - "RefName": "San Mart\u00EDn Itunyoso Triqui" - }, - { - "Id": "trr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Taushiro" - }, - { - "Id": "trs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chicahuaxtla Triqui" - }, - { - "Id": "trt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tunggare" - }, - { - "Id": "tru", - "Scope": "I", - "LanguageType": "L", - "RefName": "Turoyo" - }, - { - "Id": "trv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sediq" - }, - { - "Id": "trw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Torwali" - }, - { - "Id": "trx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tringgus-Sembaan Bidayuh" - }, - { - "Id": "try", - "Scope": "I", - "LanguageType": "E", - "RefName": "Turung" - }, - { - "Id": "trz", - "Scope": "I", - "LanguageType": "E", - "RefName": "Tor\u00E1" - }, - { - "Id": "tsa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tsaangi" - }, - { - "Id": "tsb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tsamai" - }, - { - "Id": "tsc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tswa" - }, - { - "Id": "tsd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tsakonian" - }, - { - "Id": "tse", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tunisian Sign Language" - }, - { - "Id": "tsg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tausug" - }, - { - "Id": "tsh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tsuvan" - }, - { - "Id": "tsi", - "Part2B": "tsi", - "Part2T": "tsi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tsimshian" - }, - { - "Id": "tsj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tshangla" - }, - { - "Id": "tsk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tseku" - }, - { - "Id": "tsl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ts\u0027\u00FCn-Lao" - }, - { - "Id": "tsm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Turkish Sign Language" - }, - { - "Id": "tsn", - "Part2B": "tsn", - "Part2T": "tsn", - "Part1": "tn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tswana" - }, - { - "Id": "tso", - "Part2B": "tso", - "Part2T": "tso", - "Part1": "ts", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tsonga" - }, - { - "Id": "tsp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Toussian" - }, - { - "Id": "tsq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Thai Sign Language" - }, - { - "Id": "tsr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Akei" - }, - { - "Id": "tss", - "Scope": "I", - "LanguageType": "L", - "RefName": "Taiwan Sign Language" - }, - { - "Id": "tst", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tondi Songway Kiini" - }, - { - "Id": "tsu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tsou" - }, - { - "Id": "tsv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tsogo" - }, - { - "Id": "tsw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tsishingini" - }, - { - "Id": "tsx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mubami" - }, - { - "Id": "tsy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tebul Sign Language" - }, - { - "Id": "tsz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Purepecha" - }, - { - "Id": "tta", - "Scope": "I", - "LanguageType": "E", - "RefName": "Tutelo" - }, - { - "Id": "ttb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gaa" - }, - { - "Id": "ttc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tektiteko" - }, - { - "Id": "ttd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tauade" - }, - { - "Id": "tte", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bwanabwana" - }, - { - "Id": "ttf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tuotomb" - }, - { - "Id": "ttg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tutong" - }, - { - "Id": "tth", - "Scope": "I", - "LanguageType": "L", - "RefName": "Upper Ta\u0027oih" - }, - { - "Id": "tti", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tobati" - }, - { - "Id": "ttj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tooro" - }, - { - "Id": "ttk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Totoro" - }, - { - "Id": "ttl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Totela" - }, - { - "Id": "ttm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Tutchone" - }, - { - "Id": "ttn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Towei" - }, - { - "Id": "tto", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lower Ta\u0027oih" - }, - { - "Id": "ttp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tombelala" - }, - { - "Id": "ttq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tawallammat Tamajaq" - }, - { - "Id": "ttr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tera" - }, - { - "Id": "tts", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northeastern Thai" - }, - { - "Id": "ttt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Muslim Tat" - }, - { - "Id": "ttu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Torau" - }, - { - "Id": "ttv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Titan" - }, - { - "Id": "ttw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Long Wat" - }, - { - "Id": "tty", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sikaritai" - }, - { - "Id": "ttz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tsum" - }, - { - "Id": "tua", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wiarumus" - }, - { - "Id": "tub", - "Scope": "I", - "LanguageType": "E", - "RefName": "T\u00FCbatulabal" - }, - { - "Id": "tuc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mutu" - }, - { - "Id": "tud", - "Scope": "I", - "LanguageType": "E", - "RefName": "Tux\u00E1" - }, - { - "Id": "tue", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tuyuca" - }, - { - "Id": "tuf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Central Tunebo" - }, - { - "Id": "tug", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tunia" - }, - { - "Id": "tuh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Taulil" - }, - { - "Id": "tui", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tupuri" - }, - { - "Id": "tuj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tugutil" - }, - { - "Id": "tuk", - "Part2B": "tuk", - "Part2T": "tuk", - "Part1": "tk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Turkmen" - }, - { - "Id": "tul", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tula" - }, - { - "Id": "tum", - "Part2B": "tum", - "Part2T": "tum", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tumbuka" - }, - { - "Id": "tun", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tunica" - }, - { - "Id": "tuo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tucano" - }, - { - "Id": "tuq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tedaga" - }, - { - "Id": "tur", - "Part2B": "tur", - "Part2T": "tur", - "Part1": "tr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Turkish" - }, - { - "Id": "tus", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tuscarora" - }, - { - "Id": "tuu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tututni" - }, - { - "Id": "tuv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Turkana" - }, - { - "Id": "tux", - "Scope": "I", - "LanguageType": "E", - "RefName": "Tuxin\u00E1wa" - }, - { - "Id": "tuy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tugen" - }, - { - "Id": "tuz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Turka" - }, - { - "Id": "tva", - "Scope": "I", - "LanguageType": "L", - "RefName": "Vaghua" - }, - { - "Id": "tvd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tsuvadi" - }, - { - "Id": "tve", - "Scope": "I", - "LanguageType": "L", - "RefName": "Te\u0027un" - }, - { - "Id": "tvg", - "Scope": "I", - "LanguageType": "E", - "RefName": "Tugunese" - }, - { - "Id": "tvi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tulai" - }, - { - "Id": "tvk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southeast Ambrym" - }, - { - "Id": "tvl", - "Part2B": "tvl", - "Part2T": "tvl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tuvalu" - }, - { - "Id": "tvm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tela-Masbuar" - }, - { - "Id": "tvn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tavoyan" - }, - { - "Id": "tvo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tidore" - }, - { - "Id": "tvs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Taveta" - }, - { - "Id": "tvt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tutsa Naga" - }, - { - "Id": "tvu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tunen" - }, - { - "Id": "tvw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sedoa" - }, - { - "Id": "tvx", - "Scope": "I", - "LanguageType": "E", - "RefName": "Taivoan" - }, - { - "Id": "tvy", - "Scope": "I", - "LanguageType": "E", - "RefName": "Timor Pidgin" - }, - { - "Id": "twa", - "Scope": "I", - "LanguageType": "E", - "RefName": "Twana" - }, - { - "Id": "twb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Tawbuid" - }, - { - "Id": "twc", - "Scope": "I", - "LanguageType": "E", - "RefName": "Teshenawa" - }, - { - "Id": "twd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Twents" - }, - { - "Id": "twe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tewa (Indonesia)" - }, - { - "Id": "twf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Tiwa" - }, - { - "Id": "twg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tereweng" - }, - { - "Id": "twh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tai D\u00F3n" - }, - { - "Id": "twi", - "Part2B": "twi", - "Part2T": "twi", - "Part1": "tw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Twi" - }, - { - "Id": "twl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tawara" - }, - { - "Id": "twm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tawang Monpa" - }, - { - "Id": "twn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Twendi" - }, - { - "Id": "two", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tswapong" - }, - { - "Id": "twp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ere" - }, - { - "Id": "twq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tasawaq" - }, - { - "Id": "twr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southwestern Tarahumara" - }, - { - "Id": "twt", - "Scope": "I", - "LanguageType": "E", - "RefName": "Turiw\u00E1ra" - }, - { - "Id": "twu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Termanu" - }, - { - "Id": "tww", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tuwari" - }, - { - "Id": "twx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tewe" - }, - { - "Id": "twy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tawoyan" - }, - { - "Id": "txa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tombonuo" - }, - { - "Id": "txb", - "Scope": "I", - "LanguageType": "H", - "RefName": "Tokharian B" - }, - { - "Id": "txc", - "Scope": "I", - "LanguageType": "E", - "RefName": "Tsetsaut" - }, - { - "Id": "txe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Totoli" - }, - { - "Id": "txg", - "Scope": "I", - "LanguageType": "H", - "RefName": "Tangut" - }, - { - "Id": "txh", - "Scope": "I", - "LanguageType": "H", - "RefName": "Thracian" - }, - { - "Id": "txi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ikpeng" - }, - { - "Id": "txj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tarjumo" - }, - { - "Id": "txm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tomini" - }, - { - "Id": "txn", - "Scope": "I", - "LanguageType": "L", - "RefName": "West Tarangan" - }, - { - "Id": "txo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Toto" - }, - { - "Id": "txq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tii" - }, - { - "Id": "txr", - "Scope": "I", - "LanguageType": "H", - "RefName": "Tartessian" - }, - { - "Id": "txs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tonsea" - }, - { - "Id": "txt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Citak" - }, - { - "Id": "txu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kayap\u00F3" - }, - { - "Id": "txx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tatana" - }, - { - "Id": "txy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tanosy Malagasy" - }, - { - "Id": "tya", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tauya" - }, - { - "Id": "tye", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kyanga" - }, - { - "Id": "tyh", - "Scope": "I", - "LanguageType": "L", - "RefName": "O\u0027du" - }, - { - "Id": "tyi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Teke-Tsaayi" - }, - { - "Id": "tyj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tai Do" - }, - { - "Id": "tyl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Thu Lao" - }, - { - "Id": "tyn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kombai" - }, - { - "Id": "typ", - "Scope": "I", - "LanguageType": "E", - "RefName": "Thaypan" - }, - { - "Id": "tyr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tai Daeng" - }, - { - "Id": "tys", - "Scope": "I", - "LanguageType": "L", - "RefName": "T\u00E0y Sa Pa" - }, - { - "Id": "tyt", - "Scope": "I", - "LanguageType": "L", - "RefName": "T\u00E0y Tac" - }, - { - "Id": "tyu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kua" - }, - { - "Id": "tyv", - "Part2B": "tyv", - "Part2T": "tyv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tuvinian" - }, - { - "Id": "tyx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Teke-Tyee" - }, - { - "Id": "tyy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tiyaa" - }, - { - "Id": "tyz", - "Scope": "I", - "LanguageType": "L", - "RefName": "T\u00E0y" - }, - { - "Id": "tza", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tanzanian Sign Language" - }, - { - "Id": "tzh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tzeltal" - }, - { - "Id": "tzj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tz\u0027utujil" - }, - { - "Id": "tzl", - "Scope": "I", - "LanguageType": "C", - "RefName": "Talossan" - }, - { - "Id": "tzm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Central Atlas Tamazight" - }, - { - "Id": "tzn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tugun" - }, - { - "Id": "tzo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tzotzil" - }, - { - "Id": "tzx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tabriak" - }, - { - "Id": "uam", - "Scope": "I", - "LanguageType": "E", - "RefName": "Uamu\u00E9" - }, - { - "Id": "uan", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kuan" - }, - { - "Id": "uar", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tairuma" - }, - { - "Id": "uba", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ubang" - }, - { - "Id": "ubi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ubi" - }, - { - "Id": "ubl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Buhi\u0027non Bikol" - }, - { - "Id": "ubr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ubir" - }, - { - "Id": "ubu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Umbu-Ungu" - }, - { - "Id": "uby", - "Scope": "I", - "LanguageType": "E", - "RefName": "Ubykh" - }, - { - "Id": "uda", - "Scope": "I", - "LanguageType": "L", - "RefName": "Uda" - }, - { - "Id": "ude", - "Scope": "I", - "LanguageType": "L", - "RefName": "Udihe" - }, - { - "Id": "udg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Muduga" - }, - { - "Id": "udi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Udi" - }, - { - "Id": "udj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ujir" - }, - { - "Id": "udl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wuzlam" - }, - { - "Id": "udm", - "Part2B": "udm", - "Part2T": "udm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Udmurt" - }, - { - "Id": "udu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Uduk" - }, - { - "Id": "ues", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kioko" - }, - { - "Id": "ufi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ufim" - }, - { - "Id": "uga", - "Part2B": "uga", - "Part2T": "uga", - "Scope": "I", - "LanguageType": "H", - "RefName": "Ugaritic" - }, - { - "Id": "ugb", - "Scope": "I", - "LanguageType": "E", - "RefName": "Kuku-Ugbanh" - }, - { - "Id": "uge", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ughele" - }, - { - "Id": "ugh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kubachi" - }, - { - "Id": "ugn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ugandan Sign Language" - }, - { - "Id": "ugo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ugong" - }, - { - "Id": "ugy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Uruguayan Sign Language" - }, - { - "Id": "uha", - "Scope": "I", - "LanguageType": "L", - "RefName": "Uhami" - }, - { - "Id": "uhn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Damal" - }, - { - "Id": "uig", - "Part2B": "uig", - "Part2T": "uig", - "Part1": "ug", - "Scope": "I", - "LanguageType": "L", - "RefName": "Uighur" - }, - { - "Id": "uis", - "Scope": "I", - "LanguageType": "L", - "RefName": "Uisai" - }, - { - "Id": "uiv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Iyive" - }, - { - "Id": "uji", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tanjijili" - }, - { - "Id": "uka", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kaburi" - }, - { - "Id": "ukg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ukuriguma" - }, - { - "Id": "ukh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ukhwejo" - }, - { - "Id": "uki", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kui (India)" - }, - { - "Id": "ukk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Muak Sa-aak" - }, - { - "Id": "ukl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ukrainian Sign Language" - }, - { - "Id": "ukp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ukpe-Bayobiri" - }, - { - "Id": "ukq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ukwa" - }, - { - "Id": "ukr", - "Part2B": "ukr", - "Part2T": "ukr", - "Part1": "uk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ukrainian" - }, - { - "Id": "uks", - "Scope": "I", - "LanguageType": "L", - "RefName": "Urub\u00FA-Kaapor Sign Language" - }, - { - "Id": "uku", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ukue" - }, - { - "Id": "ukv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kuku" - }, - { - "Id": "ukw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ukwuani-Aboh-Ndoni" - }, - { - "Id": "uky", - "Scope": "I", - "LanguageType": "E", - "RefName": "Kuuk-Yak" - }, - { - "Id": "ula", - "Scope": "I", - "LanguageType": "L", - "RefName": "Fungwa" - }, - { - "Id": "ulb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ulukwumi" - }, - { - "Id": "ulc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ulch" - }, - { - "Id": "ule", - "Scope": "I", - "LanguageType": "E", - "RefName": "Lule" - }, - { - "Id": "ulf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Usku" - }, - { - "Id": "uli", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ulithian" - }, - { - "Id": "ulk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Meriam Mir" - }, - { - "Id": "ull", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ullatan" - }, - { - "Id": "ulm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ulumanda\u0027" - }, - { - "Id": "uln", - "Scope": "I", - "LanguageType": "L", - "RefName": "Unserdeutsch" - }, - { - "Id": "ulu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Uma\u0027 Lung" - }, - { - "Id": "ulw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ulwa" - }, - { - "Id": "uly", - "Scope": "I", - "LanguageType": "L", - "RefName": "Buli" - }, - { - "Id": "uma", - "Scope": "I", - "LanguageType": "L", - "RefName": "Umatilla" - }, - { - "Id": "umb", - "Part2B": "umb", - "Part2T": "umb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Umbundu" - }, - { - "Id": "umc", - "Scope": "I", - "LanguageType": "H", - "RefName": "Marrucinian" - }, - { - "Id": "umd", - "Scope": "I", - "LanguageType": "E", - "RefName": "Umbindhamu" - }, - { - "Id": "umg", - "Scope": "I", - "LanguageType": "E", - "RefName": "Morrobalama" - }, - { - "Id": "umi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ukit" - }, - { - "Id": "umm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Umon" - }, - { - "Id": "umn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Makyan Naga" - }, - { - "Id": "umo", - "Scope": "I", - "LanguageType": "E", - "RefName": "Umot\u00EDna" - }, - { - "Id": "ump", - "Scope": "I", - "LanguageType": "L", - "RefName": "Umpila" - }, - { - "Id": "umr", - "Scope": "I", - "LanguageType": "E", - "RefName": "Umbugarla" - }, - { - "Id": "ums", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pendau" - }, - { - "Id": "umu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Munsee" - }, - { - "Id": "una", - "Scope": "I", - "LanguageType": "L", - "RefName": "North Watut" - }, - { - "Id": "und", - "Part2B": "und", - "Part2T": "und", - "Scope": "S", - "LanguageType": "S", - "RefName": "Undetermined" - }, - { - "Id": "une", - "Scope": "I", - "LanguageType": "L", - "RefName": "Uneme" - }, - { - "Id": "ung", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngarinyin" - }, - { - "Id": "uni", - "Scope": "I", - "LanguageType": "L", - "RefName": "Uni" - }, - { - "Id": "unk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Enawen\u00E9-Naw\u00E9" - }, - { - "Id": "unm", - "Scope": "I", - "LanguageType": "E", - "RefName": "Unami" - }, - { - "Id": "unn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kurnai" - }, - { - "Id": "unr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mundari" - }, - { - "Id": "unu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Unubahe" - }, - { - "Id": "unx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Munda" - }, - { - "Id": "unz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Unde Kaili" - }, - { - "Id": "uon", - "Scope": "I", - "LanguageType": "E", - "RefName": "Kulon" - }, - { - "Id": "upi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Umeda" - }, - { - "Id": "upv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Uripiv-Wala-Rano-Atchin" - }, - { - "Id": "ura", - "Scope": "I", - "LanguageType": "L", - "RefName": "Urarina" - }, - { - "Id": "urb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Urub\u00FA-Kaapor" - }, - { - "Id": "urc", - "Scope": "I", - "LanguageType": "E", - "RefName": "Urningangg" - }, - { - "Id": "urd", - "Part2B": "urd", - "Part2T": "urd", - "Part1": "ur", - "Scope": "I", - "LanguageType": "L", - "RefName": "Urdu" - }, - { - "Id": "ure", - "Scope": "I", - "LanguageType": "L", - "RefName": "Uru" - }, - { - "Id": "urf", - "Scope": "I", - "LanguageType": "E", - "RefName": "Uradhi" - }, - { - "Id": "urg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Urigina" - }, - { - "Id": "urh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Urhobo" - }, - { - "Id": "uri", - "Scope": "I", - "LanguageType": "L", - "RefName": "Urim" - }, - { - "Id": "urk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Urak Lawoi\u0027" - }, - { - "Id": "url", - "Scope": "I", - "LanguageType": "L", - "RefName": "Urali" - }, - { - "Id": "urm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Urapmin" - }, - { - "Id": "urn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Uruangnirin" - }, - { - "Id": "uro", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ura (Papua New Guinea)" - }, - { - "Id": "urp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Uru-Pa-In" - }, - { - "Id": "urr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lehalurup" - }, - { - "Id": "urt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Urat" - }, - { - "Id": "uru", - "Scope": "I", - "LanguageType": "E", - "RefName": "Urumi" - }, - { - "Id": "urv", - "Scope": "I", - "LanguageType": "E", - "RefName": "Uruava" - }, - { - "Id": "urw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sop" - }, - { - "Id": "urx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Urimo" - }, - { - "Id": "ury", - "Scope": "I", - "LanguageType": "L", - "RefName": "Orya" - }, - { - "Id": "urz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Uru-Eu-Wau-Wau" - }, - { - "Id": "usa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Usarufa" - }, - { - "Id": "ush", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ushojo" - }, - { - "Id": "usi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Usui" - }, - { - "Id": "usk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Usaghade" - }, - { - "Id": "usp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Uspanteco" - }, - { - "Id": "uss", - "Scope": "I", - "LanguageType": "L", - "RefName": "us-Saare" - }, - { - "Id": "usu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Uya" - }, - { - "Id": "uta", - "Scope": "I", - "LanguageType": "L", - "RefName": "Otank" - }, - { - "Id": "ute", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ute-Southern Paiute" - }, - { - "Id": "uth", - "Scope": "I", - "LanguageType": "L", - "RefName": "ut-Hun" - }, - { - "Id": "utp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Amba (Solomon Islands)" - }, - { - "Id": "utr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Etulo" - }, - { - "Id": "utu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Utu" - }, - { - "Id": "uum", - "Scope": "I", - "LanguageType": "L", - "RefName": "Urum" - }, - { - "Id": "uur", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ura (Vanuatu)" - }, - { - "Id": "uuu", - "Scope": "I", - "LanguageType": "L", - "RefName": "U" - }, - { - "Id": "uve", - "Scope": "I", - "LanguageType": "L", - "RefName": "West Uvean" - }, - { - "Id": "uvh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Uri" - }, - { - "Id": "uvl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lote" - }, - { - "Id": "uwa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kuku-Uwanh" - }, - { - "Id": "uya", - "Scope": "I", - "LanguageType": "L", - "RefName": "Doko-Uyanga" - }, - { - "Id": "uzb", - "Part2B": "uzb", - "Part2T": "uzb", - "Part1": "uz", - "Scope": "M", - "LanguageType": "L", - "RefName": "Uzbek" - }, - { - "Id": "uzn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Uzbek" - }, - { - "Id": "uzs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Uzbek" - }, - { - "Id": "vaa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Vaagri Booli" - }, - { - "Id": "vae", - "Scope": "I", - "LanguageType": "L", - "RefName": "Vale" - }, - { - "Id": "vaf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Vafsi" - }, - { - "Id": "vag", - "Scope": "I", - "LanguageType": "L", - "RefName": "Vagla" - }, - { - "Id": "vah", - "Scope": "I", - "LanguageType": "L", - "RefName": "Varhadi-Nagpuri" - }, - { - "Id": "vai", - "Part2B": "vai", - "Part2T": "vai", - "Scope": "I", - "LanguageType": "L", - "RefName": "Vai" - }, - { - "Id": "vaj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sekele" - }, - { - "Id": "val", - "Scope": "I", - "LanguageType": "L", - "RefName": "Vehes" - }, - { - "Id": "vam", - "Scope": "I", - "LanguageType": "L", - "RefName": "Vanimo" - }, - { - "Id": "van", - "Scope": "I", - "LanguageType": "L", - "RefName": "Valman" - }, - { - "Id": "vao", - "Scope": "I", - "LanguageType": "L", - "RefName": "Vao" - }, - { - "Id": "vap", - "Scope": "I", - "LanguageType": "L", - "RefName": "Vaiphei" - }, - { - "Id": "var", - "Scope": "I", - "LanguageType": "L", - "RefName": "Huarijio" - }, - { - "Id": "vas", - "Scope": "I", - "LanguageType": "L", - "RefName": "Vasavi" - }, - { - "Id": "vau", - "Scope": "I", - "LanguageType": "L", - "RefName": "Vanuma" - }, - { - "Id": "vav", - "Scope": "I", - "LanguageType": "L", - "RefName": "Varli" - }, - { - "Id": "vay", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wayu" - }, - { - "Id": "vbb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southeast Babar" - }, - { - "Id": "vbk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southwestern Bontok" - }, - { - "Id": "vec", - "Scope": "I", - "LanguageType": "L", - "RefName": "Venetian" - }, - { - "Id": "ved", - "Scope": "I", - "LanguageType": "L", - "RefName": "Veddah" - }, - { - "Id": "vel", - "Scope": "I", - "LanguageType": "L", - "RefName": "Veluws" - }, - { - "Id": "vem", - "Scope": "I", - "LanguageType": "L", - "RefName": "Vemgo-Mabas" - }, - { - "Id": "ven", - "Part2B": "ven", - "Part2T": "ven", - "Part1": "ve", - "Scope": "I", - "LanguageType": "L", - "RefName": "Venda" - }, - { - "Id": "veo", - "Scope": "I", - "LanguageType": "E", - "RefName": "Venture\u00F1o" - }, - { - "Id": "vep", - "Scope": "I", - "LanguageType": "L", - "RefName": "Veps" - }, - { - "Id": "ver", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mom Jango" - }, - { - "Id": "vgr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Vaghri" - }, - { - "Id": "vgt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Vlaamse Gebarentaal" - }, - { - "Id": "vic", - "Scope": "I", - "LanguageType": "L", - "RefName": "Virgin Islands Creole English" - }, - { - "Id": "vid", - "Scope": "I", - "LanguageType": "L", - "RefName": "Vidunda" - }, - { - "Id": "vie", - "Part2B": "vie", - "Part2T": "vie", - "Part1": "vi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Vietnamese" - }, - { - "Id": "vif", - "Scope": "I", - "LanguageType": "L", - "RefName": "Vili" - }, - { - "Id": "vig", - "Scope": "I", - "LanguageType": "L", - "RefName": "Viemo" - }, - { - "Id": "vil", - "Scope": "I", - "LanguageType": "L", - "RefName": "Vilela" - }, - { - "Id": "vin", - "Scope": "I", - "LanguageType": "L", - "RefName": "Vinza" - }, - { - "Id": "vis", - "Scope": "I", - "LanguageType": "L", - "RefName": "Vishavan" - }, - { - "Id": "vit", - "Scope": "I", - "LanguageType": "L", - "RefName": "Viti" - }, - { - "Id": "viv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Iduna" - }, - { - "Id": "vjk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bajjika" - }, - { - "Id": "vka", - "Scope": "I", - "LanguageType": "E", - "RefName": "Kariyarra" - }, - { - "Id": "vkj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kujarge" - }, - { - "Id": "vkk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kaur" - }, - { - "Id": "vkl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kulisusu" - }, - { - "Id": "vkm", - "Scope": "I", - "LanguageType": "E", - "RefName": "Kamakan" - }, - { - "Id": "vkn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Koro Nulu" - }, - { - "Id": "vko", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kodeoha" - }, - { - "Id": "vkp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Korlai Creole Portuguese" - }, - { - "Id": "vkt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tenggarong Kutai Malay" - }, - { - "Id": "vku", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kurrama" - }, - { - "Id": "vkz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Koro Zuba" - }, - { - "Id": "vlp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Valpei" - }, - { - "Id": "vls", - "Scope": "I", - "LanguageType": "L", - "RefName": "Vlaams" - }, - { - "Id": "vma", - "Scope": "I", - "LanguageType": "E", - "RefName": "Martuyhunira" - }, - { - "Id": "vmb", - "Scope": "I", - "LanguageType": "E", - "RefName": "Barbaram" - }, - { - "Id": "vmc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Juxtlahuaca Mixtec" - }, - { - "Id": "vmd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mudu Koraga" - }, - { - "Id": "vme", - "Scope": "I", - "LanguageType": "L", - "RefName": "East Masela" - }, - { - "Id": "vmf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mainfr\u00E4nkisch" - }, - { - "Id": "vmg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lungalunga" - }, - { - "Id": "vmh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maraghei" - }, - { - "Id": "vmi", - "Scope": "I", - "LanguageType": "E", - "RefName": "Miwa" - }, - { - "Id": "vmj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ixtayutla Mixtec" - }, - { - "Id": "vmk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Makhuwa-Shirima" - }, - { - "Id": "vml", - "Scope": "I", - "LanguageType": "E", - "RefName": "Malgana" - }, - { - "Id": "vmm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mitlatongo Mixtec" - }, - { - "Id": "vmp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Soyaltepec Mazatec" - }, - { - "Id": "vmq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Soyaltepec Mixtec" - }, - { - "Id": "vmr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Marenje" - }, - { - "Id": "vms", - "Scope": "I", - "LanguageType": "E", - "RefName": "Moksela" - }, - { - "Id": "vmu", - "Scope": "I", - "LanguageType": "E", - "RefName": "Muluridyi" - }, - { - "Id": "vmv", - "Scope": "I", - "LanguageType": "E", - "RefName": "Valley Maidu" - }, - { - "Id": "vmw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Makhuwa" - }, - { - "Id": "vmx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tamazola Mixtec" - }, - { - "Id": "vmy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ayautla Mazatec" - }, - { - "Id": "vmz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mazatl\u00E1n Mazatec" - }, - { - "Id": "vnk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Vano" - }, - { - "Id": "vnm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Vinmavis" - }, - { - "Id": "vnp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Vunapu" - }, - { - "Id": "vol", - "Part2B": "vol", - "Part2T": "vol", - "Part1": "vo", - "Scope": "I", - "LanguageType": "C", - "RefName": "Volap\u00FCk" - }, - { - "Id": "vor", - "Scope": "I", - "LanguageType": "L", - "RefName": "Voro" - }, - { - "Id": "vot", - "Part2B": "vot", - "Part2T": "vot", - "Scope": "I", - "LanguageType": "L", - "RefName": "Votic" - }, - { - "Id": "vra", - "Scope": "I", - "LanguageType": "L", - "RefName": "Vera\u0027a" - }, - { - "Id": "vro", - "Scope": "I", - "LanguageType": "L", - "RefName": "V\u00F5ro" - }, - { - "Id": "vrs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Varisi" - }, - { - "Id": "vrt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Burmbar" - }, - { - "Id": "vsi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Moldova Sign Language" - }, - { - "Id": "vsl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Venezuelan Sign Language" - }, - { - "Id": "vsn", - "Scope": "I", - "LanguageType": "H", - "RefName": "Vedic Sanskrit" - }, - { - "Id": "vsv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Valencian Sign Language" - }, - { - "Id": "vto", - "Scope": "I", - "LanguageType": "L", - "RefName": "Vitou" - }, - { - "Id": "vum", - "Scope": "I", - "LanguageType": "L", - "RefName": "Vumbu" - }, - { - "Id": "vun", - "Scope": "I", - "LanguageType": "L", - "RefName": "Vunjo" - }, - { - "Id": "vut", - "Scope": "I", - "LanguageType": "L", - "RefName": "Vute" - }, - { - "Id": "vwa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Awa (China)" - }, - { - "Id": "waa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Walla Walla" - }, - { - "Id": "wab", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yote" - }, - { - "Id": "wac", - "Scope": "I", - "LanguageType": "E", - "RefName": "Wasco-Wishram" - }, - { - "Id": "wad", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wamesa" - }, - { - "Id": "wae", - "Scope": "I", - "LanguageType": "L", - "RefName": "Walser" - }, - { - "Id": "waf", - "Scope": "I", - "LanguageType": "E", - "RefName": "Wakon\u00E1" - }, - { - "Id": "wag", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wa\u0027ema" - }, - { - "Id": "wah", - "Scope": "I", - "LanguageType": "L", - "RefName": "Watubela" - }, - { - "Id": "wai", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wares" - }, - { - "Id": "waj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Waffa" - }, - { - "Id": "wal", - "Part2B": "wal", - "Part2T": "wal", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wolaytta" - }, - { - "Id": "wam", - "Scope": "I", - "LanguageType": "E", - "RefName": "Wampanoag" - }, - { - "Id": "wan", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wan" - }, - { - "Id": "wao", - "Scope": "I", - "LanguageType": "E", - "RefName": "Wappo" - }, - { - "Id": "wap", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wapishana" - }, - { - "Id": "waq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wagiman" - }, - { - "Id": "war", - "Part2B": "war", - "Part2T": "war", - "Scope": "I", - "LanguageType": "L", - "RefName": "Waray (Philippines)" - }, - { - "Id": "was", - "Part2B": "was", - "Part2T": "was", - "Scope": "I", - "LanguageType": "L", - "RefName": "Washo" - }, - { - "Id": "wat", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kaninuwa" - }, - { - "Id": "wau", - "Scope": "I", - "LanguageType": "L", - "RefName": "Waur\u00E1" - }, - { - "Id": "wav", - "Scope": "I", - "LanguageType": "L", - "RefName": "Waka" - }, - { - "Id": "waw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Waiwai" - }, - { - "Id": "wax", - "Scope": "I", - "LanguageType": "L", - "RefName": "Watam" - }, - { - "Id": "way", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wayana" - }, - { - "Id": "waz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wampur" - }, - { - "Id": "wba", - "Scope": "I", - "LanguageType": "L", - "RefName": "Warao" - }, - { - "Id": "wbb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wabo" - }, - { - "Id": "wbe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Waritai" - }, - { - "Id": "wbf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wara" - }, - { - "Id": "wbh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wanda" - }, - { - "Id": "wbi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Vwanji" - }, - { - "Id": "wbj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Alagwa" - }, - { - "Id": "wbk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Waigali" - }, - { - "Id": "wbl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wakhi" - }, - { - "Id": "wbm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wa" - }, - { - "Id": "wbp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Warlpiri" - }, - { - "Id": "wbq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Waddar" - }, - { - "Id": "wbr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wagdi" - }, - { - "Id": "wbs", - "Scope": "I", - "LanguageType": "L", - "RefName": "West Bengal Sign Language" - }, - { - "Id": "wbt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Warnman" - }, - { - "Id": "wbv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wajarri" - }, - { - "Id": "wbw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Woi" - }, - { - "Id": "wca", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yanom\u00E1mi" - }, - { - "Id": "wci", - "Scope": "I", - "LanguageType": "L", - "RefName": "Waci Gbe" - }, - { - "Id": "wdd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wandji" - }, - { - "Id": "wdg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wadaginam" - }, - { - "Id": "wdj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wadjiginy" - }, - { - "Id": "wdk", - "Scope": "I", - "LanguageType": "E", - "RefName": "Wadikali" - }, - { - "Id": "wdt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wendat" - }, - { - "Id": "wdu", - "Scope": "I", - "LanguageType": "E", - "RefName": "Wadjigu" - }, - { - "Id": "wdy", - "Scope": "I", - "LanguageType": "E", - "RefName": "Wadjabangayi" - }, - { - "Id": "wea", - "Scope": "I", - "LanguageType": "E", - "RefName": "Wewaw" - }, - { - "Id": "wec", - "Scope": "I", - "LanguageType": "L", - "RefName": "W\u00E8 Western" - }, - { - "Id": "wed", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wedau" - }, - { - "Id": "weg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wergaia" - }, - { - "Id": "weh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Weh" - }, - { - "Id": "wei", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kiunum" - }, - { - "Id": "wem", - "Scope": "I", - "LanguageType": "L", - "RefName": "Weme Gbe" - }, - { - "Id": "weo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wemale" - }, - { - "Id": "wep", - "Scope": "I", - "LanguageType": "L", - "RefName": "Westphalien" - }, - { - "Id": "wer", - "Scope": "I", - "LanguageType": "L", - "RefName": "Weri" - }, - { - "Id": "wes", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cameroon Pidgin" - }, - { - "Id": "wet", - "Scope": "I", - "LanguageType": "L", - "RefName": "Perai" - }, - { - "Id": "weu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rawngtu Chin" - }, - { - "Id": "wew", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wejewa" - }, - { - "Id": "wfg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yafi" - }, - { - "Id": "wga", - "Scope": "I", - "LanguageType": "E", - "RefName": "Wagaya" - }, - { - "Id": "wgb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wagawaga" - }, - { - "Id": "wgg", - "Scope": "I", - "LanguageType": "E", - "RefName": "Wangkangurru" - }, - { - "Id": "wgi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wahgi" - }, - { - "Id": "wgo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Waigeo" - }, - { - "Id": "wgu", - "Scope": "I", - "LanguageType": "E", - "RefName": "Wirangu" - }, - { - "Id": "wgy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Warrgamay" - }, - { - "Id": "wha", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sou Upaa" - }, - { - "Id": "whg", - "Scope": "I", - "LanguageType": "L", - "RefName": "North Wahgi" - }, - { - "Id": "whk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wahau Kenyah" - }, - { - "Id": "whu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wahau Kayan" - }, - { - "Id": "wib", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Toussian" - }, - { - "Id": "wic", - "Scope": "I", - "LanguageType": "E", - "RefName": "Wichita" - }, - { - "Id": "wie", - "Scope": "I", - "LanguageType": "E", - "RefName": "Wik-Epa" - }, - { - "Id": "wif", - "Scope": "I", - "LanguageType": "E", - "RefName": "Wik-Keyangan" - }, - { - "Id": "wig", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wik Ngathan" - }, - { - "Id": "wih", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wik-Me\u0027anha" - }, - { - "Id": "wii", - "Scope": "I", - "LanguageType": "L", - "RefName": "Minidien" - }, - { - "Id": "wij", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wik-Iiyanh" - }, - { - "Id": "wik", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wikalkan" - }, - { - "Id": "wil", - "Scope": "I", - "LanguageType": "E", - "RefName": "Wilawila" - }, - { - "Id": "wim", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wik-Mungkan" - }, - { - "Id": "win", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ho-Chunk" - }, - { - "Id": "wir", - "Scope": "I", - "LanguageType": "E", - "RefName": "Wiraf\u00E9d" - }, - { - "Id": "wiu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wiru" - }, - { - "Id": "wiv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Vitu" - }, - { - "Id": "wiy", - "Scope": "I", - "LanguageType": "E", - "RefName": "Wiyot" - }, - { - "Id": "wja", - "Scope": "I", - "LanguageType": "L", - "RefName": "Waja" - }, - { - "Id": "wji", - "Scope": "I", - "LanguageType": "L", - "RefName": "Warji" - }, - { - "Id": "wka", - "Scope": "I", - "LanguageType": "E", - "RefName": "Kw\u0027adza" - }, - { - "Id": "wkb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kumbaran" - }, - { - "Id": "wkd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wakde" - }, - { - "Id": "wkl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kalanadi" - }, - { - "Id": "wkr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Keerray-Woorroong" - }, - { - "Id": "wku", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kunduvadi" - }, - { - "Id": "wkw", - "Scope": "I", - "LanguageType": "E", - "RefName": "Wakawaka" - }, - { - "Id": "wky", - "Scope": "I", - "LanguageType": "E", - "RefName": "Wangkayutyuru" - }, - { - "Id": "wla", - "Scope": "I", - "LanguageType": "L", - "RefName": "Walio" - }, - { - "Id": "wlc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mwali Comorian" - }, - { - "Id": "wle", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wolane" - }, - { - "Id": "wlg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kunbarlang" - }, - { - "Id": "wlh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Welaun" - }, - { - "Id": "wli", - "Scope": "I", - "LanguageType": "L", - "RefName": "Waioli" - }, - { - "Id": "wlk", - "Scope": "I", - "LanguageType": "E", - "RefName": "Wailaki" - }, - { - "Id": "wll", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wali (Sudan)" - }, - { - "Id": "wlm", - "Scope": "I", - "LanguageType": "H", - "RefName": "Middle Welsh" - }, - { - "Id": "wln", - "Part2B": "wln", - "Part2T": "wln", - "Part1": "wa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Walloon" - }, - { - "Id": "wlo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wolio" - }, - { - "Id": "wlr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wailapa" - }, - { - "Id": "wls", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wallisian" - }, - { - "Id": "wlu", - "Scope": "I", - "LanguageType": "E", - "RefName": "Wuliwuli" - }, - { - "Id": "wlv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wich\u00ED Lhamt\u00E9s Vejoz" - }, - { - "Id": "wlw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Walak" - }, - { - "Id": "wlx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wali (Ghana)" - }, - { - "Id": "wly", - "Scope": "I", - "LanguageType": "E", - "RefName": "Waling" - }, - { - "Id": "wma", - "Scope": "I", - "LanguageType": "E", - "RefName": "Mawa (Nigeria)" - }, - { - "Id": "wmb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wambaya" - }, - { - "Id": "wmc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wamas" - }, - { - "Id": "wmd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mamaind\u00E9" - }, - { - "Id": "wme", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wambule" - }, - { - "Id": "wmg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Minyag" - }, - { - "Id": "wmh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Waima\u0027a" - }, - { - "Id": "wmi", - "Scope": "I", - "LanguageType": "E", - "RefName": "Wamin" - }, - { - "Id": "wmm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maiwa (Indonesia)" - }, - { - "Id": "wmn", - "Scope": "I", - "LanguageType": "E", - "RefName": "Waamwang" - }, - { - "Id": "wmo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wom (Papua New Guinea)" - }, - { - "Id": "wms", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wambon" - }, - { - "Id": "wmt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Walmajarri" - }, - { - "Id": "wmw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mwani" - }, - { - "Id": "wmx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Womo" - }, - { - "Id": "wnb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mokati" - }, - { - "Id": "wnc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wantoat" - }, - { - "Id": "wnd", - "Scope": "I", - "LanguageType": "E", - "RefName": "Wandarang" - }, - { - "Id": "wne", - "Scope": "I", - "LanguageType": "L", - "RefName": "Waneci" - }, - { - "Id": "wng", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wanggom" - }, - { - "Id": "wni", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ndzwani Comorian" - }, - { - "Id": "wnk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wanukaka" - }, - { - "Id": "wnm", - "Scope": "I", - "LanguageType": "E", - "RefName": "Wanggamala" - }, - { - "Id": "wnn", - "Scope": "I", - "LanguageType": "E", - "RefName": "Wunumara" - }, - { - "Id": "wno", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wano" - }, - { - "Id": "wnp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wanap" - }, - { - "Id": "wnu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Usan" - }, - { - "Id": "wnw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wintu" - }, - { - "Id": "wny", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wanyi" - }, - { - "Id": "woa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kuwema" - }, - { - "Id": "wob", - "Scope": "I", - "LanguageType": "L", - "RefName": "W\u00E8 Northern" - }, - { - "Id": "woc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wogeo" - }, - { - "Id": "wod", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wolani" - }, - { - "Id": "woe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Woleaian" - }, - { - "Id": "wof", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gambian Wolof" - }, - { - "Id": "wog", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wogamusin" - }, - { - "Id": "woi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kamang" - }, - { - "Id": "wok", - "Scope": "I", - "LanguageType": "L", - "RefName": "Longto" - }, - { - "Id": "wol", - "Part2B": "wol", - "Part2T": "wol", - "Part1": "wo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wolof" - }, - { - "Id": "wom", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wom (Nigeria)" - }, - { - "Id": "won", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wongo" - }, - { - "Id": "woo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Manombai" - }, - { - "Id": "wor", - "Scope": "I", - "LanguageType": "L", - "RefName": "Woria" - }, - { - "Id": "wos", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hanga Hundi" - }, - { - "Id": "wow", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wawonii" - }, - { - "Id": "woy", - "Scope": "I", - "LanguageType": "E", - "RefName": "Weyto" - }, - { - "Id": "wpc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maco" - }, - { - "Id": "wrb", - "Scope": "I", - "LanguageType": "E", - "RefName": "Waluwarra" - }, - { - "Id": "wrg", - "Scope": "I", - "LanguageType": "E", - "RefName": "Warungu" - }, - { - "Id": "wrh", - "Scope": "I", - "LanguageType": "E", - "RefName": "Wiradjuri" - }, - { - "Id": "wri", - "Scope": "I", - "LanguageType": "E", - "RefName": "Wariyangga" - }, - { - "Id": "wrk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Garrwa" - }, - { - "Id": "wrl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Warlmanpa" - }, - { - "Id": "wrm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Warumungu" - }, - { - "Id": "wrn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Warnang" - }, - { - "Id": "wro", - "Scope": "I", - "LanguageType": "E", - "RefName": "Worrorra" - }, - { - "Id": "wrp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Waropen" - }, - { - "Id": "wrr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wardaman" - }, - { - "Id": "wrs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Waris" - }, - { - "Id": "wru", - "Scope": "I", - "LanguageType": "L", - "RefName": "Waru" - }, - { - "Id": "wrv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Waruna" - }, - { - "Id": "wrw", - "Scope": "I", - "LanguageType": "E", - "RefName": "Gugu Warra" - }, - { - "Id": "wrx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wae Rana" - }, - { - "Id": "wry", - "Scope": "I", - "LanguageType": "L", - "RefName": "Merwari" - }, - { - "Id": "wrz", - "Scope": "I", - "LanguageType": "E", - "RefName": "Waray (Australia)" - }, - { - "Id": "wsa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Warembori" - }, - { - "Id": "wsg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Adilabad Gondi" - }, - { - "Id": "wsi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wusi" - }, - { - "Id": "wsk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Waskia" - }, - { - "Id": "wsr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Owenia" - }, - { - "Id": "wss", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wasa" - }, - { - "Id": "wsu", - "Scope": "I", - "LanguageType": "E", - "RefName": "Wasu" - }, - { - "Id": "wsv", - "Scope": "I", - "LanguageType": "E", - "RefName": "Wotapuri-Katarqalai" - }, - { - "Id": "wtb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Matambwe" - }, - { - "Id": "wtf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Watiwa" - }, - { - "Id": "wth", - "Scope": "I", - "LanguageType": "E", - "RefName": "Wathawurrung" - }, - { - "Id": "wti", - "Scope": "I", - "LanguageType": "L", - "RefName": "Berta" - }, - { - "Id": "wtk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Watakataui" - }, - { - "Id": "wtm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mewati" - }, - { - "Id": "wtw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wotu" - }, - { - "Id": "wua", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wikngenchera" - }, - { - "Id": "wub", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wunambal" - }, - { - "Id": "wud", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wudu" - }, - { - "Id": "wuh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wutunhua" - }, - { - "Id": "wul", - "Scope": "I", - "LanguageType": "L", - "RefName": "Silimo" - }, - { - "Id": "wum", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wumbvu" - }, - { - "Id": "wun", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bungu" - }, - { - "Id": "wur", - "Scope": "I", - "LanguageType": "E", - "RefName": "Wurrugu" - }, - { - "Id": "wut", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wutung" - }, - { - "Id": "wuu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wu Chinese" - }, - { - "Id": "wuv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wuvulu-Aua" - }, - { - "Id": "wux", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wulna" - }, - { - "Id": "wuy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wauyai" - }, - { - "Id": "wwa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Waama" - }, - { - "Id": "wwb", - "Scope": "I", - "LanguageType": "E", - "RefName": "Wakabunga" - }, - { - "Id": "wwo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wetamut" - }, - { - "Id": "wwr", - "Scope": "I", - "LanguageType": "E", - "RefName": "Warrwa" - }, - { - "Id": "www", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wawa" - }, - { - "Id": "wxa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Waxianghua" - }, - { - "Id": "wxw", - "Scope": "I", - "LanguageType": "E", - "RefName": "Wardandi" - }, - { - "Id": "wyb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wangaaybuwan-Ngiyambaa" - }, - { - "Id": "wyi", - "Scope": "I", - "LanguageType": "E", - "RefName": "Woiwurrung" - }, - { - "Id": "wym", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wymysorys" - }, - { - "Id": "wyn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wyandot" - }, - { - "Id": "wyr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wayor\u00F3" - }, - { - "Id": "wyy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Fijian" - }, - { - "Id": "xaa", - "Scope": "I", - "LanguageType": "H", - "RefName": "Andalusian Arabic" - }, - { - "Id": "xab", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sambe" - }, - { - "Id": "xac", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kachari" - }, - { - "Id": "xad", - "Scope": "I", - "LanguageType": "E", - "RefName": "Adai" - }, - { - "Id": "xae", - "Scope": "I", - "LanguageType": "H", - "RefName": "Aequian" - }, - { - "Id": "xag", - "Scope": "I", - "LanguageType": "H", - "RefName": "Aghwan" - }, - { - "Id": "xai", - "Scope": "I", - "LanguageType": "E", - "RefName": "Kaimb\u00E9" - }, - { - "Id": "xaj", - "Scope": "I", - "LanguageType": "E", - "RefName": "Ararandew\u00E1ra" - }, - { - "Id": "xak", - "Scope": "I", - "LanguageType": "E", - "RefName": "M\u00E1ku" - }, - { - "Id": "xal", - "Part2B": "xal", - "Part2T": "xal", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kalmyk" - }, - { - "Id": "xam", - "Scope": "I", - "LanguageType": "E", - "RefName": "\u01C0Xam" - }, - { - "Id": "xan", - "Scope": "I", - "LanguageType": "L", - "RefName": "Xamtanga" - }, - { - "Id": "xao", - "Scope": "I", - "LanguageType": "L", - "RefName": "Khao" - }, - { - "Id": "xap", - "Scope": "I", - "LanguageType": "E", - "RefName": "Apalachee" - }, - { - "Id": "xaq", - "Scope": "I", - "LanguageType": "H", - "RefName": "Aquitanian" - }, - { - "Id": "xar", - "Scope": "I", - "LanguageType": "E", - "RefName": "Karami" - }, - { - "Id": "xas", - "Scope": "I", - "LanguageType": "E", - "RefName": "Kamas" - }, - { - "Id": "xat", - "Scope": "I", - "LanguageType": "L", - "RefName": "Katawixi" - }, - { - "Id": "xau", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kauwera" - }, - { - "Id": "xav", - "Scope": "I", - "LanguageType": "L", - "RefName": "Xav\u00E1nte" - }, - { - "Id": "xaw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kawaiisu" - }, - { - "Id": "xay", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kayan Mahakam" - }, - { - "Id": "xbb", - "Scope": "I", - "LanguageType": "E", - "RefName": "Lower Burdekin" - }, - { - "Id": "xbc", - "Scope": "I", - "LanguageType": "H", - "RefName": "Bactrian" - }, - { - "Id": "xbd", - "Scope": "I", - "LanguageType": "E", - "RefName": "Bindal" - }, - { - "Id": "xbe", - "Scope": "I", - "LanguageType": "E", - "RefName": "Bigambal" - }, - { - "Id": "xbg", - "Scope": "I", - "LanguageType": "E", - "RefName": "Bunganditj" - }, - { - "Id": "xbi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kombio" - }, - { - "Id": "xbj", - "Scope": "I", - "LanguageType": "E", - "RefName": "Birrpayi" - }, - { - "Id": "xbm", - "Scope": "I", - "LanguageType": "H", - "RefName": "Middle Breton" - }, - { - "Id": "xbn", - "Scope": "I", - "LanguageType": "E", - "RefName": "Kenaboi" - }, - { - "Id": "xbo", - "Scope": "I", - "LanguageType": "H", - "RefName": "Bolgarian" - }, - { - "Id": "xbp", - "Scope": "I", - "LanguageType": "E", - "RefName": "Bibbulman" - }, - { - "Id": "xbr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kambera" - }, - { - "Id": "xbw", - "Scope": "I", - "LanguageType": "E", - "RefName": "Kambiw\u00E1" - }, - { - "Id": "xby", - "Scope": "I", - "LanguageType": "L", - "RefName": "Batjala" - }, - { - "Id": "xcb", - "Scope": "I", - "LanguageType": "H", - "RefName": "Cumbric" - }, - { - "Id": "xcc", - "Scope": "I", - "LanguageType": "H", - "RefName": "Camunic" - }, - { - "Id": "xce", - "Scope": "I", - "LanguageType": "H", - "RefName": "Celtiberian" - }, - { - "Id": "xcg", - "Scope": "I", - "LanguageType": "H", - "RefName": "Cisalpine Gaulish" - }, - { - "Id": "xch", - "Scope": "I", - "LanguageType": "E", - "RefName": "Chemakum" - }, - { - "Id": "xcl", - "Scope": "I", - "LanguageType": "H", - "RefName": "Classical Armenian" - }, - { - "Id": "xcm", - "Scope": "I", - "LanguageType": "E", - "RefName": "Comecrudo" - }, - { - "Id": "xcn", - "Scope": "I", - "LanguageType": "E", - "RefName": "Cotoname" - }, - { - "Id": "xco", - "Scope": "I", - "LanguageType": "H", - "RefName": "Chorasmian" - }, - { - "Id": "xcr", - "Scope": "I", - "LanguageType": "H", - "RefName": "Carian" - }, - { - "Id": "xct", - "Scope": "I", - "LanguageType": "H", - "RefName": "Classical Tibetan" - }, - { - "Id": "xcu", - "Scope": "I", - "LanguageType": "H", - "RefName": "Curonian" - }, - { - "Id": "xcv", - "Scope": "I", - "LanguageType": "E", - "RefName": "Chuvantsy" - }, - { - "Id": "xcw", - "Scope": "I", - "LanguageType": "E", - "RefName": "Coahuilteco" - }, - { - "Id": "xcy", - "Scope": "I", - "LanguageType": "E", - "RefName": "Cayuse" - }, - { - "Id": "xda", - "Scope": "I", - "LanguageType": "L", - "RefName": "Darkinyung" - }, - { - "Id": "xdc", - "Scope": "I", - "LanguageType": "H", - "RefName": "Dacian" - }, - { - "Id": "xdk", - "Scope": "I", - "LanguageType": "E", - "RefName": "Dharuk" - }, - { - "Id": "xdm", - "Scope": "I", - "LanguageType": "H", - "RefName": "Edomite" - }, - { - "Id": "xdo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kwandu" - }, - { - "Id": "xdq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kaitag" - }, - { - "Id": "xdy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Malayic Dayak" - }, - { - "Id": "xeb", - "Scope": "I", - "LanguageType": "H", - "RefName": "Eblan" - }, - { - "Id": "xed", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hdi" - }, - { - "Id": "xeg", - "Scope": "I", - "LanguageType": "E", - "RefName": "\u01C1Xegwi" - }, - { - "Id": "xel", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kelo" - }, - { - "Id": "xem", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kembayan" - }, - { - "Id": "xep", - "Scope": "I", - "LanguageType": "H", - "RefName": "Epi-Olmec" - }, - { - "Id": "xer", - "Scope": "I", - "LanguageType": "L", - "RefName": "Xer\u00E9nte" - }, - { - "Id": "xes", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kesawai" - }, - { - "Id": "xet", - "Scope": "I", - "LanguageType": "L", - "RefName": "Xet\u00E1" - }, - { - "Id": "xeu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Keoru-Ahia" - }, - { - "Id": "xfa", - "Scope": "I", - "LanguageType": "H", - "RefName": "Faliscan" - }, - { - "Id": "xga", - "Scope": "I", - "LanguageType": "H", - "RefName": "Galatian" - }, - { - "Id": "xgb", - "Scope": "I", - "LanguageType": "E", - "RefName": "Gbin" - }, - { - "Id": "xgd", - "Scope": "I", - "LanguageType": "E", - "RefName": "Gudang" - }, - { - "Id": "xgf", - "Scope": "I", - "LanguageType": "E", - "RefName": "Gabrielino-Fernande\u00F1o" - }, - { - "Id": "xgg", - "Scope": "I", - "LanguageType": "E", - "RefName": "Goreng" - }, - { - "Id": "xgi", - "Scope": "I", - "LanguageType": "E", - "RefName": "Garingbal" - }, - { - "Id": "xgl", - "Scope": "I", - "LanguageType": "H", - "RefName": "Galindan" - }, - { - "Id": "xgm", - "Scope": "I", - "LanguageType": "E", - "RefName": "Dharumbal" - }, - { - "Id": "xgr", - "Scope": "I", - "LanguageType": "E", - "RefName": "Garza" - }, - { - "Id": "xgu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Unggumi" - }, - { - "Id": "xgw", - "Scope": "I", - "LanguageType": "E", - "RefName": "Guwa" - }, - { - "Id": "xha", - "Scope": "I", - "LanguageType": "H", - "RefName": "Harami" - }, - { - "Id": "xhc", - "Scope": "I", - "LanguageType": "H", - "RefName": "Hunnic" - }, - { - "Id": "xhd", - "Scope": "I", - "LanguageType": "H", - "RefName": "Hadrami" - }, - { - "Id": "xhe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Khetrani" - }, - { - "Id": "xhm", - "Scope": "I", - "LanguageType": "H", - "RefName": "Middle Khmer (1400 to 1850 CE)" - }, - { - "Id": "xho", - "Part2B": "xho", - "Part2T": "xho", - "Part1": "xh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Xhosa" - }, - { - "Id": "xhr", - "Scope": "I", - "LanguageType": "H", - "RefName": "Hernican" - }, - { - "Id": "xht", - "Scope": "I", - "LanguageType": "H", - "RefName": "Hattic" - }, - { - "Id": "xhu", - "Scope": "I", - "LanguageType": "H", - "RefName": "Hurrian" - }, - { - "Id": "xhv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Khua" - }, - { - "Id": "xib", - "Scope": "I", - "LanguageType": "H", - "RefName": "Iberian" - }, - { - "Id": "xii", - "Scope": "I", - "LanguageType": "L", - "RefName": "Xiri" - }, - { - "Id": "xil", - "Scope": "I", - "LanguageType": "H", - "RefName": "Illyrian" - }, - { - "Id": "xin", - "Scope": "I", - "LanguageType": "E", - "RefName": "Xinca" - }, - { - "Id": "xir", - "Scope": "I", - "LanguageType": "E", - "RefName": "Xiri\u00E2na" - }, - { - "Id": "xis", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kisan" - }, - { - "Id": "xiv", - "Scope": "I", - "LanguageType": "H", - "RefName": "Indus Valley Language" - }, - { - "Id": "xiy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Xipaya" - }, - { - "Id": "xjb", - "Scope": "I", - "LanguageType": "E", - "RefName": "Minjungbal" - }, - { - "Id": "xjt", - "Scope": "I", - "LanguageType": "E", - "RefName": "Jaitmatang" - }, - { - "Id": "xka", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kalkoti" - }, - { - "Id": "xkb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Nago" - }, - { - "Id": "xkc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kho\u0027ini" - }, - { - "Id": "xkd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mendalam Kayan" - }, - { - "Id": "xke", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kereho" - }, - { - "Id": "xkf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Khengkha" - }, - { - "Id": "xkg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kagoro" - }, - { - "Id": "xki", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kenyan Sign Language" - }, - { - "Id": "xkj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kajali" - }, - { - "Id": "xkk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kachok" - }, - { - "Id": "xkl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mainstream Kenyah" - }, - { - "Id": "xkn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kayan River Kayan" - }, - { - "Id": "xko", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kiorr" - }, - { - "Id": "xkp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kabatei" - }, - { - "Id": "xkq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Koroni" - }, - { - "Id": "xkr", - "Scope": "I", - "LanguageType": "E", - "RefName": "Xakriab\u00E1" - }, - { - "Id": "xks", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kumbewaha" - }, - { - "Id": "xkt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kantosi" - }, - { - "Id": "xku", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kaamba" - }, - { - "Id": "xkv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kgalagadi" - }, - { - "Id": "xkw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kembra" - }, - { - "Id": "xkx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Karore" - }, - { - "Id": "xky", - "Scope": "I", - "LanguageType": "L", - "RefName": "Uma\u0027 Lasan" - }, - { - "Id": "xkz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kurtokha" - }, - { - "Id": "xla", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kamula" - }, - { - "Id": "xlb", - "Scope": "I", - "LanguageType": "E", - "RefName": "Loup B" - }, - { - "Id": "xlc", - "Scope": "I", - "LanguageType": "H", - "RefName": "Lycian" - }, - { - "Id": "xld", - "Scope": "I", - "LanguageType": "H", - "RefName": "Lydian" - }, - { - "Id": "xle", - "Scope": "I", - "LanguageType": "H", - "RefName": "Lemnian" - }, - { - "Id": "xlg", - "Scope": "I", - "LanguageType": "H", - "RefName": "Ligurian (Ancient)" - }, - { - "Id": "xli", - "Scope": "I", - "LanguageType": "H", - "RefName": "Liburnian" - }, - { - "Id": "xln", - "Scope": "I", - "LanguageType": "H", - "RefName": "Alanic" - }, - { - "Id": "xlo", - "Scope": "I", - "LanguageType": "E", - "RefName": "Loup A" - }, - { - "Id": "xlp", - "Scope": "I", - "LanguageType": "H", - "RefName": "Lepontic" - }, - { - "Id": "xls", - "Scope": "I", - "LanguageType": "H", - "RefName": "Lusitanian" - }, - { - "Id": "xlu", - "Scope": "I", - "LanguageType": "H", - "RefName": "Cuneiform Luwian" - }, - { - "Id": "xly", - "Scope": "I", - "LanguageType": "H", - "RefName": "Elymian" - }, - { - "Id": "xma", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mushungulu" - }, - { - "Id": "xmb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mbonga" - }, - { - "Id": "xmc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Makhuwa-Marrevone" - }, - { - "Id": "xmd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mbudum" - }, - { - "Id": "xme", - "Scope": "I", - "LanguageType": "H", - "RefName": "Median" - }, - { - "Id": "xmf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mingrelian" - }, - { - "Id": "xmg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mengaka" - }, - { - "Id": "xmh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kugu-Muminh" - }, - { - "Id": "xmj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Majera" - }, - { - "Id": "xmk", - "Scope": "I", - "LanguageType": "H", - "RefName": "Ancient Macedonian" - }, - { - "Id": "xml", - "Scope": "I", - "LanguageType": "L", - "RefName": "Malaysian Sign Language" - }, - { - "Id": "xmm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Manado Malay" - }, - { - "Id": "xmn", - "Scope": "I", - "LanguageType": "H", - "RefName": "Manichaean Middle Persian" - }, - { - "Id": "xmo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Morerebi" - }, - { - "Id": "xmp", - "Scope": "I", - "LanguageType": "E", - "RefName": "Kuku-Mu\u0027inh" - }, - { - "Id": "xmq", - "Scope": "I", - "LanguageType": "E", - "RefName": "Kuku-Mangk" - }, - { - "Id": "xmr", - "Scope": "I", - "LanguageType": "H", - "RefName": "Meroitic" - }, - { - "Id": "xms", - "Scope": "I", - "LanguageType": "L", - "RefName": "Moroccan Sign Language" - }, - { - "Id": "xmt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Matbat" - }, - { - "Id": "xmu", - "Scope": "I", - "LanguageType": "E", - "RefName": "Kamu" - }, - { - "Id": "xmv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Antankarana Malagasy" - }, - { - "Id": "xmw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tsimihety Malagasy" - }, - { - "Id": "xmx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Salawati" - }, - { - "Id": "xmy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mayaguduna" - }, - { - "Id": "xmz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mori Bawah" - }, - { - "Id": "xna", - "Scope": "I", - "LanguageType": "H", - "RefName": "Ancient North Arabian" - }, - { - "Id": "xnb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kanakanabu" - }, - { - "Id": "xng", - "Scope": "I", - "LanguageType": "H", - "RefName": "Middle Mongolian" - }, - { - "Id": "xnh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kuanhua" - }, - { - "Id": "xni", - "Scope": "I", - "LanguageType": "E", - "RefName": "Ngarigu" - }, - { - "Id": "xnj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngoni (Tanzania)" - }, - { - "Id": "xnk", - "Scope": "I", - "LanguageType": "E", - "RefName": "Nganakarti" - }, - { - "Id": "xnm", - "Scope": "I", - "LanguageType": "E", - "RefName": "Ngumbarl" - }, - { - "Id": "xnn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Kankanay" - }, - { - "Id": "xno", - "Scope": "I", - "LanguageType": "H", - "RefName": "Anglo-Norman" - }, - { - "Id": "xnq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngoni (Mozambique)" - }, - { - "Id": "xnr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kangri" - }, - { - "Id": "xns", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kanashi" - }, - { - "Id": "xnt", - "Scope": "I", - "LanguageType": "E", - "RefName": "Narragansett" - }, - { - "Id": "xnu", - "Scope": "I", - "LanguageType": "E", - "RefName": "Nukunul" - }, - { - "Id": "xny", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nyiyaparli" - }, - { - "Id": "xnz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kenzi" - }, - { - "Id": "xoc", - "Scope": "I", - "LanguageType": "E", - "RefName": "O\u0027chi\u0027chi\u0027" - }, - { - "Id": "xod", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kokoda" - }, - { - "Id": "xog", - "Scope": "I", - "LanguageType": "L", - "RefName": "Soga" - }, - { - "Id": "xoi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kominimung" - }, - { - "Id": "xok", - "Scope": "I", - "LanguageType": "L", - "RefName": "Xokleng" - }, - { - "Id": "xom", - "Scope": "I", - "LanguageType": "L", - "RefName": "Komo (Sudan)" - }, - { - "Id": "xon", - "Scope": "I", - "LanguageType": "L", - "RefName": "Konkomba" - }, - { - "Id": "xoo", - "Scope": "I", - "LanguageType": "E", - "RefName": "Xukur\u00FA" - }, - { - "Id": "xop", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kopar" - }, - { - "Id": "xor", - "Scope": "I", - "LanguageType": "L", - "RefName": "Korubo" - }, - { - "Id": "xow", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kowaki" - }, - { - "Id": "xpa", - "Scope": "I", - "LanguageType": "E", - "RefName": "Pirriya" - }, - { - "Id": "xpb", - "Scope": "I", - "LanguageType": "E", - "RefName": "Northeastern Tasmanian" - }, - { - "Id": "xpc", - "Scope": "I", - "LanguageType": "H", - "RefName": "Pecheneg" - }, - { - "Id": "xpd", - "Scope": "I", - "LanguageType": "E", - "RefName": "Oyster Bay Tasmanian" - }, - { - "Id": "xpe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Liberia Kpelle" - }, - { - "Id": "xpf", - "Scope": "I", - "LanguageType": "E", - "RefName": "Southeast Tasmanian" - }, - { - "Id": "xpg", - "Scope": "I", - "LanguageType": "H", - "RefName": "Phrygian" - }, - { - "Id": "xph", - "Scope": "I", - "LanguageType": "E", - "RefName": "North Midlands Tasmanian" - }, - { - "Id": "xpi", - "Scope": "I", - "LanguageType": "H", - "RefName": "Pictish" - }, - { - "Id": "xpj", - "Scope": "I", - "LanguageType": "E", - "RefName": "Mpalitjanh" - }, - { - "Id": "xpk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kulina Pano" - }, - { - "Id": "xpl", - "Scope": "I", - "LanguageType": "E", - "RefName": "Port Sorell Tasmanian" - }, - { - "Id": "xpm", - "Scope": "I", - "LanguageType": "E", - "RefName": "Pumpokol" - }, - { - "Id": "xpn", - "Scope": "I", - "LanguageType": "E", - "RefName": "Kapinaw\u00E1" - }, - { - "Id": "xpo", - "Scope": "I", - "LanguageType": "E", - "RefName": "Pochutec" - }, - { - "Id": "xpp", - "Scope": "I", - "LanguageType": "H", - "RefName": "Puyo-Paekche" - }, - { - "Id": "xpq", - "Scope": "I", - "LanguageType": "E", - "RefName": "Mohegan-Pequot" - }, - { - "Id": "xpr", - "Scope": "I", - "LanguageType": "H", - "RefName": "Parthian" - }, - { - "Id": "xps", - "Scope": "I", - "LanguageType": "H", - "RefName": "Pisidian" - }, - { - "Id": "xpt", - "Scope": "I", - "LanguageType": "E", - "RefName": "Punthamara" - }, - { - "Id": "xpu", - "Scope": "I", - "LanguageType": "H", - "RefName": "Punic" - }, - { - "Id": "xpv", - "Scope": "I", - "LanguageType": "E", - "RefName": "Northern Tasmanian" - }, - { - "Id": "xpw", - "Scope": "I", - "LanguageType": "E", - "RefName": "Northwestern Tasmanian" - }, - { - "Id": "xpx", - "Scope": "I", - "LanguageType": "E", - "RefName": "Southwestern Tasmanian" - }, - { - "Id": "xpy", - "Scope": "I", - "LanguageType": "H", - "RefName": "Puyo" - }, - { - "Id": "xpz", - "Scope": "I", - "LanguageType": "E", - "RefName": "Bruny Island Tasmanian" - }, - { - "Id": "xqa", - "Scope": "I", - "LanguageType": "H", - "RefName": "Karakhanid" - }, - { - "Id": "xqt", - "Scope": "I", - "LanguageType": "H", - "RefName": "Qatabanian" - }, - { - "Id": "xra", - "Scope": "I", - "LanguageType": "L", - "RefName": "Krah\u00F4" - }, - { - "Id": "xrb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Karaboro" - }, - { - "Id": "xrd", - "Scope": "I", - "LanguageType": "E", - "RefName": "Gundungurra" - }, - { - "Id": "xre", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kreye" - }, - { - "Id": "xrg", - "Scope": "I", - "LanguageType": "E", - "RefName": "Minang" - }, - { - "Id": "xri", - "Scope": "I", - "LanguageType": "L", - "RefName": "Krikati-Timbira" - }, - { - "Id": "xrm", - "Scope": "I", - "LanguageType": "H", - "RefName": "Armazic" - }, - { - "Id": "xrn", - "Scope": "I", - "LanguageType": "E", - "RefName": "Arin" - }, - { - "Id": "xrr", - "Scope": "I", - "LanguageType": "H", - "RefName": "Raetic" - }, - { - "Id": "xrt", - "Scope": "I", - "LanguageType": "E", - "RefName": "Aranama-Tamique" - }, - { - "Id": "xru", - "Scope": "I", - "LanguageType": "L", - "RefName": "Marriammu" - }, - { - "Id": "xrw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Karawa" - }, - { - "Id": "xsa", - "Scope": "I", - "LanguageType": "H", - "RefName": "Sabaean" - }, - { - "Id": "xsb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sambal" - }, - { - "Id": "xsc", - "Scope": "I", - "LanguageType": "H", - "RefName": "Scythian" - }, - { - "Id": "xsd", - "Scope": "I", - "LanguageType": "H", - "RefName": "Sidetic" - }, - { - "Id": "xse", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sempan" - }, - { - "Id": "xsh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Shamang" - }, - { - "Id": "xsi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sio" - }, - { - "Id": "xsj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Subi" - }, - { - "Id": "xsl", - "Scope": "I", - "LanguageType": "L", - "RefName": "South Slavey" - }, - { - "Id": "xsm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kasem" - }, - { - "Id": "xsn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sanga (Nigeria)" - }, - { - "Id": "xso", - "Scope": "I", - "LanguageType": "E", - "RefName": "Solano" - }, - { - "Id": "xsp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Silopi" - }, - { - "Id": "xsq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Makhuwa-Saka" - }, - { - "Id": "xsr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sherpa" - }, - { - "Id": "xsu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sanum\u00E1" - }, - { - "Id": "xsv", - "Scope": "I", - "LanguageType": "E", - "RefName": "Sudovian" - }, - { - "Id": "xsy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Saisiyat" - }, - { - "Id": "xta", - "Scope": "I", - "LanguageType": "L", - "RefName": "Alcozauca Mixtec" - }, - { - "Id": "xtb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chazumba Mixtec" - }, - { - "Id": "xtc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Katcha-Kadugli-Miri" - }, - { - "Id": "xtd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Diuxi-Tilantongo Mixtec" - }, - { - "Id": "xte", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ketengban" - }, - { - "Id": "xtg", - "Scope": "I", - "LanguageType": "H", - "RefName": "Transalpine Gaulish" - }, - { - "Id": "xth", - "Scope": "I", - "LanguageType": "E", - "RefName": "Yitha Yitha" - }, - { - "Id": "xti", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sinicahua Mixtec" - }, - { - "Id": "xtj", - "Scope": "I", - "LanguageType": "L", - "RefName": "San Juan Teita Mixtec" - }, - { - "Id": "xtl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tijaltepec Mixtec" - }, - { - "Id": "xtm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Magdalena Pe\u00F1asco Mixtec" - }, - { - "Id": "xtn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Tlaxiaco Mixtec" - }, - { - "Id": "xto", - "Scope": "I", - "LanguageType": "H", - "RefName": "Tokharian A" - }, - { - "Id": "xtp", - "Scope": "I", - "LanguageType": "L", - "RefName": "San Miguel Piedras Mixtec" - }, - { - "Id": "xtq", - "Scope": "I", - "LanguageType": "H", - "RefName": "Tumshuqese" - }, - { - "Id": "xtr", - "Scope": "I", - "LanguageType": "H", - "RefName": "Early Tripuri" - }, - { - "Id": "xts", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sindihui Mixtec" - }, - { - "Id": "xtt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tacahua Mixtec" - }, - { - "Id": "xtu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cuyamecalco Mixtec" - }, - { - "Id": "xtv", - "Scope": "I", - "LanguageType": "E", - "RefName": "Thawa" - }, - { - "Id": "xtw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tawand\u00EA" - }, - { - "Id": "xty", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yoloxochitl Mixtec" - }, - { - "Id": "xua", - "Scope": "I", - "LanguageType": "L", - "RefName": "Alu Kurumba" - }, - { - "Id": "xub", - "Scope": "I", - "LanguageType": "L", - "RefName": "Betta Kurumba" - }, - { - "Id": "xud", - "Scope": "I", - "LanguageType": "E", - "RefName": "Umiida" - }, - { - "Id": "xug", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kunigami" - }, - { - "Id": "xuj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Jennu Kurumba" - }, - { - "Id": "xul", - "Scope": "I", - "LanguageType": "E", - "RefName": "Ngunawal" - }, - { - "Id": "xum", - "Scope": "I", - "LanguageType": "H", - "RefName": "Umbrian" - }, - { - "Id": "xun", - "Scope": "I", - "LanguageType": "E", - "RefName": "Unggaranggu" - }, - { - "Id": "xuo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kuo" - }, - { - "Id": "xup", - "Scope": "I", - "LanguageType": "E", - "RefName": "Upper Umpqua" - }, - { - "Id": "xur", - "Scope": "I", - "LanguageType": "H", - "RefName": "Urartian" - }, - { - "Id": "xut", - "Scope": "I", - "LanguageType": "E", - "RefName": "Kuthant" - }, - { - "Id": "xuu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kxoe" - }, - { - "Id": "xve", - "Scope": "I", - "LanguageType": "H", - "RefName": "Venetic" - }, - { - "Id": "xvi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kamviri" - }, - { - "Id": "xvn", - "Scope": "I", - "LanguageType": "H", - "RefName": "Vandalic" - }, - { - "Id": "xvo", - "Scope": "I", - "LanguageType": "H", - "RefName": "Volscian" - }, - { - "Id": "xvs", - "Scope": "I", - "LanguageType": "H", - "RefName": "Vestinian" - }, - { - "Id": "xwa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kwaza" - }, - { - "Id": "xwc", - "Scope": "I", - "LanguageType": "E", - "RefName": "Woccon" - }, - { - "Id": "xwd", - "Scope": "I", - "LanguageType": "E", - "RefName": "Wadi Wadi" - }, - { - "Id": "xwe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Xwela Gbe" - }, - { - "Id": "xwg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kwegu" - }, - { - "Id": "xwj", - "Scope": "I", - "LanguageType": "E", - "RefName": "Wajuk" - }, - { - "Id": "xwk", - "Scope": "I", - "LanguageType": "E", - "RefName": "Wangkumara" - }, - { - "Id": "xwl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Xwla Gbe" - }, - { - "Id": "xwo", - "Scope": "I", - "LanguageType": "E", - "RefName": "Written Oirat" - }, - { - "Id": "xwr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kwerba Mamberamo" - }, - { - "Id": "xwt", - "Scope": "I", - "LanguageType": "E", - "RefName": "Wotjobaluk" - }, - { - "Id": "xww", - "Scope": "I", - "LanguageType": "E", - "RefName": "Wemba Wemba" - }, - { - "Id": "xxb", - "Scope": "I", - "LanguageType": "E", - "RefName": "Boro (Ghana)" - }, - { - "Id": "xxk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ke\u0027o" - }, - { - "Id": "xxm", - "Scope": "I", - "LanguageType": "E", - "RefName": "Minkin" - }, - { - "Id": "xxr", - "Scope": "I", - "LanguageType": "E", - "RefName": "Korop\u00F3" - }, - { - "Id": "xxt", - "Scope": "I", - "LanguageType": "E", - "RefName": "Tambora" - }, - { - "Id": "xya", - "Scope": "I", - "LanguageType": "E", - "RefName": "Yaygir" - }, - { - "Id": "xyb", - "Scope": "I", - "LanguageType": "E", - "RefName": "Yandjibara" - }, - { - "Id": "xyj", - "Scope": "I", - "LanguageType": "E", - "RefName": "Mayi-Yapi" - }, - { - "Id": "xyk", - "Scope": "I", - "LanguageType": "E", - "RefName": "Mayi-Kulan" - }, - { - "Id": "xyl", - "Scope": "I", - "LanguageType": "E", - "RefName": "Yalakalore" - }, - { - "Id": "xyt", - "Scope": "I", - "LanguageType": "E", - "RefName": "Mayi-Thakurti" - }, - { - "Id": "xyy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yorta Yorta" - }, - { - "Id": "xzh", - "Scope": "I", - "LanguageType": "H", - "RefName": "Zhang-Zhung" - }, - { - "Id": "xzm", - "Scope": "I", - "LanguageType": "E", - "RefName": "Zemgalian" - }, - { - "Id": "xzp", - "Scope": "I", - "LanguageType": "H", - "RefName": "Ancient Zapotec" - }, - { - "Id": "yaa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yaminahua" - }, - { - "Id": "yab", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yuhup" - }, - { - "Id": "yac", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pass Valley Yali" - }, - { - "Id": "yad", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yagua" - }, - { - "Id": "yae", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pum\u00E9" - }, - { - "Id": "yaf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yaka (Democratic Republic of Congo)" - }, - { - "Id": "yag", - "Scope": "I", - "LanguageType": "L", - "RefName": "Y\u00E1mana" - }, - { - "Id": "yah", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yazgulyam" - }, - { - "Id": "yai", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yagnobi" - }, - { - "Id": "yaj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Banda-Yangere" - }, - { - "Id": "yak", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yakama" - }, - { - "Id": "yal", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yalunka" - }, - { - "Id": "yam", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yamba" - }, - { - "Id": "yan", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mayangna" - }, - { - "Id": "yao", - "Part2B": "yao", - "Part2T": "yao", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yao" - }, - { - "Id": "yap", - "Part2B": "yap", - "Part2T": "yap", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yapese" - }, - { - "Id": "yaq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yaqui" - }, - { - "Id": "yar", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yabarana" - }, - { - "Id": "yas", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nugunu (Cameroon)" - }, - { - "Id": "yat", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yambeta" - }, - { - "Id": "yau", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yuwana" - }, - { - "Id": "yav", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yangben" - }, - { - "Id": "yaw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yawalapit\u00ED" - }, - { - "Id": "yax", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yauma" - }, - { - "Id": "yay", - "Scope": "I", - "LanguageType": "L", - "RefName": "Agwagwune" - }, - { - "Id": "yaz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lokaa" - }, - { - "Id": "yba", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yala" - }, - { - "Id": "ybb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yemba" - }, - { - "Id": "ybe", - "Scope": "I", - "LanguageType": "L", - "RefName": "West Yugur" - }, - { - "Id": "ybh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yakha" - }, - { - "Id": "ybi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yamphu" - }, - { - "Id": "ybj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hasha" - }, - { - "Id": "ybk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bokha" - }, - { - "Id": "ybl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yukuben" - }, - { - "Id": "ybm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yaben" - }, - { - "Id": "ybn", - "Scope": "I", - "LanguageType": "E", - "RefName": "Yaba\u00E2na" - }, - { - "Id": "ybo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yabong" - }, - { - "Id": "ybx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yawiyo" - }, - { - "Id": "yby", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yaweyuha" - }, - { - "Id": "ych", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chesu" - }, - { - "Id": "ycl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lolopo" - }, - { - "Id": "ycn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yucuna" - }, - { - "Id": "ycp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chepya" - }, - { - "Id": "ycr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yilan Creole" - }, - { - "Id": "yda", - "Scope": "I", - "LanguageType": "E", - "RefName": "Yanda" - }, - { - "Id": "ydd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Yiddish" - }, - { - "Id": "yde", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yangum Dey" - }, - { - "Id": "ydg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yidgha" - }, - { - "Id": "ydk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yoidik" - }, - { - "Id": "yea", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ravula" - }, - { - "Id": "yec", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yeniche" - }, - { - "Id": "yee", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yimas" - }, - { - "Id": "yei", - "Scope": "I", - "LanguageType": "E", - "RefName": "Yeni" - }, - { - "Id": "yej", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yevanic" - }, - { - "Id": "yel", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yela" - }, - { - "Id": "yer", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tarok" - }, - { - "Id": "yes", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nyankpa" - }, - { - "Id": "yet", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yetfa" - }, - { - "Id": "yeu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yerukula" - }, - { - "Id": "yev", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yapunda" - }, - { - "Id": "yey", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yeyi" - }, - { - "Id": "yga", - "Scope": "I", - "LanguageType": "E", - "RefName": "Malyangapa" - }, - { - "Id": "ygi", - "Scope": "I", - "LanguageType": "E", - "RefName": "Yiningayi" - }, - { - "Id": "ygl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yangum Gel" - }, - { - "Id": "ygm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yagomi" - }, - { - "Id": "ygp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Gepo" - }, - { - "Id": "ygr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yagaria" - }, - { - "Id": "ygs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yol\u014Bu Sign Language" - }, - { - "Id": "ygu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yugul" - }, - { - "Id": "ygw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yagwoia" - }, - { - "Id": "yha", - "Scope": "I", - "LanguageType": "L", - "RefName": "Baha Buyang" - }, - { - "Id": "yhd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Judeo-Iraqi Arabic" - }, - { - "Id": "yhl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Hlepho Phowa" - }, - { - "Id": "yhs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yan-nha\u014Bu Sign Language" - }, - { - "Id": "yia", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yinggarda" - }, - { - "Id": "yid", - "Part2B": "yid", - "Part2T": "yid", - "Part1": "yi", - "Scope": "M", - "LanguageType": "L", - "RefName": "Yiddish" - }, - { - "Id": "yif", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ache" - }, - { - "Id": "yig", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wusa Nasu" - }, - { - "Id": "yih", - "Scope": "I", - "LanguageType": "E", - "RefName": "Western Yiddish" - }, - { - "Id": "yii", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yidiny" - }, - { - "Id": "yij", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yindjibarndi" - }, - { - "Id": "yik", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dongshanba Lalo" - }, - { - "Id": "yil", - "Scope": "I", - "LanguageType": "E", - "RefName": "Yindjilandji" - }, - { - "Id": "yim", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yimchungru Naga" - }, - { - "Id": "yin", - "Scope": "I", - "LanguageType": "L", - "RefName": "Riang Lai" - }, - { - "Id": "yip", - "Scope": "I", - "LanguageType": "L", - "RefName": "Pholo" - }, - { - "Id": "yiq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Miqie" - }, - { - "Id": "yir", - "Scope": "I", - "LanguageType": "L", - "RefName": "North Awyu" - }, - { - "Id": "yis", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yis" - }, - { - "Id": "yit", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Lalu" - }, - { - "Id": "yiu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Awu" - }, - { - "Id": "yiv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Nisu" - }, - { - "Id": "yix", - "Scope": "I", - "LanguageType": "L", - "RefName": "Axi Yi" - }, - { - "Id": "yiz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Azhe" - }, - { - "Id": "yka", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yakan" - }, - { - "Id": "ykg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Yukaghir" - }, - { - "Id": "ykh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Khamnigan Mongol" - }, - { - "Id": "yki", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yoke" - }, - { - "Id": "ykk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yakaikeke" - }, - { - "Id": "ykl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Khlula" - }, - { - "Id": "ykm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kap" - }, - { - "Id": "ykn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kua-nsi" - }, - { - "Id": "yko", - "Scope": "I", - "LanguageType": "L", - "RefName": "Iyasa" - }, - { - "Id": "ykr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yekora" - }, - { - "Id": "ykt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kathu" - }, - { - "Id": "yku", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kuamasi" - }, - { - "Id": "yky", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yakoma" - }, - { - "Id": "yla", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yaul" - }, - { - "Id": "ylb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yaleba" - }, - { - "Id": "yle", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yele" - }, - { - "Id": "ylg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yelogu" - }, - { - "Id": "yli", - "Scope": "I", - "LanguageType": "L", - "RefName": "Angguruk Yali" - }, - { - "Id": "yll", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yil" - }, - { - "Id": "ylm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Limi" - }, - { - "Id": "yln", - "Scope": "I", - "LanguageType": "L", - "RefName": "Langnian Buyang" - }, - { - "Id": "ylo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Naluo Yi" - }, - { - "Id": "ylr", - "Scope": "I", - "LanguageType": "E", - "RefName": "Yalarnnga" - }, - { - "Id": "ylu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aribwaung" - }, - { - "Id": "yly", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ny\u00E2layu" - }, - { - "Id": "ymb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yambes" - }, - { - "Id": "ymc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Muji" - }, - { - "Id": "ymd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Muda" - }, - { - "Id": "yme", - "Scope": "I", - "LanguageType": "E", - "RefName": "Yameo" - }, - { - "Id": "ymg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yamongeri" - }, - { - "Id": "ymh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mili" - }, - { - "Id": "ymi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Moji" - }, - { - "Id": "ymk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Makwe" - }, - { - "Id": "yml", - "Scope": "I", - "LanguageType": "L", - "RefName": "Iamalele" - }, - { - "Id": "ymm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maay" - }, - { - "Id": "ymn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yamna" - }, - { - "Id": "ymo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yangum Mon" - }, - { - "Id": "ymp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yamap" - }, - { - "Id": "ymq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Qila Muji" - }, - { - "Id": "ymr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Malasar" - }, - { - "Id": "yms", - "Scope": "I", - "LanguageType": "H", - "RefName": "Mysian" - }, - { - "Id": "ymx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Northern Muji" - }, - { - "Id": "ymz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Muzi" - }, - { - "Id": "yna", - "Scope": "I", - "LanguageType": "L", - "RefName": "Aluo" - }, - { - "Id": "ynb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yamben" - }, - { - "Id": "ynd", - "Scope": "I", - "LanguageType": "E", - "RefName": "Yandruwandha" - }, - { - "Id": "yne", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lang\u0027e" - }, - { - "Id": "yng", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yango" - }, - { - "Id": "ynk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Naukan Yupik" - }, - { - "Id": "ynl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yangulam" - }, - { - "Id": "ynn", - "Scope": "I", - "LanguageType": "E", - "RefName": "Yana" - }, - { - "Id": "yno", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yong" - }, - { - "Id": "ynq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yendang" - }, - { - "Id": "yns", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yansi" - }, - { - "Id": "ynu", - "Scope": "I", - "LanguageType": "E", - "RefName": "Yahuna" - }, - { - "Id": "yob", - "Scope": "I", - "LanguageType": "E", - "RefName": "Yoba" - }, - { - "Id": "yog", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yogad" - }, - { - "Id": "yoi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yonaguni" - }, - { - "Id": "yok", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yokuts" - }, - { - "Id": "yom", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yombe" - }, - { - "Id": "yon", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yongkom" - }, - { - "Id": "yor", - "Part2B": "yor", - "Part2T": "yor", - "Part1": "yo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yoruba" - }, - { - "Id": "yot", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yotti" - }, - { - "Id": "yox", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yoron" - }, - { - "Id": "yoy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yoy" - }, - { - "Id": "ypa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Phala" - }, - { - "Id": "ypb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Labo Phowa" - }, - { - "Id": "ypg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Phola" - }, - { - "Id": "yph", - "Scope": "I", - "LanguageType": "L", - "RefName": "Phupha" - }, - { - "Id": "ypm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Phuma" - }, - { - "Id": "ypn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ani Phowa" - }, - { - "Id": "ypo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Alo Phola" - }, - { - "Id": "ypp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Phupa" - }, - { - "Id": "ypz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Phuza" - }, - { - "Id": "yra", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yerakai" - }, - { - "Id": "yrb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yareba" - }, - { - "Id": "yre", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yaour\u00E9" - }, - { - "Id": "yrk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nenets" - }, - { - "Id": "yrl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nhengatu" - }, - { - "Id": "yrm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yirrk-Mel" - }, - { - "Id": "yrn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yerong" - }, - { - "Id": "yro", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yaroam\u00EB" - }, - { - "Id": "yrs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yarsun" - }, - { - "Id": "yrw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yarawata" - }, - { - "Id": "yry", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yarluyandi" - }, - { - "Id": "ysc", - "Scope": "I", - "LanguageType": "E", - "RefName": "Yassic" - }, - { - "Id": "ysd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Samatao" - }, - { - "Id": "ysg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sonaga" - }, - { - "Id": "ysl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yugoslavian Sign Language" - }, - { - "Id": "ysm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Myanmar Sign Language" - }, - { - "Id": "ysn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sani" - }, - { - "Id": "yso", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nisi (China)" - }, - { - "Id": "ysp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Lolopo" - }, - { - "Id": "ysr", - "Scope": "I", - "LanguageType": "E", - "RefName": "Sirenik Yupik" - }, - { - "Id": "yss", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yessan-Mayo" - }, - { - "Id": "ysy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sanie" - }, - { - "Id": "yta", - "Scope": "I", - "LanguageType": "L", - "RefName": "Talu" - }, - { - "Id": "ytl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tanglang" - }, - { - "Id": "ytp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Thopho" - }, - { - "Id": "ytw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yout Wam" - }, - { - "Id": "yty", - "Scope": "I", - "LanguageType": "E", - "RefName": "Yatay" - }, - { - "Id": "yua", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yucateco" - }, - { - "Id": "yub", - "Scope": "I", - "LanguageType": "E", - "RefName": "Yugambal" - }, - { - "Id": "yuc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yuchi" - }, - { - "Id": "yud", - "Scope": "I", - "LanguageType": "L", - "RefName": "Judeo-Tripolitanian Arabic" - }, - { - "Id": "yue", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yue Chinese" - }, - { - "Id": "yuf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Havasupai-Walapai-Yavapai" - }, - { - "Id": "yug", - "Scope": "I", - "LanguageType": "E", - "RefName": "Yug" - }, - { - "Id": "yui", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yurut\u00ED" - }, - { - "Id": "yuj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Karkar-Yuri" - }, - { - "Id": "yuk", - "Scope": "I", - "LanguageType": "E", - "RefName": "Yuki" - }, - { - "Id": "yul", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yulu" - }, - { - "Id": "yum", - "Scope": "I", - "LanguageType": "L", - "RefName": "Quechan" - }, - { - "Id": "yun", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bena (Nigeria)" - }, - { - "Id": "yup", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yukpa" - }, - { - "Id": "yuq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yuqui" - }, - { - "Id": "yur", - "Scope": "I", - "LanguageType": "E", - "RefName": "Yurok" - }, - { - "Id": "yut", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yopno" - }, - { - "Id": "yuw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yau (Morobe Province)" - }, - { - "Id": "yux", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Yukaghir" - }, - { - "Id": "yuy", - "Scope": "I", - "LanguageType": "L", - "RefName": "East Yugur" - }, - { - "Id": "yuz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yuracare" - }, - { - "Id": "yva", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yawa" - }, - { - "Id": "yvt", - "Scope": "I", - "LanguageType": "E", - "RefName": "Yavitero" - }, - { - "Id": "ywa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kalou" - }, - { - "Id": "ywg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yinhawangka" - }, - { - "Id": "ywl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Lalu" - }, - { - "Id": "ywn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yawanawa" - }, - { - "Id": "ywq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wuding-Luquan Yi" - }, - { - "Id": "ywr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yawuru" - }, - { - "Id": "ywt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Xishanba Lalo" - }, - { - "Id": "ywu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Wumeng Nasu" - }, - { - "Id": "yww", - "Scope": "I", - "LanguageType": "E", - "RefName": "Yawarawarga" - }, - { - "Id": "yxa", - "Scope": "I", - "LanguageType": "E", - "RefName": "Mayawali" - }, - { - "Id": "yxg", - "Scope": "I", - "LanguageType": "E", - "RefName": "Yagara" - }, - { - "Id": "yxl", - "Scope": "I", - "LanguageType": "E", - "RefName": "Yardliyawarra" - }, - { - "Id": "yxm", - "Scope": "I", - "LanguageType": "E", - "RefName": "Yinwum" - }, - { - "Id": "yxu", - "Scope": "I", - "LanguageType": "E", - "RefName": "Yuyu" - }, - { - "Id": "yxy", - "Scope": "I", - "LanguageType": "E", - "RefName": "Yabula Yabula" - }, - { - "Id": "yyr", - "Scope": "I", - "LanguageType": "E", - "RefName": "Yir Yoront" - }, - { - "Id": "yyu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yau (Sandaun Province)" - }, - { - "Id": "yyz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ayizi" - }, - { - "Id": "yzg", - "Scope": "I", - "LanguageType": "L", - "RefName": "E\u0027ma Buyang" - }, - { - "Id": "yzk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zokhuo" - }, - { - "Id": "zaa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sierra de Ju\u00E1rez Zapotec" - }, - { - "Id": "zab", - "Scope": "I", - "LanguageType": "L", - "RefName": "Western Tlacolula Valley Zapotec" - }, - { - "Id": "zac", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ocotl\u00E1n Zapotec" - }, - { - "Id": "zad", - "Scope": "I", - "LanguageType": "L", - "RefName": "Cajonos Zapotec" - }, - { - "Id": "zae", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yareni Zapotec" - }, - { - "Id": "zaf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ayoquesco Zapotec" - }, - { - "Id": "zag", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zaghawa" - }, - { - "Id": "zah", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zangwal" - }, - { - "Id": "zai", - "Scope": "I", - "LanguageType": "L", - "RefName": "Isthmus Zapotec" - }, - { - "Id": "zaj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zaramo" - }, - { - "Id": "zak", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zanaki" - }, - { - "Id": "zal", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zauzou" - }, - { - "Id": "zam", - "Scope": "I", - "LanguageType": "L", - "RefName": "Miahuatl\u00E1n Zapotec" - }, - { - "Id": "zao", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ozolotepec Zapotec" - }, - { - "Id": "zap", - "Part2B": "zap", - "Part2T": "zap", - "Scope": "M", - "LanguageType": "L", - "RefName": "Zapotec" - }, - { - "Id": "zaq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Alo\u00E1pam Zapotec" - }, - { - "Id": "zar", - "Scope": "I", - "LanguageType": "L", - "RefName": "Rinc\u00F3n Zapotec" - }, - { - "Id": "zas", - "Scope": "I", - "LanguageType": "L", - "RefName": "Santo Domingo Albarradas Zapotec" - }, - { - "Id": "zat", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tabaa Zapotec" - }, - { - "Id": "zau", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zangskari" - }, - { - "Id": "zav", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yatzachi Zapotec" - }, - { - "Id": "zaw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mitla Zapotec" - }, - { - "Id": "zax", - "Scope": "I", - "LanguageType": "L", - "RefName": "Xadani Zapotec" - }, - { - "Id": "zay", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zayse-Zergulla" - }, - { - "Id": "zaz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zari" - }, - { - "Id": "zba", - "Scope": "I", - "LanguageType": "C", - "RefName": "Balaibalan" - }, - { - "Id": "zbc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Central Berawan" - }, - { - "Id": "zbe", - "Scope": "I", - "LanguageType": "L", - "RefName": "East Berawan" - }, - { - "Id": "zbl", - "Part2B": "zbl", - "Part2T": "zbl", - "Scope": "I", - "LanguageType": "C", - "RefName": "Blissymbols" - }, - { - "Id": "zbt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Batui" - }, - { - "Id": "zbu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bu (Bauchi State)" - }, - { - "Id": "zbw", - "Scope": "I", - "LanguageType": "L", - "RefName": "West Berawan" - }, - { - "Id": "zca", - "Scope": "I", - "LanguageType": "L", - "RefName": "Coatecas Altas Zapotec" - }, - { - "Id": "zcd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Las Delicias Zapotec" - }, - { - "Id": "zch", - "Scope": "I", - "LanguageType": "L", - "RefName": "Central Hongshuihe Zhuang" - }, - { - "Id": "zdj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ngazidja Comorian" - }, - { - "Id": "zea", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zeeuws" - }, - { - "Id": "zeg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zenag" - }, - { - "Id": "zeh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Eastern Hongshuihe Zhuang" - }, - { - "Id": "zem", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zeem" - }, - { - "Id": "zen", - "Part2B": "zen", - "Part2T": "zen", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zenaga" - }, - { - "Id": "zga", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kinga" - }, - { - "Id": "zgb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Guibei Zhuang" - }, - { - "Id": "zgh", - "Part2B": "zgh", - "Part2T": "zgh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Standard Moroccan Tamazight" - }, - { - "Id": "zgm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Minz Zhuang" - }, - { - "Id": "zgn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Guibian Zhuang" - }, - { - "Id": "zgr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Magori" - }, - { - "Id": "zha", - "Part2B": "zha", - "Part2T": "zha", - "Part1": "za", - "Scope": "M", - "LanguageType": "L", - "RefName": "Zhuang" - }, - { - "Id": "zhb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zhaba" - }, - { - "Id": "zhd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Dai Zhuang" - }, - { - "Id": "zhi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zhire" - }, - { - "Id": "zhk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kurdish Sign Language" - }, - { - "Id": "zhn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Nong Zhuang" - }, - { - "Id": "zho", - "Part2B": "chi", - "Part2T": "zho", - "Part1": "zh", - "Scope": "M", - "LanguageType": "L", - "RefName": "Chinese" - }, - { - "Id": "zhw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zhoa" - }, - { - "Id": "zia", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zia" - }, - { - "Id": "zib", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zimbabwe Sign Language" - }, - { - "Id": "zik", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zimakani" - }, - { - "Id": "zil", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zialo" - }, - { - "Id": "zim", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mesme" - }, - { - "Id": "zin", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zinza" - }, - { - "Id": "ziw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zigula" - }, - { - "Id": "ziz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zizilivakan" - }, - { - "Id": "zka", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kaimbulawa" - }, - { - "Id": "zkd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kadu" - }, - { - "Id": "zkg", - "Scope": "I", - "LanguageType": "H", - "RefName": "Koguryo" - }, - { - "Id": "zkh", - "Scope": "I", - "LanguageType": "H", - "RefName": "Khorezmian" - }, - { - "Id": "zkk", - "Scope": "I", - "LanguageType": "E", - "RefName": "Karankawa" - }, - { - "Id": "zkn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kanan" - }, - { - "Id": "zko", - "Scope": "I", - "LanguageType": "E", - "RefName": "Kott" - }, - { - "Id": "zkp", - "Scope": "I", - "LanguageType": "E", - "RefName": "S\u00E3o Paulo Kaing\u00E1ng" - }, - { - "Id": "zkr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zakhring" - }, - { - "Id": "zkt", - "Scope": "I", - "LanguageType": "H", - "RefName": "Kitan" - }, - { - "Id": "zku", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kaurna" - }, - { - "Id": "zkv", - "Scope": "I", - "LanguageType": "E", - "RefName": "Krevinian" - }, - { - "Id": "zkz", - "Scope": "I", - "LanguageType": "H", - "RefName": "Khazar" - }, - { - "Id": "zla", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zula" - }, - { - "Id": "zlj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Liujiang Zhuang" - }, - { - "Id": "zlm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Malay (individual language)" - }, - { - "Id": "zln", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lianshan Zhuang" - }, - { - "Id": "zlq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Liuqian Zhuang" - }, - { - "Id": "zlu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zul" - }, - { - "Id": "zma", - "Scope": "I", - "LanguageType": "L", - "RefName": "Manda (Australia)" - }, - { - "Id": "zmb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zimba" - }, - { - "Id": "zmc", - "Scope": "I", - "LanguageType": "E", - "RefName": "Margany" - }, - { - "Id": "zmd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maridan" - }, - { - "Id": "zme", - "Scope": "I", - "LanguageType": "E", - "RefName": "Mangerr" - }, - { - "Id": "zmf", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mfinu" - }, - { - "Id": "zmg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Marti Ke" - }, - { - "Id": "zmh", - "Scope": "I", - "LanguageType": "E", - "RefName": "Makolkol" - }, - { - "Id": "zmi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Negeri Sembilan Malay" - }, - { - "Id": "zmj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maridjabin" - }, - { - "Id": "zmk", - "Scope": "I", - "LanguageType": "E", - "RefName": "Mandandanyi" - }, - { - "Id": "zml", - "Scope": "I", - "LanguageType": "E", - "RefName": "Matngala" - }, - { - "Id": "zmm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Marimanindji" - }, - { - "Id": "zmn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mbangwe" - }, - { - "Id": "zmo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Molo" - }, - { - "Id": "zmp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mbuun" - }, - { - "Id": "zmq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mituku" - }, - { - "Id": "zmr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maranunggu" - }, - { - "Id": "zms", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mbesa" - }, - { - "Id": "zmt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Maringarr" - }, - { - "Id": "zmu", - "Scope": "I", - "LanguageType": "E", - "RefName": "Muruwari" - }, - { - "Id": "zmv", - "Scope": "I", - "LanguageType": "E", - "RefName": "Mbariman-Gudhinma" - }, - { - "Id": "zmw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mbo (Democratic Republic of Congo)" - }, - { - "Id": "zmx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Bomitaba" - }, - { - "Id": "zmy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mariyedi" - }, - { - "Id": "zmz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mbandja" - }, - { - "Id": "zna", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zan Gula" - }, - { - "Id": "zne", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zande (individual language)" - }, - { - "Id": "zng", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mang" - }, - { - "Id": "znk", - "Scope": "I", - "LanguageType": "E", - "RefName": "Manangkari" - }, - { - "Id": "zns", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mangas" - }, - { - "Id": "zoc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Copainal\u00E1 Zoque" - }, - { - "Id": "zoh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chimalapa Zoque" - }, - { - "Id": "zom", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zou" - }, - { - "Id": "zoo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Asunci\u00F3n Mixtepec Zapotec" - }, - { - "Id": "zoq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tabasco Zoque" - }, - { - "Id": "zor", - "Scope": "I", - "LanguageType": "L", - "RefName": "Ray\u00F3n Zoque" - }, - { - "Id": "zos", - "Scope": "I", - "LanguageType": "L", - "RefName": "Francisco Le\u00F3n Zoque" - }, - { - "Id": "zpa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lachiguiri Zapotec" - }, - { - "Id": "zpb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yautepec Zapotec" - }, - { - "Id": "zpc", - "Scope": "I", - "LanguageType": "L", - "RefName": "Choapan Zapotec" - }, - { - "Id": "zpd", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southeastern Ixtl\u00E1n Zapotec" - }, - { - "Id": "zpe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Petapa Zapotec" - }, - { - "Id": "zpf", - "Scope": "I", - "LanguageType": "L", - "RefName": "San Pedro Quiatoni Zapotec" - }, - { - "Id": "zpg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Guevea De Humboldt Zapotec" - }, - { - "Id": "zph", - "Scope": "I", - "LanguageType": "L", - "RefName": "Totomachapan Zapotec" - }, - { - "Id": "zpi", - "Scope": "I", - "LanguageType": "L", - "RefName": "Santa Mar\u00EDa Quiegolani Zapotec" - }, - { - "Id": "zpj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Quiavicuzas Zapotec" - }, - { - "Id": "zpk", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tlacolulita Zapotec" - }, - { - "Id": "zpl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lachix\u00EDo Zapotec" - }, - { - "Id": "zpm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mixtepec Zapotec" - }, - { - "Id": "zpn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Santa In\u00E9s Yatzechi Zapotec" - }, - { - "Id": "zpo", - "Scope": "I", - "LanguageType": "L", - "RefName": "Amatl\u00E1n Zapotec" - }, - { - "Id": "zpp", - "Scope": "I", - "LanguageType": "L", - "RefName": "El Alto Zapotec" - }, - { - "Id": "zpq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zoogocho Zapotec" - }, - { - "Id": "zpr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Santiago Xanica Zapotec" - }, - { - "Id": "zps", - "Scope": "I", - "LanguageType": "L", - "RefName": "Coatl\u00E1n Zapotec" - }, - { - "Id": "zpt", - "Scope": "I", - "LanguageType": "L", - "RefName": "San Vicente Coatl\u00E1n Zapotec" - }, - { - "Id": "zpu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yal\u00E1lag Zapotec" - }, - { - "Id": "zpv", - "Scope": "I", - "LanguageType": "L", - "RefName": "Chichicapan Zapotec" - }, - { - "Id": "zpw", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zaniza Zapotec" - }, - { - "Id": "zpx", - "Scope": "I", - "LanguageType": "L", - "RefName": "San Baltazar Loxicha Zapotec" - }, - { - "Id": "zpy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mazaltepec Zapotec" - }, - { - "Id": "zpz", - "Scope": "I", - "LanguageType": "L", - "RefName": "Texmelucan Zapotec" - }, - { - "Id": "zqe", - "Scope": "I", - "LanguageType": "L", - "RefName": "Qiubei Zhuang" - }, - { - "Id": "zra", - "Scope": "I", - "LanguageType": "H", - "RefName": "Kara (Korea)" - }, - { - "Id": "zrg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mirgan" - }, - { - "Id": "zrn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zerenkel" - }, - { - "Id": "zro", - "Scope": "I", - "LanguageType": "L", - "RefName": "Z\u00E1paro" - }, - { - "Id": "zrp", - "Scope": "I", - "LanguageType": "E", - "RefName": "Zarphatic" - }, - { - "Id": "zrs", - "Scope": "I", - "LanguageType": "L", - "RefName": "Mairasi" - }, - { - "Id": "zsa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sarasira" - }, - { - "Id": "zsk", - "Scope": "I", - "LanguageType": "H", - "RefName": "Kaskean" - }, - { - "Id": "zsl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zambian Sign Language" - }, - { - "Id": "zsm", - "Scope": "I", - "LanguageType": "L", - "RefName": "Standard Malay" - }, - { - "Id": "zsr", - "Scope": "I", - "LanguageType": "L", - "RefName": "Southern Rincon Zapotec" - }, - { - "Id": "zsu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Sukurum" - }, - { - "Id": "zte", - "Scope": "I", - "LanguageType": "L", - "RefName": "Elotepec Zapotec" - }, - { - "Id": "ztg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Xanagu\u00EDa Zapotec" - }, - { - "Id": "ztl", - "Scope": "I", - "LanguageType": "L", - "RefName": "Lapagu\u00EDa-Guivini Zapotec" - }, - { - "Id": "ztm", - "Scope": "I", - "LanguageType": "L", - "RefName": "San Agust\u00EDn Mixtepec Zapotec" - }, - { - "Id": "ztn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Santa Catarina Albarradas Zapotec" - }, - { - "Id": "ztp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Loxicha Zapotec" - }, - { - "Id": "ztq", - "Scope": "I", - "LanguageType": "L", - "RefName": "Quioquitani-Quier\u00ED Zapotec" - }, - { - "Id": "zts", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tilquiapan Zapotec" - }, - { - "Id": "ztt", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tejalapan Zapotec" - }, - { - "Id": "ztu", - "Scope": "I", - "LanguageType": "L", - "RefName": "G\u00FCil\u00E1 Zapotec" - }, - { - "Id": "ztx", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zaachila Zapotec" - }, - { - "Id": "zty", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yatee Zapotec" - }, - { - "Id": "zuh", - "Scope": "I", - "LanguageType": "L", - "RefName": "Tokano" - }, - { - "Id": "zul", - "Part2B": "zul", - "Part2T": "zul", - "Part1": "zu", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zulu" - }, - { - "Id": "zum", - "Scope": "I", - "LanguageType": "L", - "RefName": "Kumzari" - }, - { - "Id": "zun", - "Part2B": "zun", - "Part2T": "zun", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zuni" - }, - { - "Id": "zuy", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zumaya" - }, - { - "Id": "zwa", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zay" - }, - { - "Id": "zxx", - "Part2B": "zxx", - "Part2T": "zxx", - "Scope": "S", - "LanguageType": "S", - "RefName": "No linguistic content" - }, - { - "Id": "zyb", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yongbei Zhuang" - }, - { - "Id": "zyg", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yang Zhuang" - }, - { - "Id": "zyj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Youjiang Zhuang" - }, - { - "Id": "zyn", - "Scope": "I", - "LanguageType": "L", - "RefName": "Yongnan Zhuang" - }, - { - "Id": "zyp", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zyphe Chin" - }, - { - "Id": "zza", - "Part2B": "zza", - "Part2T": "zza", - "Scope": "M", - "LanguageType": "L", - "RefName": "Zaza" - }, - { - "Id": "zzj", - "Scope": "I", - "LanguageType": "L", - "RefName": "Zuojiang Zhuang" - } - ] -} \ No newline at end of file diff --git a/LanguageData/rfc5646 b/LanguageData/rfc5646 deleted file mode 100644 index 7bce29e..0000000 --- a/LanguageData/rfc5646 +++ /dev/null @@ -1,49306 +0,0 @@ -File-Date: 2026-06-14 -%% -Type: language -Subtag: aa -Description: Afar -Added: 2005-10-16 -%% -Type: language -Subtag: ab -Description: Abkhazian -Added: 2005-10-16 -Suppress-Script: Cyrl -%% -Type: language -Subtag: ae -Description: Avestan -Added: 2005-10-16 -%% -Type: language -Subtag: af -Description: Afrikaans -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: ak -Description: Akan -Added: 2005-10-16 -Scope: macrolanguage -%% -Type: language -Subtag: am -Description: Amharic -Added: 2005-10-16 -Suppress-Script: Ethi -%% -Type: language -Subtag: an -Description: Aragonese -Added: 2005-10-16 -%% -Type: language -Subtag: ar -Description: Arabic -Added: 2005-10-16 -Suppress-Script: Arab -Scope: macrolanguage -%% -Type: language -Subtag: as -Description: Assamese -Added: 2005-10-16 -Suppress-Script: Beng -%% -Type: language -Subtag: av -Description: Avaric -Added: 2005-10-16 -%% -Type: language -Subtag: ay -Description: Aymara -Added: 2005-10-16 -Suppress-Script: Latn -Scope: macrolanguage -%% -Type: language -Subtag: az -Description: Azerbaijani -Added: 2005-10-16 -Scope: macrolanguage -%% -Type: language -Subtag: ba -Description: Bashkir -Added: 2005-10-16 -%% -Type: language -Subtag: be -Description: Belarusian -Added: 2005-10-16 -Suppress-Script: Cyrl -%% -Type: language -Subtag: bg -Description: Bulgarian -Added: 2005-10-16 -Suppress-Script: Cyrl -%% -Type: language -Subtag: bh -Description: Bihari languages -Added: 2005-10-16 -Deprecated: 2026-06-14 -Preferred-Value: bih -Scope: collection -%% -Type: language -Subtag: bi -Description: Bislama -Added: 2005-10-16 -%% -Type: language -Subtag: bm -Description: Bambara -Added: 2005-10-16 -%% -Type: language -Subtag: bn -Description: Bengali -Description: Bangla -Added: 2005-10-16 -Suppress-Script: Beng -%% -Type: language -Subtag: bo -Description: Tibetan -Added: 2005-10-16 -%% -Type: language -Subtag: br -Description: Breton -Added: 2005-10-16 -%% -Type: language -Subtag: bs -Description: Bosnian -Added: 2005-10-16 -Suppress-Script: Latn -Macrolanguage: sh -%% -Type: language -Subtag: ca -Description: Catalan -Description: Valencian -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: ce -Description: Chechen -Added: 2005-10-16 -%% -Type: language -Subtag: ch -Description: Chamorro -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: co -Description: Corsican -Added: 2005-10-16 -%% -Type: language -Subtag: cr -Description: Cree -Added: 2005-10-16 -Scope: macrolanguage -%% -Type: language -Subtag: cs -Description: Czech -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: cu -Description: Church Slavic -Description: Church Slavonic -Description: Old Bulgarian -Description: Old Church Slavonic -Description: Old Slavonic -Added: 2005-10-16 -%% -Type: language -Subtag: cv -Description: Chuvash -Added: 2005-10-16 -%% -Type: language -Subtag: cy -Description: Welsh -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: da -Description: Danish -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: de -Description: German -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: dv -Description: Dhivehi -Description: Divehi -Description: Maldivian -Added: 2005-10-16 -Suppress-Script: Thaa -%% -Type: language -Subtag: dz -Description: Dzongkha -Added: 2005-10-16 -Suppress-Script: Tibt -%% -Type: language -Subtag: ee -Description: Ewe -Added: 2005-10-16 -%% -Type: language -Subtag: el -Description: Modern Greek (1453-) -Added: 2005-10-16 -Suppress-Script: Grek -%% -Type: language -Subtag: en -Description: English -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: eo -Description: Esperanto -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: es -Description: Spanish -Description: Castilian -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: et -Description: Estonian -Added: 2005-10-16 -Suppress-Script: Latn -Scope: macrolanguage -%% -Type: language -Subtag: eu -Description: Basque -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: fa -Description: Persian -Added: 2005-10-16 -Suppress-Script: Arab -Scope: macrolanguage -%% -Type: language -Subtag: ff -Description: Fulah -Added: 2005-10-16 -Scope: macrolanguage -%% -Type: language -Subtag: fi -Description: Finnish -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: fj -Description: Fijian -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: fo -Description: Faroese -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: fr -Description: French -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: fy -Description: Western Frisian -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: ga -Description: Irish -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: gd -Description: Scottish Gaelic -Description: Gaelic -Added: 2005-10-16 -%% -Type: language -Subtag: gl -Description: Galician -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: gn -Description: Guarani -Added: 2005-10-16 -Suppress-Script: Latn -Scope: macrolanguage -%% -Type: language -Subtag: gu -Description: Gujarati -Added: 2005-10-16 -Suppress-Script: Gujr -%% -Type: language -Subtag: gv -Description: Manx -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: ha -Description: Hausa -Added: 2005-10-16 -%% -Type: language -Subtag: he -Description: Hebrew -Added: 2005-10-16 -Suppress-Script: Hebr -%% -Type: language -Subtag: hi -Description: Hindi -Added: 2005-10-16 -Suppress-Script: Deva -%% -Type: language -Subtag: ho -Description: Hiri Motu -Added: 2005-10-16 -%% -Type: language -Subtag: hr -Description: Croatian -Added: 2005-10-16 -Suppress-Script: Latn -Macrolanguage: sh -%% -Type: language -Subtag: ht -Description: Haitian -Description: Haitian Creole -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: hu -Description: Hungarian -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: hy -Description: Armenian -Added: 2005-10-16 -Suppress-Script: Armn -Comments: see also hyw -%% -Type: language -Subtag: hz -Description: Herero -Added: 2005-10-16 -%% -Type: language -Subtag: ia -Description: Interlingua (IALA) -Description: Interlingua (International Auxiliary Language - Association) -Added: 2005-10-16 -%% -Type: language -Subtag: id -Description: Indonesian -Added: 2005-10-16 -Suppress-Script: Latn -Macrolanguage: ms -%% -Type: language -Subtag: ie -Description: Interlingue -Description: Occidental -Added: 2005-10-16 -%% -Type: language -Subtag: ig -Description: Igbo -Added: 2005-10-16 -%% -Type: language -Subtag: ii -Description: Sichuan Yi -Description: Nuosu -Added: 2005-10-16 -%% -Type: language -Subtag: ik -Description: Inupiaq -Added: 2005-10-16 -Scope: macrolanguage -%% -Type: language -Subtag: in -Description: Indonesian -Added: 2005-10-16 -Deprecated: 1989-01-01 -Preferred-Value: id -Suppress-Script: Latn -Macrolanguage: ms -%% -Type: language -Subtag: io -Description: Ido -Added: 2005-10-16 -%% -Type: language -Subtag: is -Description: Icelandic -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: it -Description: Italian -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: iu -Description: Inuktitut -Added: 2005-10-16 -Scope: macrolanguage -%% -Type: language -Subtag: iw -Description: Hebrew -Added: 2005-10-16 -Deprecated: 1989-01-01 -Preferred-Value: he -Suppress-Script: Hebr -%% -Type: language -Subtag: ja -Description: Japanese -Added: 2005-10-16 -Suppress-Script: Jpan -%% -Type: language -Subtag: ji -Description: Yiddish -Added: 2005-10-16 -Deprecated: 1989-01-01 -Preferred-Value: yi -%% -Type: language -Subtag: jv -Description: Javanese -Added: 2005-10-16 -%% -Type: language -Subtag: jw -Description: Javanese -Added: 2005-10-16 -Deprecated: 2001-08-13 -Preferred-Value: jv -Comments: published by error in Table 1 of ISO 639:1988 -%% -Type: language -Subtag: ka -Description: Georgian -Added: 2005-10-16 -Suppress-Script: Geor -%% -Type: language -Subtag: kg -Description: Kongo -Added: 2005-10-16 -Scope: macrolanguage -%% -Type: language -Subtag: ki -Description: Kikuyu -Description: Gikuyu -Added: 2005-10-16 -%% -Type: language -Subtag: kj -Description: Kuanyama -Description: Kwanyama -Added: 2005-10-16 -%% -Type: language -Subtag: kk -Description: Kazakh -Added: 2005-10-16 -Suppress-Script: Cyrl -%% -Type: language -Subtag: kl -Description: Kalaallisut -Description: Greenlandic -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: km -Description: Khmer -Description: Central Khmer -Added: 2005-10-16 -Suppress-Script: Khmr -%% -Type: language -Subtag: kn -Description: Kannada -Added: 2005-10-16 -Suppress-Script: Knda -%% -Type: language -Subtag: ko -Description: Korean -Added: 2005-10-16 -Suppress-Script: Kore -%% -Type: language -Subtag: kr -Description: Kanuri -Added: 2005-10-16 -Scope: macrolanguage -%% -Type: language -Subtag: ks -Description: Kashmiri -Added: 2005-10-16 -%% -Type: language -Subtag: ku -Description: Kurdish -Added: 2005-10-16 -Scope: macrolanguage -%% -Type: language -Subtag: kv -Description: Komi -Added: 2005-10-16 -Scope: macrolanguage -%% -Type: language -Subtag: kw -Description: Cornish -Added: 2005-10-16 -%% -Type: language -Subtag: ky -Description: Kirghiz -Description: Kyrgyz -Added: 2005-10-16 -%% -Type: language -Subtag: la -Description: Latin -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: lb -Description: Luxembourgish -Description: Letzeburgesch -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: lg -Description: Ganda -Description: Luganda -Added: 2005-10-16 -%% -Type: language -Subtag: li -Description: Limburgan -Description: Limburger -Description: Limburgish -Added: 2005-10-16 -%% -Type: language -Subtag: ln -Description: Lingala -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: lo -Description: Lao -Added: 2005-10-16 -Suppress-Script: Laoo -%% -Type: language -Subtag: lt -Description: Lithuanian -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: lu -Description: Luba-Katanga -Added: 2005-10-16 -%% -Type: language -Subtag: lv -Description: Latvian -Added: 2005-10-16 -Suppress-Script: Latn -Scope: macrolanguage -%% -Type: language -Subtag: mg -Description: Malagasy -Added: 2005-10-16 -Suppress-Script: Latn -Scope: macrolanguage -%% -Type: language -Subtag: mh -Description: Marshallese -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: mi -Description: Maori -Added: 2005-10-16 -%% -Type: language -Subtag: mk -Description: Macedonian -Added: 2005-10-16 -Suppress-Script: Cyrl -%% -Type: language -Subtag: ml -Description: Malayalam -Added: 2005-10-16 -Suppress-Script: Mlym -%% -Type: language -Subtag: mn -Description: Mongolian -Added: 2005-10-16 -Scope: macrolanguage -%% -Type: language -Subtag: mo -Description: Moldavian -Description: Moldovan -Added: 2005-10-16 -Deprecated: 2008-11-22 -Preferred-Value: ro -Suppress-Script: Latn -%% -Type: language -Subtag: mr -Description: Marathi -Added: 2005-10-16 -Suppress-Script: Deva -%% -Type: language -Subtag: ms -Description: Malay (macrolanguage) -Added: 2005-10-16 -Suppress-Script: Latn -Scope: macrolanguage -%% -Type: language -Subtag: mt -Description: Maltese -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: my -Description: Burmese -Added: 2005-10-16 -Suppress-Script: Mymr -%% -Type: language -Subtag: na -Description: Nauru -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: nb -Description: Norwegian Bokmål -Added: 2005-10-16 -Suppress-Script: Latn -Macrolanguage: no -%% -Type: language -Subtag: nd -Description: North Ndebele -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: ne -Description: Nepali (macrolanguage) -Added: 2005-10-16 -Suppress-Script: Deva -Scope: macrolanguage -%% -Type: language -Subtag: ng -Description: Ndonga -Added: 2005-10-16 -%% -Type: language -Subtag: nl -Description: Dutch -Description: Flemish -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: nn -Description: Norwegian Nynorsk -Added: 2005-10-16 -Suppress-Script: Latn -Macrolanguage: no -%% -Type: language -Subtag: no -Description: Norwegian -Added: 2005-10-16 -Suppress-Script: Latn -Scope: macrolanguage -%% -Type: language -Subtag: nr -Description: South Ndebele -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: nv -Description: Navajo -Description: Navaho -Added: 2005-10-16 -%% -Type: language -Subtag: ny -Description: Chichewa -Description: Chewa -Description: Nyanja -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: oc -Description: Occitan (post 1500) -Added: 2005-10-16 -%% -Type: language -Subtag: oj -Description: Ojibwa -Added: 2005-10-16 -Scope: macrolanguage -%% -Type: language -Subtag: om -Description: Oromo -Added: 2005-10-16 -Suppress-Script: Latn -Scope: macrolanguage -%% -Type: language -Subtag: or -Description: Oriya (macrolanguage) -Description: Odia (macrolanguage) -Added: 2005-10-16 -Suppress-Script: Orya -Scope: macrolanguage -%% -Type: language -Subtag: os -Description: Iron Ossetic -Description: Iron -Description: Iron Ossetian -Description: Ossetian -Description: Ossetic -Added: 2005-10-16 -%% -Type: language -Subtag: pa -Description: Panjabi -Description: Punjabi -Added: 2005-10-16 -Suppress-Script: Guru -%% -Type: language -Subtag: pi -Description: Pali -Added: 2005-10-16 -%% -Type: language -Subtag: pl -Description: Polish -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: ps -Description: Pushto -Description: Pashto -Added: 2005-10-16 -Suppress-Script: Arab -Scope: macrolanguage -%% -Type: language -Subtag: pt -Description: Portuguese -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: qu -Description: Quechua -Added: 2005-10-16 -Suppress-Script: Latn -Scope: macrolanguage -%% -Type: language -Subtag: rm -Description: Romansh -Suppress-Script: Latn -Added: 2005-10-16 -%% -Type: language -Subtag: rn -Description: Rundi -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: ro -Description: Romanian -Description: Moldavian -Description: Moldovan -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: ru -Description: Russian -Added: 2005-10-16 -Suppress-Script: Cyrl -%% -Type: language -Subtag: rw -Description: Kinyarwanda -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: sa -Description: Sanskrit -Added: 2005-10-16 -Scope: macrolanguage -%% -Type: language -Subtag: sc -Description: Sardinian -Added: 2005-10-16 -Scope: macrolanguage -%% -Type: language -Subtag: sd -Description: Sindhi -Added: 2005-10-16 -%% -Type: language -Subtag: se -Description: Northern Sami -Added: 2005-10-16 -%% -Type: language -Subtag: sg -Description: Sango -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: sh -Description: Serbo-Croatian -Added: 2005-10-16 -Scope: macrolanguage -Comments: sr, hr, bs are preferred for most modern uses -%% -Type: language -Subtag: si -Description: Sinhala -Description: Sinhalese -Added: 2005-10-16 -Suppress-Script: Sinh -%% -Type: language -Subtag: sk -Description: Slovak -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: sl -Description: Slovenian -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: sm -Description: Samoan -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: sn -Description: Shona -Added: 2005-10-16 -%% -Type: language -Subtag: so -Description: Somali -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: sq -Description: Albanian -Added: 2005-10-16 -Suppress-Script: Latn -Scope: macrolanguage -%% -Type: language -Subtag: sr -Description: Serbian -Added: 2005-10-16 -Macrolanguage: sh -Comments: see cnr for Montenegrin -%% -Type: language -Subtag: ss -Description: Swati -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: st -Description: Southern Sotho -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: su -Description: Sundanese -Added: 2005-10-16 -%% -Type: language -Subtag: sv -Description: Swedish -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: sw -Description: Swahili (macrolanguage) -Added: 2005-10-16 -Suppress-Script: Latn -Scope: macrolanguage -%% -Type: language -Subtag: ta -Description: Tamil -Added: 2005-10-16 -Suppress-Script: Taml -%% -Type: language -Subtag: te -Description: Telugu -Added: 2005-10-16 -Suppress-Script: Telu -%% -Type: language -Subtag: tg -Description: Tajik -Added: 2005-10-16 -%% -Type: language -Subtag: th -Description: Thai -Added: 2005-10-16 -Suppress-Script: Thai -%% -Type: language -Subtag: ti -Description: Tigrinya -Added: 2005-10-16 -Suppress-Script: Ethi -%% -Type: language -Subtag: tk -Description: Turkmen -Added: 2005-10-16 -%% -Type: language -Subtag: tl -Description: Tagalog -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: tn -Description: Tswana -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: to -Description: Tonga (Tonga Islands) -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: tr -Description: Turkish -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: ts -Description: Tsonga -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: tt -Description: Tatar -Added: 2005-10-16 -%% -Type: language -Subtag: tw -Description: Twi -Added: 2005-10-16 -Macrolanguage: ak -%% -Type: language -Subtag: ty -Description: Tahitian -Added: 2005-10-16 -%% -Type: language -Subtag: ug -Description: Uighur -Description: Uyghur -Added: 2005-10-16 -%% -Type: language -Subtag: uk -Description: Ukrainian -Added: 2005-10-16 -Suppress-Script: Cyrl -%% -Type: language -Subtag: ur -Description: Urdu -Added: 2005-10-16 -Suppress-Script: Arab -%% -Type: language -Subtag: uz -Description: Uzbek -Added: 2005-10-16 -Scope: macrolanguage -%% -Type: language -Subtag: ve -Description: Venda -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: vi -Description: Vietnamese -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: vo -Description: Volapük -Added: 2005-10-16 -%% -Type: language -Subtag: wa -Description: Walloon -Added: 2005-10-16 -%% -Type: language -Subtag: wo -Description: Wolof -Added: 2005-10-16 -%% -Type: language -Subtag: xh -Description: Xhosa -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: yi -Description: Yiddish -Added: 2005-10-16 -Suppress-Script: Hebr -Scope: macrolanguage -%% -Type: language -Subtag: yo -Description: Yoruba -Added: 2005-10-16 -%% -Type: language -Subtag: za -Description: Zhuang -Description: Chuang -Added: 2005-10-16 -Scope: macrolanguage -%% -Type: language -Subtag: zh -Description: Chinese -Added: 2005-10-16 -Scope: macrolanguage -%% -Type: language -Subtag: zu -Description: Zulu -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: aaa -Description: Ghotuo -Added: 2009-07-29 -%% -Type: language -Subtag: aab -Description: Alumu-Tesu -Added: 2009-07-29 -%% -Type: language -Subtag: aac -Description: Ari -Added: 2009-07-29 -%% -Type: language -Subtag: aad -Description: Amal -Added: 2009-07-29 -%% -Type: language -Subtag: aae -Description: Arbëreshë Albanian -Added: 2009-07-29 -Macrolanguage: sq -%% -Type: language -Subtag: aaf -Description: Aranadan -Added: 2009-07-29 -%% -Type: language -Subtag: aag -Description: Ambrak -Added: 2009-07-29 -%% -Type: language -Subtag: aah -Description: Abu' Arapesh -Added: 2009-07-29 -%% -Type: language -Subtag: aai -Description: Arifama-Miniafia -Added: 2009-07-29 -%% -Type: language -Subtag: aak -Description: Ankave -Added: 2009-07-29 -%% -Type: language -Subtag: aal -Description: Afade -Added: 2009-07-29 -%% -Type: language -Subtag: aam -Description: Aramanik -Added: 2009-07-29 -Deprecated: 2015-02-12 -Preferred-Value: aas -%% -Type: language -Subtag: aan -Description: Anambé -Added: 2009-07-29 -%% -Type: language -Subtag: aao -Description: Algerian Saharan Arabic -Added: 2009-07-29 -Macrolanguage: ar -%% -Type: language -Subtag: aap -Description: Pará Arára -Added: 2009-07-29 -%% -Type: language -Subtag: aaq -Description: Eastern Abnaki -Added: 2009-07-29 -%% -Type: language -Subtag: aas -Description: Aasáx -Added: 2009-07-29 -%% -Type: language -Subtag: aat -Description: Arvanitika Albanian -Added: 2009-07-29 -Macrolanguage: sq -%% -Type: language -Subtag: aau -Description: Abau -Added: 2009-07-29 -%% -Type: language -Subtag: aav -Description: Austro-Asiatic languages -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: aaw -Description: Solong -Added: 2009-07-29 -%% -Type: language -Subtag: aax -Description: Mandobo Atas -Added: 2009-07-29 -%% -Type: language -Subtag: aaz -Description: Amarasi -Added: 2009-07-29 -%% -Type: language -Subtag: aba -Description: Abé -Added: 2009-07-29 -%% -Type: language -Subtag: abb -Description: Bankon -Added: 2009-07-29 -%% -Type: language -Subtag: abc -Description: Ambala Ayta -Added: 2009-07-29 -%% -Type: language -Subtag: abd -Description: Manide -Added: 2009-07-29 -%% -Type: language -Subtag: abe -Description: Western Abnaki -Added: 2009-07-29 -%% -Type: language -Subtag: abf -Description: Abai Sungai -Added: 2009-07-29 -%% -Type: language -Subtag: abg -Description: Abaga -Added: 2009-07-29 -%% -Type: language -Subtag: abh -Description: Tajiki Arabic -Added: 2009-07-29 -Macrolanguage: ar -%% -Type: language -Subtag: abi -Description: Abidji -Added: 2009-07-29 -%% -Type: language -Subtag: abj -Description: Aka-Bea -Added: 2009-07-29 -%% -Type: language -Subtag: abl -Description: Lampung Nyo -Added: 2009-07-29 -%% -Type: language -Subtag: abm -Description: Abanyom -Added: 2009-07-29 -%% -Type: language -Subtag: abn -Description: Abua -Added: 2009-07-29 -%% -Type: language -Subtag: abo -Description: Abon -Added: 2009-07-29 -%% -Type: language -Subtag: abp -Description: Abellen Ayta -Added: 2009-07-29 -%% -Type: language -Subtag: abq -Description: Abaza -Added: 2009-07-29 -%% -Type: language -Subtag: abr -Description: Abron -Added: 2009-07-29 -%% -Type: language -Subtag: abs -Description: Ambonese Malay -Added: 2009-07-29 -%% -Type: language -Subtag: abt -Description: Ambulas -Added: 2009-07-29 -%% -Type: language -Subtag: abu -Description: Abure -Added: 2009-07-29 -%% -Type: language -Subtag: abv -Description: Baharna Arabic -Added: 2009-07-29 -Macrolanguage: ar -%% -Type: language -Subtag: abw -Description: Pal -Added: 2009-07-29 -%% -Type: language -Subtag: abx -Description: Inabaknon -Added: 2009-07-29 -%% -Type: language -Subtag: aby -Description: Aneme Wake -Added: 2009-07-29 -%% -Type: language -Subtag: abz -Description: Abui -Added: 2009-07-29 -%% -Type: language -Subtag: aca -Description: Achagua -Added: 2009-07-29 -%% -Type: language -Subtag: acb -Description: Áncá -Added: 2009-07-29 -%% -Type: language -Subtag: acd -Description: Gikyode -Added: 2009-07-29 -%% -Type: language -Subtag: ace -Description: Achinese -Added: 2005-10-16 -%% -Type: language -Subtag: acf -Description: Saint Lucian Creole French -Added: 2009-07-29 -%% -Type: language -Subtag: ach -Description: Acoli -Added: 2005-10-16 -%% -Type: language -Subtag: aci -Description: Aka-Cari -Added: 2009-07-29 -%% -Type: language -Subtag: ack -Description: Aka-Kora -Added: 2009-07-29 -%% -Type: language -Subtag: acl -Description: Akar-Bale -Added: 2009-07-29 -%% -Type: language -Subtag: acm -Description: Mesopotamian Arabic -Added: 2009-07-29 -Macrolanguage: ar -%% -Type: language -Subtag: acn -Description: Achang -Added: 2009-07-29 -%% -Type: language -Subtag: acp -Description: Eastern Acipa -Added: 2009-07-29 -%% -Type: language -Subtag: acq -Description: Ta'izzi-Adeni Arabic -Added: 2009-07-29 -Macrolanguage: ar -%% -Type: language -Subtag: acr -Description: Achi -Added: 2009-07-29 -%% -Type: language -Subtag: acs -Description: Acroá -Added: 2009-07-29 -%% -Type: language -Subtag: act -Description: Achterhoeks -Added: 2009-07-29 -%% -Type: language -Subtag: acu -Description: Achuar-Shiwiar -Added: 2009-07-29 -%% -Type: language -Subtag: acv -Description: Achumawi -Added: 2009-07-29 -%% -Type: language -Subtag: acw -Description: Hijazi Arabic -Added: 2009-07-29 -Macrolanguage: ar -%% -Type: language -Subtag: acx -Description: Omani Arabic -Added: 2009-07-29 -Macrolanguage: ar -%% -Type: language -Subtag: acy -Description: Cypriot Arabic -Added: 2009-07-29 -Macrolanguage: ar -%% -Type: language -Subtag: acz -Description: Acheron -Added: 2009-07-29 -%% -Type: language -Subtag: ada -Description: Adangme -Added: 2005-10-16 -%% -Type: language -Subtag: adb -Description: Atauran -Added: 2009-07-29 -%% -Type: language -Subtag: add -Description: Lidzonka -Description: Dzodinka -Added: 2009-07-29 -%% -Type: language -Subtag: ade -Description: Adele -Added: 2009-07-29 -%% -Type: language -Subtag: adf -Description: Dhofari Arabic -Added: 2009-07-29 -Macrolanguage: ar -%% -Type: language -Subtag: adg -Description: Andegerebinha -Added: 2009-07-29 -%% -Type: language -Subtag: adh -Description: Adhola -Added: 2009-07-29 -%% -Type: language -Subtag: adi -Description: Adi -Added: 2009-07-29 -%% -Type: language -Subtag: adj -Description: Adioukrou -Added: 2009-07-29 -%% -Type: language -Subtag: adl -Description: Galo -Added: 2009-07-29 -%% -Type: language -Subtag: adn -Description: Adang -Added: 2009-07-29 -%% -Type: language -Subtag: ado -Description: Abu -Added: 2009-07-29 -%% -Type: language -Subtag: adp -Description: Adap -Added: 2009-07-29 -Deprecated: 2015-02-12 -Preferred-Value: dz -%% -Type: language -Subtag: adq -Description: Adangbe -Added: 2009-07-29 -%% -Type: language -Subtag: adr -Description: Adonara -Added: 2009-07-29 -%% -Type: language -Subtag: ads -Description: Adamorobe Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: adt -Description: Adnyamathanha -Added: 2009-07-29 -%% -Type: language -Subtag: adu -Description: Aduge -Added: 2009-07-29 -%% -Type: language -Subtag: adw -Description: Amundava -Added: 2009-07-29 -%% -Type: language -Subtag: adx -Description: Amdo Tibetan -Added: 2009-07-29 -%% -Type: language -Subtag: ady -Description: Adyghe -Description: Adygei -Added: 2005-10-16 -%% -Type: language -Subtag: adz -Description: Adzera -Added: 2009-07-29 -%% -Type: language -Subtag: aea -Description: Areba -Added: 2009-07-29 -%% -Type: language -Subtag: aeb -Description: Tunisian Arabic -Added: 2009-07-29 -Macrolanguage: ar -%% -Type: language -Subtag: aec -Description: Saidi Arabic -Added: 2009-07-29 -Macrolanguage: ar -%% -Type: language -Subtag: aed -Description: Argentine Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: aee -Description: Northeast Pashai -Description: Northeast Pashayi -Added: 2009-07-29 -%% -Type: language -Subtag: aek -Description: Haeke -Added: 2009-07-29 -%% -Type: language -Subtag: ael -Description: Ambele -Added: 2009-07-29 -%% -Type: language -Subtag: aem -Description: Arem -Added: 2009-07-29 -%% -Type: language -Subtag: aen -Description: Armenian Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: aeq -Description: Aer -Added: 2009-07-29 -%% -Type: language -Subtag: aer -Description: Eastern Arrernte -Added: 2009-07-29 -%% -Type: language -Subtag: aes -Description: Alsea -Added: 2009-07-29 -%% -Type: language -Subtag: aeu -Description: Akeu -Added: 2009-07-29 -%% -Type: language -Subtag: aew -Description: Ambakich -Added: 2009-07-29 -%% -Type: language -Subtag: aey -Description: Amele -Added: 2009-07-29 -%% -Type: language -Subtag: aez -Description: Aeka -Added: 2009-07-29 -%% -Type: language -Subtag: afa -Description: Afro-Asiatic languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: afb -Description: Gulf Arabic -Added: 2009-07-29 -Macrolanguage: ar -%% -Type: language -Subtag: afd -Description: Andai -Added: 2009-07-29 -%% -Type: language -Subtag: afe -Description: Putukwam -Added: 2009-07-29 -%% -Type: language -Subtag: afg -Description: Afghan Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: afh -Description: Afrihili -Added: 2005-10-16 -%% -Type: language -Subtag: afi -Description: Akrukay -Description: Chini -Added: 2009-07-29 -%% -Type: language -Subtag: afk -Description: Nanubae -Added: 2009-07-29 -%% -Type: language -Subtag: afn -Description: Defaka -Added: 2009-07-29 -%% -Type: language -Subtag: afo -Description: Eloyi -Added: 2009-07-29 -%% -Type: language -Subtag: afp -Description: Tapei -Added: 2009-07-29 -%% -Type: language -Subtag: afs -Description: Afro-Seminole Creole -Added: 2009-07-29 -%% -Type: language -Subtag: aft -Description: Afitti -Added: 2009-07-29 -%% -Type: language -Subtag: afu -Description: Awutu -Added: 2009-07-29 -%% -Type: language -Subtag: afz -Description: Obokuitai -Added: 2009-07-29 -%% -Type: language -Subtag: aga -Description: Aguano -Added: 2009-07-29 -%% -Type: language -Subtag: agb -Description: Legbo -Added: 2009-07-29 -%% -Type: language -Subtag: agc -Description: Agatu -Added: 2009-07-29 -%% -Type: language -Subtag: agd -Description: Agarabi -Added: 2009-07-29 -%% -Type: language -Subtag: age -Description: Angal -Added: 2009-07-29 -%% -Type: language -Subtag: agf -Description: Arguni -Added: 2009-07-29 -%% -Type: language -Subtag: agg -Description: Angor -Added: 2009-07-29 -%% -Type: language -Subtag: agh -Description: Ngelima -Added: 2009-07-29 -%% -Type: language -Subtag: agi -Description: Agariya -Added: 2009-07-29 -%% -Type: language -Subtag: agj -Description: Argobba -Added: 2009-07-29 -%% -Type: language -Subtag: agk -Description: Isarog Agta -Added: 2009-07-29 -%% -Type: language -Subtag: agl -Description: Fembe -Added: 2009-07-29 -%% -Type: language -Subtag: agm -Description: Angaataha -Added: 2009-07-29 -%% -Type: language -Subtag: agn -Description: Agutaynen -Added: 2009-07-29 -%% -Type: language -Subtag: ago -Description: Tainae -Added: 2009-07-29 -%% -Type: language -Subtag: agp -Description: Paranan -Added: 2009-07-29 -Deprecated: 2010-03-11 -Comments: see apf, prf -%% -Type: language -Subtag: agq -Description: Aghem -Added: 2009-07-29 -%% -Type: language -Subtag: agr -Description: Aguaruna -Added: 2009-07-29 -%% -Type: language -Subtag: ags -Description: Esimbi -Added: 2009-07-29 -%% -Type: language -Subtag: agt -Description: Central Cagayan Agta -Added: 2009-07-29 -%% -Type: language -Subtag: agu -Description: Aguacateco -Added: 2009-07-29 -%% -Type: language -Subtag: agv -Description: Remontado Dumagat -Added: 2009-07-29 -%% -Type: language -Subtag: agw -Description: Kahua -Added: 2009-07-29 -%% -Type: language -Subtag: agx -Description: Aghul -Added: 2009-07-29 -%% -Type: language -Subtag: agy -Description: Southern Alta -Added: 2009-07-29 -%% -Type: language -Subtag: agz -Description: Mt. Iriga Agta -Added: 2009-07-29 -%% -Type: language -Subtag: aha -Description: Ahanta -Added: 2009-07-29 -%% -Type: language -Subtag: ahb -Description: Axamb -Added: 2009-07-29 -%% -Type: language -Subtag: ahg -Description: Qimant -Added: 2009-07-29 -%% -Type: language -Subtag: ahh -Description: Aghu -Added: 2009-07-29 -%% -Type: language -Subtag: ahi -Description: Tiagbamrin Aizi -Added: 2009-07-29 -%% -Type: language -Subtag: ahk -Description: Akha -Added: 2009-07-29 -%% -Type: language -Subtag: ahl -Description: Igo -Added: 2009-07-29 -%% -Type: language -Subtag: ahm -Description: Mobumrin Aizi -Added: 2009-07-29 -%% -Type: language -Subtag: ahn -Description: Àhàn -Added: 2009-07-29 -%% -Type: language -Subtag: aho -Description: Ahom -Added: 2009-07-29 -%% -Type: language -Subtag: ahp -Description: Aproumu Aizi -Added: 2009-07-29 -%% -Type: language -Subtag: ahr -Description: Ahirani -Added: 2009-07-29 -%% -Type: language -Subtag: ahs -Description: Ashe -Added: 2009-07-29 -%% -Type: language -Subtag: aht -Description: Ahtena -Added: 2009-07-29 -%% -Type: language -Subtag: aia -Description: Arosi -Added: 2009-07-29 -%% -Type: language -Subtag: aib -Description: Ainu (China) -Added: 2009-07-29 -%% -Type: language -Subtag: aic -Description: Ainbai -Added: 2009-07-29 -%% -Type: language -Subtag: aid -Description: Alngith -Added: 2009-07-29 -%% -Type: language -Subtag: aie -Description: Amara -Added: 2009-07-29 -%% -Type: language -Subtag: aif -Description: Agi -Added: 2009-07-29 -%% -Type: language -Subtag: aig -Description: Antigua and Barbuda Creole English -Added: 2009-07-29 -%% -Type: language -Subtag: aih -Description: Ai-Cham -Added: 2009-07-29 -%% -Type: language -Subtag: aii -Description: Assyrian Neo-Aramaic -Added: 2009-07-29 -Macrolanguage: syr -%% -Type: language -Subtag: aij -Description: Lishanid Noshan -Added: 2009-07-29 -%% -Type: language -Subtag: aik -Description: Ake -Added: 2009-07-29 -%% -Type: language -Subtag: ail -Description: Aimele -Added: 2009-07-29 -%% -Type: language -Subtag: aim -Description: Aimol -Added: 2009-07-29 -%% -Type: language -Subtag: ain -Description: Ainu (Japan) -Added: 2005-10-16 -%% -Type: language -Subtag: aio -Description: Aiton -Added: 2009-07-29 -%% -Type: language -Subtag: aip -Description: Burumakok -Added: 2009-07-29 -%% -Type: language -Subtag: aiq -Description: Aimaq -Added: 2009-07-29 -%% -Type: language -Subtag: air -Description: Airoran -Added: 2009-07-29 -%% -Type: language -Subtag: ais -Description: Nataoran Amis -Added: 2009-07-29 -Deprecated: 2019-04-16 -Comments: see ami, szy -%% -Type: language -Subtag: ait -Description: Arikem -Added: 2009-07-29 -%% -Type: language -Subtag: aiw -Description: Aari -Added: 2009-07-29 -%% -Type: language -Subtag: aix -Description: Aighon -Added: 2009-07-29 -%% -Type: language -Subtag: aiy -Description: Ali -Added: 2009-07-29 -%% -Type: language -Subtag: aja -Description: Aja (South Sudan) -Added: 2009-07-29 -%% -Type: language -Subtag: ajg -Description: Aja (Benin) -Added: 2009-07-29 -%% -Type: language -Subtag: aji -Description: Ajië -Added: 2009-07-29 -%% -Type: language -Subtag: ajn -Description: Andajin -Added: 2012-08-12 -%% -Type: language -Subtag: ajp -Description: South Levantine Arabic -Added: 2009-07-29 -Deprecated: 2023-03-17 -Preferred-Value: apc -Macrolanguage: ar -%% -Type: language -Subtag: ajs -Description: Algerian Jewish Sign Language -Added: 2022-02-25 -%% -Type: language -Subtag: ajt -Description: Judeo-Tunisian Arabic -Added: 2009-07-29 -Deprecated: 2022-02-25 -Preferred-Value: aeb -Macrolanguage: jrb -%% -Type: language -Subtag: aju -Description: Judeo-Moroccan Arabic -Added: 2009-07-29 -Macrolanguage: jrb -%% -Type: language -Subtag: ajw -Description: Ajawa -Added: 2009-07-29 -%% -Type: language -Subtag: ajz -Description: Amri Karbi -Added: 2009-07-29 -%% -Type: language -Subtag: akb -Description: Batak Angkola -Added: 2009-07-29 -%% -Type: language -Subtag: akc -Description: Mpur -Added: 2009-07-29 -%% -Type: language -Subtag: akd -Description: Ukpet-Ehom -Added: 2009-07-29 -%% -Type: language -Subtag: ake -Description: Akawaio -Added: 2009-07-29 -%% -Type: language -Subtag: akf -Description: Akpa -Added: 2009-07-29 -%% -Type: language -Subtag: akg -Description: Anakalangu -Added: 2009-07-29 -%% -Type: language -Subtag: akh -Description: Angal Heneng -Added: 2009-07-29 -%% -Type: language -Subtag: aki -Description: Aiome -Added: 2009-07-29 -%% -Type: language -Subtag: akj -Description: Aka-Jeru -Added: 2009-07-29 -%% -Type: language -Subtag: akk -Description: Akkadian -Added: 2005-10-16 -%% -Type: language -Subtag: akl -Description: Aklanon -Added: 2009-07-29 -%% -Type: language -Subtag: akm -Description: Aka-Bo -Added: 2009-07-29 -%% -Type: language -Subtag: ako -Description: Akurio -Added: 2009-07-29 -%% -Type: language -Subtag: akp -Description: Siwu -Added: 2009-07-29 -%% -Type: language -Subtag: akq -Description: Ak -Added: 2009-07-29 -%% -Type: language -Subtag: akr -Description: Araki -Added: 2009-07-29 -%% -Type: language -Subtag: aks -Description: Akaselem -Added: 2009-07-29 -%% -Type: language -Subtag: akt -Description: Akolet -Added: 2009-07-29 -%% -Type: language -Subtag: aku -Description: Akum -Added: 2009-07-29 -%% -Type: language -Subtag: akv -Description: Akhvakh -Added: 2009-07-29 -%% -Type: language -Subtag: akw -Description: Akwa -Added: 2009-07-29 -%% -Type: language -Subtag: akx -Description: Aka-Kede -Added: 2009-07-29 -%% -Type: language -Subtag: aky -Description: Aka-Kol -Added: 2009-07-29 -%% -Type: language -Subtag: akz -Description: Alabama -Added: 2009-07-29 -%% -Type: language -Subtag: ala -Description: Alago -Added: 2009-07-29 -%% -Type: language -Subtag: alc -Description: Qawasqar -Added: 2009-07-29 -%% -Type: language -Subtag: ald -Description: Alladian -Added: 2009-07-29 -%% -Type: language -Subtag: ale -Description: Aleut -Added: 2005-10-16 -%% -Type: language -Subtag: alf -Description: Alege -Added: 2009-07-29 -%% -Type: language -Subtag: alg -Description: Algonquian languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: alh -Description: Alawa -Added: 2009-07-29 -%% -Type: language -Subtag: ali -Description: Amaimon -Added: 2009-07-29 -%% -Type: language -Subtag: alj -Description: Alangan -Added: 2009-07-29 -%% -Type: language -Subtag: alk -Description: Alak -Added: 2009-07-29 -%% -Type: language -Subtag: all -Description: Allar -Added: 2009-07-29 -%% -Type: language -Subtag: alm -Description: Amblong -Added: 2009-07-29 -%% -Type: language -Subtag: aln -Description: Gheg Albanian -Added: 2009-07-29 -Macrolanguage: sq -%% -Type: language -Subtag: alo -Description: Larike-Wakasihu -Added: 2009-07-29 -%% -Type: language -Subtag: alp -Description: Alune -Added: 2009-07-29 -%% -Type: language -Subtag: alq -Description: Algonquin -Added: 2009-07-29 -%% -Type: language -Subtag: alr -Description: Alutor -Added: 2009-07-29 -%% -Type: language -Subtag: als -Description: Tosk Albanian -Added: 2009-07-29 -Macrolanguage: sq -%% -Type: language -Subtag: alt -Description: Southern Altai -Added: 2005-10-16 -%% -Type: language -Subtag: alu -Description: 'Are'are -Added: 2009-07-29 -%% -Type: language -Subtag: alv -Description: Atlantic-Congo languages -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: alw -Description: Alaba-K’abeena -Description: Wanbasana -Added: 2009-07-29 -%% -Type: language -Subtag: alx -Description: Amol -Added: 2009-07-29 -%% -Type: language -Subtag: aly -Description: Alyawarr -Added: 2009-07-29 -%% -Type: language -Subtag: alz -Description: Alur -Added: 2009-07-29 -%% -Type: language -Subtag: ama -Description: Amanayé -Added: 2009-07-29 -%% -Type: language -Subtag: amb -Description: Ambo -Added: 2009-07-29 -%% -Type: language -Subtag: amc -Description: Amahuaca -Added: 2009-07-29 -%% -Type: language -Subtag: ame -Description: Yanesha' -Added: 2009-07-29 -%% -Type: language -Subtag: amf -Description: Hamer-Banna -Added: 2009-07-29 -%% -Type: language -Subtag: amg -Description: Amurdak -Added: 2009-07-29 -%% -Type: language -Subtag: ami -Description: Amis -Added: 2009-07-29 -%% -Type: language -Subtag: amj -Description: Amdang -Added: 2009-07-29 -%% -Type: language -Subtag: amk -Description: Ambai -Added: 2009-07-29 -%% -Type: language -Subtag: aml -Description: War-Jaintia -Added: 2009-07-29 -%% -Type: language -Subtag: amm -Description: Ama (Papua New Guinea) -Added: 2009-07-29 -%% -Type: language -Subtag: amn -Description: Amanab -Added: 2009-07-29 -%% -Type: language -Subtag: amo -Description: Amo -Added: 2009-07-29 -%% -Type: language -Subtag: amp -Description: Alamblak -Added: 2009-07-29 -%% -Type: language -Subtag: amq -Description: Amahai -Added: 2009-07-29 -%% -Type: language -Subtag: amr -Description: Amarakaeri -Added: 2009-07-29 -%% -Type: language -Subtag: ams -Description: Southern Amami-Oshima -Added: 2009-07-29 -%% -Type: language -Subtag: amt -Description: Amto -Added: 2009-07-29 -%% -Type: language -Subtag: amu -Description: Guerrero Amuzgo -Added: 2009-07-29 -%% -Type: language -Subtag: amv -Description: Ambelau -Added: 2009-07-29 -%% -Type: language -Subtag: amw -Description: Western Neo-Aramaic -Added: 2009-07-29 -%% -Type: language -Subtag: amx -Description: Anmatyerre -Added: 2009-07-29 -%% -Type: language -Subtag: amy -Description: Ami -Added: 2009-07-29 -%% -Type: language -Subtag: amz -Description: Atampaya -Added: 2009-07-29 -%% -Type: language -Subtag: ana -Description: Andaqui -Added: 2009-07-29 -%% -Type: language -Subtag: anb -Description: Andoa -Added: 2009-07-29 -%% -Type: language -Subtag: anc -Description: Ngas -Added: 2009-07-29 -%% -Type: language -Subtag: and -Description: Ansus -Added: 2009-07-29 -%% -Type: language -Subtag: ane -Description: Xârâcùù -Added: 2009-07-29 -%% -Type: language -Subtag: anf -Description: Animere -Added: 2009-07-29 -%% -Type: language -Subtag: ang -Description: Old English (ca. 450-1100) -Added: 2005-10-16 -%% -Type: language -Subtag: anh -Description: Nend -Added: 2009-07-29 -%% -Type: language -Subtag: ani -Description: Andi -Added: 2009-07-29 -%% -Type: language -Subtag: anj -Description: Anor -Added: 2009-07-29 -%% -Type: language -Subtag: ank -Description: Goemai -Added: 2009-07-29 -%% -Type: language -Subtag: anl -Description: Anu-Hkongso Chin -Added: 2009-07-29 -%% -Type: language -Subtag: anm -Description: Anal -Added: 2009-07-29 -%% -Type: language -Subtag: ann -Description: Obolo -Added: 2009-07-29 -%% -Type: language -Subtag: ano -Description: Andoque -Added: 2009-07-29 -%% -Type: language -Subtag: anp -Description: Angika -Added: 2006-03-08 -%% -Type: language -Subtag: anq -Description: Jarawa (India) -Added: 2009-07-29 -%% -Type: language -Subtag: anr -Description: Andh -Added: 2009-07-29 -%% -Type: language -Subtag: ans -Description: Anserma -Added: 2009-07-29 -%% -Type: language -Subtag: ant -Description: Antakarinya -Description: Antikarinya -Added: 2009-07-29 -%% -Type: language -Subtag: anu -Description: Anuak -Added: 2009-07-29 -%% -Type: language -Subtag: anv -Description: Denya -Added: 2009-07-29 -%% -Type: language -Subtag: anw -Description: Anaang -Added: 2009-07-29 -%% -Type: language -Subtag: anx -Description: Andra-Hus -Added: 2009-07-29 -%% -Type: language -Subtag: any -Description: Anyin -Added: 2009-07-29 -%% -Type: language -Subtag: anz -Description: Anem -Added: 2009-07-29 -%% -Type: language -Subtag: aoa -Description: Angolar -Added: 2009-07-29 -%% -Type: language -Subtag: aob -Description: Abom -Added: 2009-07-29 -%% -Type: language -Subtag: aoc -Description: Pemon -Added: 2009-07-29 -%% -Type: language -Subtag: aod -Description: Andarum -Added: 2009-07-29 -%% -Type: language -Subtag: aoe -Description: Angal Enen -Added: 2009-07-29 -%% -Type: language -Subtag: aof -Description: Bragat -Added: 2009-07-29 -%% -Type: language -Subtag: aog -Description: Angoram -Added: 2009-07-29 -%% -Type: language -Subtag: aoh -Description: Arma -Added: 2009-07-29 -Deprecated: 2020-03-28 -%% -Type: language -Subtag: aoi -Description: Anindilyakwa -Added: 2009-07-29 -%% -Type: language -Subtag: aoj -Description: Mufian -Added: 2009-07-29 -%% -Type: language -Subtag: aok -Description: Arhö -Added: 2009-07-29 -%% -Type: language -Subtag: aol -Description: Alor -Added: 2009-07-29 -%% -Type: language -Subtag: aom -Description: Ömie -Added: 2009-07-29 -%% -Type: language -Subtag: aon -Description: Bumbita Arapesh -Added: 2009-07-29 -%% -Type: language -Subtag: aor -Description: Aore -Added: 2009-07-29 -%% -Type: language -Subtag: aos -Description: Taikat -Added: 2009-07-29 -%% -Type: language -Subtag: aot -Description: Atong (India) -Description: A'tong -Added: 2009-07-29 -%% -Type: language -Subtag: aou -Description: A'ou -Added: 2012-08-12 -%% -Type: language -Subtag: aox -Description: Atorada -Added: 2009-07-29 -%% -Type: language -Subtag: aoz -Description: Uab Meto -Added: 2009-07-29 -%% -Type: language -Subtag: apa -Description: Apache languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: apb -Description: Sa'a -Added: 2009-07-29 -%% -Type: language -Subtag: apc -Description: Levantine Arabic -Added: 2009-07-29 -Macrolanguage: ar -%% -Type: language -Subtag: apd -Description: Sudanese Arabic -Added: 2009-07-29 -Macrolanguage: ar -%% -Type: language -Subtag: ape -Description: Bukiyip -Added: 2009-07-29 -%% -Type: language -Subtag: apf -Description: Pahanan Agta -Added: 2010-03-11 -%% -Type: language -Subtag: apg -Description: Ampanang -Added: 2009-07-29 -%% -Type: language -Subtag: aph -Description: Athpariya -Added: 2009-07-29 -%% -Type: language -Subtag: api -Description: Apiaká -Added: 2009-07-29 -%% -Type: language -Subtag: apj -Description: Jicarilla Apache -Added: 2009-07-29 -%% -Type: language -Subtag: apk -Description: Kiowa Apache -Added: 2009-07-29 -%% -Type: language -Subtag: apl -Description: Lipan Apache -Added: 2009-07-29 -%% -Type: language -Subtag: apm -Description: Mescalero-Chiricahua Apache -Added: 2009-07-29 -%% -Type: language -Subtag: apn -Description: Apinayé -Added: 2009-07-29 -%% -Type: language -Subtag: apo -Description: Ambul -Added: 2009-07-29 -%% -Type: language -Subtag: app -Description: Apma -Added: 2009-07-29 -%% -Type: language -Subtag: apq -Description: A-Pucikwar -Added: 2009-07-29 -%% -Type: language -Subtag: apr -Description: Arop-Lokep -Added: 2009-07-29 -%% -Type: language -Subtag: aps -Description: Arop-Sissano -Added: 2009-07-29 -%% -Type: language -Subtag: apt -Description: Apatani -Added: 2009-07-29 -%% -Type: language -Subtag: apu -Description: Apurinã -Added: 2009-07-29 -%% -Type: language -Subtag: apv -Description: Alapmunte -Added: 2009-07-29 -%% -Type: language -Subtag: apw -Description: Western Apache -Added: 2009-07-29 -%% -Type: language -Subtag: apx -Description: Aputai -Added: 2009-07-29 -%% -Type: language -Subtag: apy -Description: Apalaí -Added: 2009-07-29 -%% -Type: language -Subtag: apz -Description: Safeyoka -Added: 2009-07-29 -%% -Type: language -Subtag: aqa -Description: Alacalufan languages -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: aqc -Description: Archi -Added: 2009-07-29 -%% -Type: language -Subtag: aqd -Description: Ampari Dogon -Added: 2011-08-16 -%% -Type: language -Subtag: aqg -Description: Arigidi -Added: 2009-07-29 -%% -Type: language -Subtag: aqk -Description: Aninka -Added: 2021-02-20 -%% -Type: language -Subtag: aql -Description: Algic languages -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: aqm -Description: Atohwaim -Added: 2009-07-29 -%% -Type: language -Subtag: aqn -Description: Northern Alta -Added: 2009-07-29 -%% -Type: language -Subtag: aqp -Description: Atakapa -Added: 2009-07-29 -%% -Type: language -Subtag: aqr -Description: Arhâ -Added: 2009-07-29 -%% -Type: language -Subtag: aqt -Description: Angaité -Added: 2014-02-28 -%% -Type: language -Subtag: aqz -Description: Akuntsu -Added: 2010-03-11 -%% -Type: language -Subtag: arb -Description: Standard Arabic -Added: 2009-07-29 -Macrolanguage: ar -%% -Type: language -Subtag: arc -Description: Official Aramaic (700-300 BCE) -Description: Imperial Aramaic (700-300 BCE) -Added: 2005-10-16 -%% -Type: language -Subtag: ard -Description: Arabana -Added: 2009-07-29 -%% -Type: language -Subtag: are -Description: Western Arrarnta -Added: 2009-07-29 -%% -Type: language -Subtag: arh -Description: Arhuaco -Added: 2009-07-29 -%% -Type: language -Subtag: ari -Description: Arikara -Added: 2009-07-29 -%% -Type: language -Subtag: arj -Description: Arapaso -Added: 2009-07-29 -%% -Type: language -Subtag: ark -Description: Arikapú -Added: 2009-07-29 -%% -Type: language -Subtag: arl -Description: Arabela -Added: 2009-07-29 -%% -Type: language -Subtag: arn -Description: Mapudungun -Description: Mapuche -Added: 2005-10-16 -%% -Type: language -Subtag: aro -Description: Araona -Added: 2009-07-29 -%% -Type: language -Subtag: arp -Description: Arapaho -Added: 2005-10-16 -%% -Type: language -Subtag: arq -Description: Algerian Arabic -Added: 2009-07-29 -Macrolanguage: ar -%% -Type: language -Subtag: arr -Description: Karo (Brazil) -Added: 2009-07-29 -%% -Type: language -Subtag: ars -Description: Najdi Arabic -Added: 2009-07-29 -Macrolanguage: ar -%% -Type: language -Subtag: art -Description: Artificial languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: aru -Description: Aruá (Amazonas State) -Description: Arawá -Added: 2009-07-29 -%% -Type: language -Subtag: arv -Description: Arbore -Added: 2009-07-29 -%% -Type: language -Subtag: arw -Description: Arawak -Added: 2005-10-16 -%% -Type: language -Subtag: arx -Description: Aruá (Rodonia State) -Added: 2009-07-29 -%% -Type: language -Subtag: ary -Description: Moroccan Arabic -Added: 2009-07-29 -Macrolanguage: ar -%% -Type: language -Subtag: arz -Description: Egyptian Arabic -Added: 2009-07-29 -Macrolanguage: ar -%% -Type: language -Subtag: asa -Description: Asu (Tanzania) -Added: 2009-07-29 -%% -Type: language -Subtag: asb -Description: Assiniboine -Description: Nakoda Assiniboine -Added: 2009-07-29 -%% -Type: language -Subtag: asc -Description: Casuarina Coast Asmat -Added: 2009-07-29 -%% -Type: language -Subtag: asd -Description: Asas -Added: 2009-07-29 -Deprecated: 2019-04-16 -Preferred-Value: snz -%% -Type: language -Subtag: ase -Description: American Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: asf -Description: Auslan -Description: Australian Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: asg -Description: Cishingini -Added: 2009-07-29 -%% -Type: language -Subtag: ash -Description: Abishira -Added: 2009-07-29 -%% -Type: language -Subtag: asi -Description: Buruwai -Added: 2009-07-29 -%% -Type: language -Subtag: asj -Description: Sari -Added: 2009-07-29 -%% -Type: language -Subtag: ask -Description: Ashkun -Added: 2009-07-29 -%% -Type: language -Subtag: asl -Description: Asilulu -Added: 2009-07-29 -%% -Type: language -Subtag: asn -Description: Xingú Asuriní -Added: 2009-07-29 -%% -Type: language -Subtag: aso -Description: Dano -Added: 2009-07-29 -%% -Type: language -Subtag: asp -Description: Algerian Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: asq -Description: Austrian Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: asr -Description: Asuri -Added: 2009-07-29 -%% -Type: language -Subtag: ass -Description: Ipulo -Added: 2009-07-29 -%% -Type: language -Subtag: ast -Description: Asturian -Description: Asturleonese -Description: Bable -Description: Leonese -Added: 2005-10-16 -%% -Type: language -Subtag: asu -Description: Tocantins Asurini -Added: 2009-07-29 -%% -Type: language -Subtag: asv -Description: Asoa -Added: 2009-07-29 -%% -Type: language -Subtag: asw -Description: Australian Aborigines Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: asx -Description: Muratayak -Added: 2009-07-29 -%% -Type: language -Subtag: asy -Description: Yaosakor Asmat -Added: 2009-07-29 -%% -Type: language -Subtag: asz -Description: As -Added: 2009-07-29 -%% -Type: language -Subtag: ata -Description: Pele-Ata -Added: 2009-07-29 -%% -Type: language -Subtag: atb -Description: Zaiwa -Added: 2009-07-29 -%% -Type: language -Subtag: atc -Description: Atsahuaca -Added: 2009-07-29 -%% -Type: language -Subtag: atd -Description: Ata Manobo -Added: 2009-07-29 -%% -Type: language -Subtag: ate -Description: Atemble -Added: 2009-07-29 -%% -Type: language -Subtag: atg -Description: Ivbie North-Okpela-Arhe -Added: 2009-07-29 -%% -Type: language -Subtag: ath -Description: Athapascan languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: ati -Description: Attié -Added: 2009-07-29 -%% -Type: language -Subtag: atj -Description: Atikamekw -Description: Nehirowimowin -Added: 2009-07-29 -%% -Type: language -Subtag: atk -Description: Ati -Added: 2009-07-29 -%% -Type: language -Subtag: atl -Description: Mt. Iraya Agta -Added: 2009-07-29 -%% -Type: language -Subtag: atm -Description: Ata -Added: 2009-07-29 -%% -Type: language -Subtag: atn -Description: Ashtiani -Added: 2009-07-29 -%% -Type: language -Subtag: ato -Description: Atong (Cameroon) -Added: 2009-07-29 -%% -Type: language -Subtag: atp -Description: Pudtol Atta -Added: 2009-07-29 -%% -Type: language -Subtag: atq -Description: Aralle-Tabulahan -Added: 2009-07-29 -%% -Type: language -Subtag: atr -Description: Waimiri-Atroari -Added: 2009-07-29 -%% -Type: language -Subtag: ats -Description: Gros Ventre -Added: 2009-07-29 -%% -Type: language -Subtag: att -Description: Pamplona Atta -Added: 2009-07-29 -%% -Type: language -Subtag: atu -Description: Reel -Added: 2009-07-29 -%% -Type: language -Subtag: atv -Description: Northern Altai -Added: 2009-07-29 -%% -Type: language -Subtag: atw -Description: Atsugewi -Added: 2009-07-29 -%% -Type: language -Subtag: atx -Description: Arutani -Added: 2009-07-29 -%% -Type: language -Subtag: aty -Description: Aneityum -Added: 2009-07-29 -%% -Type: language -Subtag: atz -Description: Arta -Added: 2009-07-29 -%% -Type: language -Subtag: aua -Description: Asumboa -Added: 2009-07-29 -%% -Type: language -Subtag: aub -Description: Alugu -Added: 2009-07-29 -%% -Type: language -Subtag: auc -Description: Waorani -Added: 2009-07-29 -%% -Type: language -Subtag: aud -Description: Anuta -Added: 2009-07-29 -%% -Type: language -Subtag: aue -Description: ǂKxʼauǁʼein -Added: 2009-07-29 -Deprecated: 2015-02-12 -Preferred-Value: ktz -%% -Type: language -Subtag: auf -Description: Arauan languages -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: aug -Description: Aguna -Added: 2009-07-29 -%% -Type: language -Subtag: auh -Description: Aushi -Added: 2009-07-29 -%% -Type: language -Subtag: aui -Description: Anuki -Added: 2009-07-29 -%% -Type: language -Subtag: auj -Description: Awjilah -Added: 2009-07-29 -%% -Type: language -Subtag: auk -Description: Heyo -Added: 2009-07-29 -%% -Type: language -Subtag: aul -Description: Aulua -Added: 2009-07-29 -%% -Type: language -Subtag: aum -Description: Asu (Nigeria) -Added: 2009-07-29 -%% -Type: language -Subtag: aun -Description: Molmo One -Added: 2009-07-29 -%% -Type: language -Subtag: auo -Description: Auyokawa -Added: 2009-07-29 -%% -Type: language -Subtag: aup -Description: Makayam -Added: 2009-07-29 -%% -Type: language -Subtag: auq -Description: Anus -Description: Korur -Added: 2009-07-29 -%% -Type: language -Subtag: aur -Description: Aruek -Added: 2009-07-29 -%% -Type: language -Subtag: aus -Description: Australian languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: aut -Description: Austral -Added: 2009-07-29 -%% -Type: language -Subtag: auu -Description: Auye -Added: 2009-07-29 -%% -Type: language -Subtag: auw -Description: Awyi -Added: 2009-07-29 -%% -Type: language -Subtag: aux -Description: Aurá -Added: 2009-07-29 -%% -Type: language -Subtag: auy -Description: Awiyaana -Added: 2009-07-29 -%% -Type: language -Subtag: auz -Description: Uzbeki Arabic -Added: 2009-07-29 -Macrolanguage: ar -%% -Type: language -Subtag: avb -Description: Avau -Added: 2009-07-29 -%% -Type: language -Subtag: avd -Description: Alviri-Vidari -Added: 2009-07-29 -%% -Type: language -Subtag: avi -Description: Avikam -Added: 2009-07-29 -%% -Type: language -Subtag: avk -Description: Kotava -Added: 2009-07-29 -%% -Type: language -Subtag: avl -Description: Eastern Egyptian Bedawi Arabic -Added: 2009-07-29 -Macrolanguage: ar -%% -Type: language -Subtag: avm -Description: Angkamuthi -Added: 2012-08-12 -%% -Type: language -Subtag: avn -Description: Avatime -Added: 2009-07-29 -%% -Type: language -Subtag: avo -Description: Agavotaguerra -Added: 2009-07-29 -%% -Type: language -Subtag: avs -Description: Aushiri -Added: 2009-07-29 -%% -Type: language -Subtag: avt -Description: Au -Added: 2009-07-29 -%% -Type: language -Subtag: avu -Description: Avokaya -Added: 2009-07-29 -%% -Type: language -Subtag: avv -Description: Avá-Canoeiro -Added: 2009-07-29 -%% -Type: language -Subtag: awa -Description: Awadhi -Added: 2005-10-16 -%% -Type: language -Subtag: awb -Description: Awa (Papua New Guinea) -Added: 2009-07-29 -%% -Type: language -Subtag: awc -Description: Cicipu -Added: 2009-07-29 -%% -Type: language -Subtag: awd -Description: Arawakan languages -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: awe -Description: Awetí -Added: 2009-07-29 -%% -Type: language -Subtag: awg -Description: Anguthimri -Added: 2012-08-12 -%% -Type: language -Subtag: awh -Description: Awbono -Added: 2009-07-29 -%% -Type: language -Subtag: awi -Description: Aekyom -Added: 2009-07-29 -%% -Type: language -Subtag: awk -Description: Awabakal -Added: 2009-07-29 -%% -Type: language -Subtag: awm -Description: Arawum -Added: 2009-07-29 -%% -Type: language -Subtag: awn -Description: Awngi -Added: 2009-07-29 -%% -Type: language -Subtag: awo -Description: Awak -Added: 2009-07-29 -%% -Type: language -Subtag: awr -Description: Awera -Added: 2009-07-29 -%% -Type: language -Subtag: aws -Description: South Awyu -Added: 2009-07-29 -%% -Type: language -Subtag: awt -Description: Araweté -Added: 2009-07-29 -%% -Type: language -Subtag: awu -Description: Central Awyu -Added: 2009-07-29 -%% -Type: language -Subtag: awv -Description: Jair Awyu -Added: 2009-07-29 -%% -Type: language -Subtag: aww -Description: Awun -Added: 2009-07-29 -%% -Type: language -Subtag: awx -Description: Awara -Added: 2009-07-29 -%% -Type: language -Subtag: awy -Description: Edera Awyu -Added: 2009-07-29 -%% -Type: language -Subtag: axb -Description: Abipon -Added: 2009-07-29 -%% -Type: language -Subtag: axe -Description: Ayerrerenge -Added: 2012-08-12 -%% -Type: language -Subtag: axg -Description: Mato Grosso Arára -Added: 2009-07-29 -%% -Type: language -Subtag: axk -Description: Yaka (Central African Republic) -Added: 2009-07-29 -%% -Type: language -Subtag: axl -Description: Lower Southern Aranda -Added: 2013-09-10 -%% -Type: language -Subtag: axm -Description: Middle Armenian -Added: 2009-07-29 -%% -Type: language -Subtag: axx -Description: Xârâgurè -Added: 2009-07-29 -%% -Type: language -Subtag: aya -Description: Awar -Added: 2009-07-29 -%% -Type: language -Subtag: ayb -Description: Ayizo Gbe -Added: 2009-07-29 -%% -Type: language -Subtag: ayc -Description: Southern Aymara -Added: 2009-07-29 -Macrolanguage: ay -%% -Type: language -Subtag: ayd -Description: Ayabadhu -Added: 2009-07-29 -%% -Type: language -Subtag: aye -Description: Ayere -Added: 2009-07-29 -%% -Type: language -Subtag: ayg -Description: Ginyanga -Added: 2009-07-29 -%% -Type: language -Subtag: ayh -Description: Hadrami Arabic -Added: 2009-07-29 -Macrolanguage: ar -%% -Type: language -Subtag: ayi -Description: Leyigha -Added: 2009-07-29 -%% -Type: language -Subtag: ayk -Description: Akuku -Added: 2009-07-29 -%% -Type: language -Subtag: ayl -Description: Libyan Arabic -Added: 2009-07-29 -Macrolanguage: ar -%% -Type: language -Subtag: ayn -Description: Sanaani Arabic -Added: 2009-07-29 -Macrolanguage: ar -%% -Type: language -Subtag: ayo -Description: Ayoreo -Added: 2009-07-29 -%% -Type: language -Subtag: ayp -Description: North Mesopotamian Arabic -Added: 2009-07-29 -Macrolanguage: ar -%% -Type: language -Subtag: ayq -Description: Ayi (Papua New Guinea) -Added: 2009-07-29 -%% -Type: language -Subtag: ayr -Description: Central Aymara -Added: 2009-07-29 -Macrolanguage: ay -%% -Type: language -Subtag: ays -Description: Sorsogon Ayta -Added: 2009-07-29 -%% -Type: language -Subtag: ayt -Description: Magbukun Ayta -Added: 2009-07-29 -%% -Type: language -Subtag: ayu -Description: Ayu -Added: 2009-07-29 -%% -Type: language -Subtag: ayx -Description: Ayi (China) -Added: 2009-07-29 -Deprecated: 2011-08-16 -Preferred-Value: nun -%% -Type: language -Subtag: ayy -Description: Tayabas Ayta -Added: 2009-07-29 -Deprecated: 2020-03-28 -%% -Type: language -Subtag: ayz -Description: Mai Brat -Added: 2009-07-29 -%% -Type: language -Subtag: aza -Description: Azha -Added: 2009-07-29 -%% -Type: language -Subtag: azb -Description: South Azerbaijani -Added: 2009-07-29 -Macrolanguage: az -%% -Type: language -Subtag: azc -Description: Uto-Aztecan languages -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: azd -Description: Eastern Durango Nahuatl -Added: 2012-08-12 -%% -Type: language -Subtag: azg -Description: San Pedro Amuzgos Amuzgo -Added: 2009-07-29 -%% -Type: language -Subtag: azj -Description: North Azerbaijani -Added: 2009-07-29 -Macrolanguage: az -%% -Type: language -Subtag: azm -Description: Ipalapa Amuzgo -Added: 2009-07-29 -%% -Type: language -Subtag: azn -Description: Western Durango Nahuatl -Added: 2012-08-12 -%% -Type: language -Subtag: azo -Description: Awing -Added: 2009-07-29 -%% -Type: language -Subtag: azt -Description: Faire Atta -Added: 2009-07-29 -%% -Type: language -Subtag: azz -Description: Highland Puebla Nahuatl -Added: 2009-07-29 -%% -Type: language -Subtag: baa -Description: Babatana -Added: 2009-07-29 -%% -Type: language -Subtag: bab -Description: Bainouk-Gunyuño -Added: 2009-07-29 -%% -Type: language -Subtag: bac -Description: Badui -Added: 2009-07-29 -%% -Type: language -Subtag: bad -Description: Banda languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: bae -Description: Baré -Added: 2009-07-29 -%% -Type: language -Subtag: baf -Description: Nubaca -Added: 2009-07-29 -%% -Type: language -Subtag: bag -Description: Tuki -Added: 2009-07-29 -%% -Type: language -Subtag: bah -Description: Bahamas Creole English -Added: 2009-07-29 -%% -Type: language -Subtag: bai -Description: Bamileke languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: baj -Description: Barakai -Added: 2009-07-29 -%% -Type: language -Subtag: bal -Description: Baluchi -Added: 2005-10-16 -Scope: macrolanguage -%% -Type: language -Subtag: ban -Description: Balinese -Added: 2005-10-16 -%% -Type: language -Subtag: bao -Description: Waimaha -Added: 2009-07-29 -%% -Type: language -Subtag: bap -Description: Bantawa -Added: 2009-07-29 -%% -Type: language -Subtag: bar -Description: Bavarian -Added: 2009-07-29 -%% -Type: language -Subtag: bas -Description: Basa (Cameroon) -Added: 2005-10-16 -%% -Type: language -Subtag: bat -Description: Baltic languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: bau -Description: Bada (Nigeria) -Added: 2009-07-29 -%% -Type: language -Subtag: bav -Description: Vengo -Added: 2009-07-29 -%% -Type: language -Subtag: baw -Description: Bambili-Bambui -Added: 2009-07-29 -%% -Type: language -Subtag: bax -Description: Bamun -Added: 2009-07-29 -%% -Type: language -Subtag: bay -Description: Batuley -Added: 2009-07-29 -%% -Type: language -Subtag: baz -Description: Tunen -Added: 2009-07-29 -Deprecated: 2012-08-12 -Comments: see nvo, tvu -%% -Type: language -Subtag: bba -Description: Baatonum -Added: 2009-07-29 -%% -Type: language -Subtag: bbb -Description: Barai -Added: 2009-07-29 -%% -Type: language -Subtag: bbc -Description: Batak Toba -Added: 2009-07-29 -%% -Type: language -Subtag: bbd -Description: Bau -Added: 2009-07-29 -%% -Type: language -Subtag: bbe -Description: Bangba -Added: 2009-07-29 -%% -Type: language -Subtag: bbf -Description: Baibai -Added: 2009-07-29 -%% -Type: language -Subtag: bbg -Description: Barama -Added: 2009-07-29 -%% -Type: language -Subtag: bbh -Description: Bugan -Added: 2009-07-29 -%% -Type: language -Subtag: bbi -Description: Barombi -Added: 2009-07-29 -%% -Type: language -Subtag: bbj -Description: Ghomálá' -Added: 2009-07-29 -%% -Type: language -Subtag: bbk -Description: Babanki -Added: 2009-07-29 -%% -Type: language -Subtag: bbl -Description: Bats -Added: 2009-07-29 -%% -Type: language -Subtag: bbm -Description: Babango -Added: 2009-07-29 -%% -Type: language -Subtag: bbn -Description: Uneapa -Added: 2009-07-29 -%% -Type: language -Subtag: bbo -Description: Northern Bobo Madaré -Description: Konabéré -Added: 2009-07-29 -%% -Type: language -Subtag: bbp -Description: West Central Banda -Added: 2009-07-29 -%% -Type: language -Subtag: bbq -Description: Bamali -Added: 2009-07-29 -%% -Type: language -Subtag: bbr -Description: Girawa -Added: 2009-07-29 -%% -Type: language -Subtag: bbs -Description: Bakpinka -Added: 2009-07-29 -%% -Type: language -Subtag: bbt -Description: Mburku -Added: 2009-07-29 -%% -Type: language -Subtag: bbu -Description: Kulung (Nigeria) -Added: 2009-07-29 -%% -Type: language -Subtag: bbv -Description: Karnai -Added: 2009-07-29 -%% -Type: language -Subtag: bbw -Description: Baba -Added: 2009-07-29 -%% -Type: language -Subtag: bbx -Description: Bubia -Added: 2009-07-29 -%% -Type: language -Subtag: bby -Description: Befang -Added: 2009-07-29 -%% -Type: language -Subtag: bbz -Description: Babalia Creole Arabic -Added: 2009-07-29 -Deprecated: 2020-03-28 -Macrolanguage: ar -%% -Type: language -Subtag: bca -Description: Central Bai -Added: 2009-07-29 -%% -Type: language -Subtag: bcb -Description: Bainouk-Samik -Added: 2009-07-29 -%% -Type: language -Subtag: bcc -Description: Southern Balochi -Added: 2009-07-29 -Macrolanguage: bal -%% -Type: language -Subtag: bcd -Description: North Babar -Added: 2009-07-29 -%% -Type: language -Subtag: bce -Description: Bamenyam -Added: 2009-07-29 -%% -Type: language -Subtag: bcf -Description: Bamu -Added: 2009-07-29 -%% -Type: language -Subtag: bcg -Description: Baga Pokur -Added: 2009-07-29 -%% -Type: language -Subtag: bch -Description: Bariai -Added: 2009-07-29 -%% -Type: language -Subtag: bci -Description: Baoulé -Added: 2009-07-29 -%% -Type: language -Subtag: bcj -Description: Bardi -Added: 2009-07-29 -%% -Type: language -Subtag: bck -Description: Bunuba -Added: 2009-07-29 -%% -Type: language -Subtag: bcl -Description: Central Bikol -Added: 2009-07-29 -Macrolanguage: bik -%% -Type: language -Subtag: bcm -Description: Bannoni -Added: 2009-07-29 -%% -Type: language -Subtag: bcn -Description: Bali (Nigeria) -Added: 2009-07-29 -%% -Type: language -Subtag: bco -Description: Kaluli -Added: 2009-07-29 -%% -Type: language -Subtag: bcp -Description: Bali (Democratic Republic of Congo) -Added: 2009-07-29 -%% -Type: language -Subtag: bcq -Description: Bench -Added: 2009-07-29 -%% -Type: language -Subtag: bcr -Description: Babine -Added: 2009-07-29 -%% -Type: language -Subtag: bcs -Description: Kohumono -Added: 2009-07-29 -%% -Type: language -Subtag: bct -Description: Bendi -Added: 2009-07-29 -%% -Type: language -Subtag: bcu -Description: Awad Bing -Added: 2009-07-29 -%% -Type: language -Subtag: bcv -Description: Shoo-Minda-Nye -Added: 2009-07-29 -%% -Type: language -Subtag: bcw -Description: Bana -Added: 2009-07-29 -%% -Type: language -Subtag: bcy -Description: Bacama -Added: 2009-07-29 -%% -Type: language -Subtag: bcz -Description: Bainouk-Gunyaamolo -Added: 2009-07-29 -%% -Type: language -Subtag: bda -Description: Bayot -Added: 2009-07-29 -%% -Type: language -Subtag: bdb -Description: Basap -Added: 2009-07-29 -%% -Type: language -Subtag: bdc -Description: Emberá-Baudó -Added: 2009-07-29 -%% -Type: language -Subtag: bdd -Description: Bunama -Added: 2009-07-29 -%% -Type: language -Subtag: bde -Description: Bade -Added: 2009-07-29 -%% -Type: language -Subtag: bdf -Description: Biage -Added: 2010-03-11 -%% -Type: language -Subtag: bdg -Description: Bonggi -Added: 2009-07-29 -%% -Type: language -Subtag: bdh -Description: Baka (South Sudan) -Added: 2009-07-29 -%% -Type: language -Subtag: bdi -Description: Burun -Added: 2009-07-29 -%% -Type: language -Subtag: bdj -Description: Bai (South Sudan) -Description: Bai -Added: 2009-07-29 -%% -Type: language -Subtag: bdk -Description: Budukh -Added: 2009-07-29 -%% -Type: language -Subtag: bdl -Description: Indonesian Bajau -Added: 2009-07-29 -%% -Type: language -Subtag: bdm -Description: Buduma -Added: 2009-07-29 -%% -Type: language -Subtag: bdn -Description: Baldemu -Added: 2009-07-29 -%% -Type: language -Subtag: bdo -Description: Morom -Added: 2009-07-29 -%% -Type: language -Subtag: bdp -Description: Bende -Added: 2009-07-29 -%% -Type: language -Subtag: bdq -Description: Bahnar -Added: 2009-07-29 -%% -Type: language -Subtag: bdr -Description: West Coast Bajau -Added: 2009-07-29 -%% -Type: language -Subtag: bds -Description: Burunge -Added: 2009-07-29 -%% -Type: language -Subtag: bdt -Description: Bokoto -Added: 2009-07-29 -Macrolanguage: gba -%% -Type: language -Subtag: bdu -Description: Oroko -Added: 2009-07-29 -%% -Type: language -Subtag: bdv -Description: Bodo Parja -Added: 2009-07-29 -%% -Type: language -Subtag: bdw -Description: Baham -Added: 2009-07-29 -%% -Type: language -Subtag: bdx -Description: Budong-Budong -Added: 2009-07-29 -%% -Type: language -Subtag: bdy -Description: Bandjalang -Added: 2009-07-29 -%% -Type: language -Subtag: bdz -Description: Badeshi -Added: 2009-07-29 -%% -Type: language -Subtag: bea -Description: Beaver -Added: 2009-07-29 -%% -Type: language -Subtag: beb -Description: Bebele -Added: 2009-07-29 -%% -Type: language -Subtag: bec -Description: Iceve-Maci -Added: 2009-07-29 -%% -Type: language -Subtag: bed -Description: Bedoanas -Added: 2009-07-29 -%% -Type: language -Subtag: bee -Description: Byangsi -Added: 2009-07-29 -%% -Type: language -Subtag: bef -Description: Benabena -Added: 2009-07-29 -%% -Type: language -Subtag: beg -Description: Belait -Added: 2009-07-29 -%% -Type: language -Subtag: beh -Description: Biali -Added: 2009-07-29 -%% -Type: language -Subtag: bei -Description: Bekati' -Added: 2009-07-29 -%% -Type: language -Subtag: bej -Description: Beja -Description: Bedawiyet -Added: 2005-10-16 -%% -Type: language -Subtag: bek -Description: Bebeli -Added: 2009-07-29 -%% -Type: language -Subtag: bem -Description: Bemba (Zambia) -Added: 2005-10-16 -%% -Type: language -Subtag: beo -Description: Beami -Added: 2009-07-29 -%% -Type: language -Subtag: bep -Description: Besoa -Added: 2009-07-29 -%% -Type: language -Subtag: beq -Description: Beembe -Added: 2009-07-29 -%% -Type: language -Subtag: ber -Description: Berber languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: bes -Description: Besme -Added: 2009-07-29 -%% -Type: language -Subtag: bet -Description: Guiberoua Béte -Added: 2009-07-29 -%% -Type: language -Subtag: beu -Description: Blagar -Added: 2009-07-29 -%% -Type: language -Subtag: bev -Description: Daloa Bété -Added: 2009-07-29 -%% -Type: language -Subtag: bew -Description: Betawi -Added: 2009-07-29 -%% -Type: language -Subtag: bex -Description: Jur Modo -Added: 2009-07-29 -%% -Type: language -Subtag: bey -Description: Beli (Papua New Guinea) -Added: 2009-07-29 -%% -Type: language -Subtag: bez -Description: Bena (Tanzania) -Added: 2009-07-29 -%% -Type: language -Subtag: bfa -Description: Bari -Added: 2009-07-29 -%% -Type: language -Subtag: bfb -Description: Pauri Bareli -Added: 2009-07-29 -%% -Type: language -Subtag: bfc -Description: Panyi Bai -Description: Northern Bai -Added: 2009-07-29 -%% -Type: language -Subtag: bfd -Description: Bafut -Added: 2009-07-29 -%% -Type: language -Subtag: bfe -Description: Betaf -Description: Tena -Added: 2009-07-29 -%% -Type: language -Subtag: bff -Description: Bofi -Added: 2009-07-29 -%% -Type: language -Subtag: bfg -Description: Busang Kayan -Added: 2009-07-29 -%% -Type: language -Subtag: bfh -Description: Blafe -Added: 2009-07-29 -%% -Type: language -Subtag: bfi -Description: British Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: bfj -Description: Bafanji -Added: 2009-07-29 -%% -Type: language -Subtag: bfk -Description: Ban Khor Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: bfl -Description: Banda-Ndélé -Added: 2009-07-29 -%% -Type: language -Subtag: bfm -Description: Mmen -Added: 2009-07-29 -%% -Type: language -Subtag: bfn -Description: Bunak -Added: 2009-07-29 -%% -Type: language -Subtag: bfo -Description: Malba Birifor -Added: 2009-07-29 -%% -Type: language -Subtag: bfp -Description: Beba -Added: 2009-07-29 -%% -Type: language -Subtag: bfq -Description: Badaga -Added: 2009-07-29 -%% -Type: language -Subtag: bfr -Description: Bazigar -Added: 2009-07-29 -%% -Type: language -Subtag: bfs -Description: Southern Bai -Added: 2009-07-29 -%% -Type: language -Subtag: bft -Description: Balti -Added: 2009-07-29 -%% -Type: language -Subtag: bfu -Description: Gahri -Added: 2009-07-29 -%% -Type: language -Subtag: bfw -Description: Bondo -Added: 2009-07-29 -%% -Type: language -Subtag: bfx -Description: Bantayanon -Added: 2010-03-11 -%% -Type: language -Subtag: bfy -Description: Bagheli -Added: 2009-07-29 -%% -Type: language -Subtag: bfz -Description: Mahasu Pahari -Added: 2009-07-29 -%% -Type: language -Subtag: bga -Description: Gwamhi-Wuri -Added: 2009-07-29 -%% -Type: language -Subtag: bgb -Description: Bobongko -Added: 2009-07-29 -%% -Type: language -Subtag: bgc -Description: Haryanvi -Added: 2009-07-29 -%% -Type: language -Subtag: bgd -Description: Rathwi Bareli -Added: 2009-07-29 -%% -Type: language -Subtag: bge -Description: Bauria -Added: 2009-07-29 -%% -Type: language -Subtag: bgf -Description: Bangandu -Added: 2009-07-29 -%% -Type: language -Subtag: bgg -Description: Bugun -Added: 2009-07-29 -%% -Type: language -Subtag: bgi -Description: Giangan -Added: 2009-07-29 -%% -Type: language -Subtag: bgj -Description: Bangolan -Added: 2009-07-29 -%% -Type: language -Subtag: bgk -Description: Bit -Description: Buxinhua -Added: 2009-07-29 -%% -Type: language -Subtag: bgl -Description: Bo (Laos) -Added: 2009-07-29 -%% -Type: language -Subtag: bgm -Description: Baga Mboteni -Added: 2009-07-29 -Deprecated: 2016-05-30 -Preferred-Value: bcg -%% -Type: language -Subtag: bgn -Description: Western Balochi -Added: 2009-07-29 -Macrolanguage: bal -%% -Type: language -Subtag: bgo -Description: Baga Koga -Added: 2009-07-29 -%% -Type: language -Subtag: bgp -Description: Eastern Balochi -Added: 2009-07-29 -Macrolanguage: bal -%% -Type: language -Subtag: bgq -Description: Bagri -Added: 2009-07-29 -Macrolanguage: raj -%% -Type: language -Subtag: bgr -Description: Bawm Chin -Added: 2009-07-29 -%% -Type: language -Subtag: bgs -Description: Tagabawa -Added: 2009-07-29 -%% -Type: language -Subtag: bgt -Description: Bughotu -Added: 2009-07-29 -%% -Type: language -Subtag: bgu -Description: Mbongno -Added: 2009-07-29 -%% -Type: language -Subtag: bgv -Description: Warkay-Bipim -Added: 2009-07-29 -%% -Type: language -Subtag: bgw -Description: Bhatri -Added: 2009-07-29 -%% -Type: language -Subtag: bgx -Description: Balkan Gagauz Turkish -Added: 2009-07-29 -%% -Type: language -Subtag: bgy -Description: Benggoi -Added: 2009-07-29 -%% -Type: language -Subtag: bgz -Description: Banggai -Added: 2009-07-29 -%% -Type: language -Subtag: bha -Description: Bharia -Added: 2009-07-29 -%% -Type: language -Subtag: bhb -Description: Bhili -Added: 2009-07-29 -%% -Type: language -Subtag: bhc -Description: Biga -Added: 2009-07-29 -%% -Type: language -Subtag: bhd -Description: Bhadrawahi -Added: 2009-07-29 -%% -Type: language -Subtag: bhe -Description: Bhaya -Added: 2009-07-29 -%% -Type: language -Subtag: bhf -Description: Odiai -Added: 2009-07-29 -%% -Type: language -Subtag: bhg -Description: Binandere -Added: 2009-07-29 -%% -Type: language -Subtag: bhh -Description: Bukharic -Added: 2009-07-29 -%% -Type: language -Subtag: bhi -Description: Bhilali -Added: 2009-07-29 -%% -Type: language -Subtag: bhj -Description: Bahing -Added: 2009-07-29 -%% -Type: language -Subtag: bhk -Description: Albay Bicolano -Added: 2009-07-29 -Deprecated: 2010-03-11 -Macrolanguage: bik -Comments: see fbl, lbl, rbl, ubl -%% -Type: language -Subtag: bhl -Description: Bimin -Added: 2009-07-29 -%% -Type: language -Subtag: bhm -Description: Bathari -Added: 2009-07-29 -%% -Type: language -Subtag: bhn -Description: Bohtan Neo-Aramaic -Added: 2009-07-29 -%% -Type: language -Subtag: bho -Description: Bhojpuri -Added: 2005-10-16 -%% -Type: language -Subtag: bhp -Description: Bima -Added: 2009-07-29 -%% -Type: language -Subtag: bhq -Description: Tukang Besi South -Added: 2009-07-29 -%% -Type: language -Subtag: bhr -Description: Bara Malagasy -Added: 2009-07-29 -Macrolanguage: mg -%% -Type: language -Subtag: bhs -Description: Buwal -Added: 2009-07-29 -%% -Type: language -Subtag: bht -Description: Bhattiyali -Added: 2009-07-29 -%% -Type: language -Subtag: bhu -Description: Bhunjia -Added: 2009-07-29 -%% -Type: language -Subtag: bhv -Description: Bahau -Added: 2009-07-29 -%% -Type: language -Subtag: bhw -Description: Biak -Added: 2009-07-29 -%% -Type: language -Subtag: bhx -Description: Bhalay -Added: 2009-07-29 -%% -Type: language -Subtag: bhy -Description: Bhele -Added: 2009-07-29 -%% -Type: language -Subtag: bhz -Description: Bada (Indonesia) -Added: 2009-07-29 -%% -Type: language -Subtag: bia -Description: Badimaya -Added: 2009-07-29 -%% -Type: language -Subtag: bib -Description: Bissa -Description: Bisa -Added: 2009-07-29 -%% -Type: language -Subtag: bic -Description: Bikaru -Added: 2009-07-29 -Deprecated: 2021-02-20 -Preferred-Value: bir -%% -Type: language -Subtag: bid -Description: Bidiyo -Added: 2009-07-29 -%% -Type: language -Subtag: bie -Description: Bepour -Added: 2009-07-29 -%% -Type: language -Subtag: bif -Description: Biafada -Added: 2009-07-29 -%% -Type: language -Subtag: big -Description: Biangai -Added: 2009-07-29 -%% -Type: language -Subtag: bih -Description: Bihari languages -Added: 2026-06-14 -Scope: collection -%% -Type: language -Subtag: bij -Description: Vaghat-Ya-Bijim-Legeri -Added: 2009-07-29 -Deprecated: 2021-02-20 -Comments: see dkg, jbm, tyy -%% -Type: language -Subtag: bik -Description: Bikol -Added: 2005-10-16 -Scope: macrolanguage -%% -Type: language -Subtag: bil -Description: Bile -Added: 2009-07-29 -%% -Type: language -Subtag: bim -Description: Bimoba -Added: 2009-07-29 -%% -Type: language -Subtag: bin -Description: Bini -Description: Edo -Added: 2005-10-16 -%% -Type: language -Subtag: bio -Description: Nai -Added: 2009-07-29 -%% -Type: language -Subtag: bip -Description: Bila -Added: 2009-07-29 -%% -Type: language -Subtag: biq -Description: Bipi -Added: 2009-07-29 -%% -Type: language -Subtag: bir -Description: Bisorio -Added: 2009-07-29 -%% -Type: language -Subtag: bit -Description: Berinomo -Added: 2009-07-29 -%% -Type: language -Subtag: biu -Description: Biete -Added: 2009-07-29 -%% -Type: language -Subtag: biv -Description: Southern Birifor -Added: 2009-07-29 -%% -Type: language -Subtag: biw -Description: Kol (Cameroon) -Added: 2009-07-29 -%% -Type: language -Subtag: bix -Description: Bijori -Added: 2009-07-29 -%% -Type: language -Subtag: biy -Description: Birhor -Added: 2009-07-29 -%% -Type: language -Subtag: biz -Description: Baloi -Added: 2009-07-29 -%% -Type: language -Subtag: bja -Description: Budza -Added: 2009-07-29 -%% -Type: language -Subtag: bjb -Description: Banggarla -Added: 2009-07-29 -%% -Type: language -Subtag: bjc -Description: Bariji -Added: 2009-07-29 -%% -Type: language -Subtag: bjd -Description: Bandjigali -Added: 2009-07-29 -Deprecated: 2012-08-12 -Preferred-Value: drl -%% -Type: language -Subtag: bje -Description: Biao-Jiao Mien -Added: 2009-07-29 -%% -Type: language -Subtag: bjf -Description: Barzani Jewish Neo-Aramaic -Added: 2009-07-29 -%% -Type: language -Subtag: bjg -Description: Bidyogo -Added: 2009-07-29 -%% -Type: language -Subtag: bjh -Description: Bahinemo -Added: 2009-07-29 -%% -Type: language -Subtag: bji -Description: Burji -Added: 2009-07-29 -%% -Type: language -Subtag: bjj -Description: Kanauji -Added: 2009-07-29 -%% -Type: language -Subtag: bjk -Description: Barok -Added: 2009-07-29 -%% -Type: language -Subtag: bjl -Description: Bulu (Papua New Guinea) -Added: 2009-07-29 -%% -Type: language -Subtag: bjm -Description: Bajelani -Added: 2009-07-29 -%% -Type: language -Subtag: bjn -Description: Banjar -Added: 2009-07-29 -Macrolanguage: ms -%% -Type: language -Subtag: bjo -Description: Mid-Southern Banda -Added: 2009-07-29 -%% -Type: language -Subtag: bjp -Description: Fanamaket -Added: 2013-09-10 -%% -Type: language -Subtag: bjq -Description: Southern Betsimisaraka Malagasy -Added: 2009-07-29 -Deprecated: 2011-08-16 -Macrolanguage: mg -Comments: see bzc, tkg -%% -Type: language -Subtag: bjr -Description: Binumarien -Added: 2009-07-29 -%% -Type: language -Subtag: bjs -Description: Bajan -Added: 2009-07-29 -%% -Type: language -Subtag: bjt -Description: Balanta-Ganja -Added: 2009-07-29 -%% -Type: language -Subtag: bju -Description: Busuu -Added: 2009-07-29 -%% -Type: language -Subtag: bjv -Description: Bedjond -Added: 2009-07-29 -%% -Type: language -Subtag: bjw -Description: Bakwé -Added: 2009-07-29 -%% -Type: language -Subtag: bjx -Description: Banao Itneg -Added: 2009-07-29 -%% -Type: language -Subtag: bjy -Description: Bayali -Added: 2009-07-29 -%% -Type: language -Subtag: bjz -Description: Baruga -Added: 2009-07-29 -%% -Type: language -Subtag: bka -Description: Kyak -Added: 2009-07-29 -%% -Type: language -Subtag: bkb -Description: Finallig -Added: 2009-07-29 -Deprecated: 2010-03-11 -Comments: see ebk, obk -%% -Type: language -Subtag: bkc -Description: Baka (Cameroon) -Added: 2009-07-29 -%% -Type: language -Subtag: bkd -Description: Binukid -Description: Talaandig -Added: 2009-07-29 -%% -Type: language -Subtag: bkf -Description: Beeke -Added: 2009-07-29 -%% -Type: language -Subtag: bkg -Description: Buraka -Added: 2009-07-29 -%% -Type: language -Subtag: bkh -Description: Bakoko -Added: 2009-07-29 -%% -Type: language -Subtag: bki -Description: Baki -Added: 2009-07-29 -%% -Type: language -Subtag: bkj -Description: Pande -Added: 2009-07-29 -%% -Type: language -Subtag: bkk -Description: Brokskat -Added: 2009-07-29 -%% -Type: language -Subtag: bkl -Description: Berik -Added: 2009-07-29 -%% -Type: language -Subtag: bkm -Description: Kom (Cameroon) -Added: 2009-07-29 -%% -Type: language -Subtag: bkn -Description: Bukitan -Added: 2009-07-29 -%% -Type: language -Subtag: bko -Description: Kwa' -Added: 2009-07-29 -%% -Type: language -Subtag: bkp -Description: Boko (Democratic Republic of Congo) -Added: 2009-07-29 -%% -Type: language -Subtag: bkq -Description: Bakairí -Added: 2009-07-29 -%% -Type: language -Subtag: bkr -Description: Bakumpai -Added: 2009-07-29 -%% -Type: language -Subtag: bks -Description: Northern Sorsoganon -Added: 2009-07-29 -%% -Type: language -Subtag: bkt -Description: Boloki -Added: 2009-07-29 -%% -Type: language -Subtag: bku -Description: Buhid -Added: 2009-07-29 -%% -Type: language -Subtag: bkv -Description: Bekwarra -Added: 2009-07-29 -%% -Type: language -Subtag: bkw -Description: Bekwel -Added: 2009-07-29 -%% -Type: language -Subtag: bkx -Description: Baikeno -Added: 2009-07-29 -%% -Type: language -Subtag: bky -Description: Bokyi -Added: 2009-07-29 -%% -Type: language -Subtag: bkz -Description: Bungku -Added: 2009-07-29 -%% -Type: language -Subtag: bla -Description: Siksika -Added: 2005-10-16 -%% -Type: language -Subtag: blb -Description: Bilua -Added: 2009-07-29 -%% -Type: language -Subtag: blc -Description: Bella Coola -Added: 2009-07-29 -%% -Type: language -Subtag: bld -Description: Bolango -Added: 2009-07-29 -%% -Type: language -Subtag: ble -Description: Balanta-Kentohe -Added: 2009-07-29 -%% -Type: language -Subtag: blf -Description: Buol -Added: 2009-07-29 -%% -Type: language -Subtag: blg -Description: Balau -Added: 2009-07-29 -Deprecated: 2021-02-20 -Preferred-Value: iba -%% -Type: language -Subtag: blh -Description: Kuwaa -Added: 2009-07-29 -%% -Type: language -Subtag: bli -Description: Bolia -Added: 2009-07-29 -%% -Type: language -Subtag: blj -Description: Bolongan -Added: 2009-07-29 -%% -Type: language -Subtag: blk -Description: Pa'o Karen -Description: Pa'O -Added: 2009-07-29 -%% -Type: language -Subtag: bll -Description: Biloxi -Added: 2009-07-29 -%% -Type: language -Subtag: blm -Description: Beli (South Sudan) -Added: 2009-07-29 -%% -Type: language -Subtag: bln -Description: Southern Catanduanes Bikol -Added: 2009-07-29 -Macrolanguage: bik -%% -Type: language -Subtag: blo -Description: Anii -Added: 2009-07-29 -%% -Type: language -Subtag: blp -Description: Blablanga -Added: 2009-07-29 -%% -Type: language -Subtag: blq -Description: Baluan-Pam -Added: 2009-07-29 -%% -Type: language -Subtag: blr -Description: Blang -Added: 2009-07-29 -%% -Type: language -Subtag: bls -Description: Balaesang -Added: 2009-07-29 -%% -Type: language -Subtag: blt -Description: Tai Dam -Added: 2009-07-29 -%% -Type: language -Subtag: blv -Description: Kibala -Description: Bolo -Added: 2009-07-29 -%% -Type: language -Subtag: blw -Description: Balangao -Added: 2009-07-29 -%% -Type: language -Subtag: blx -Description: Mag-Indi Ayta -Added: 2009-07-29 -%% -Type: language -Subtag: bly -Description: Notre -Added: 2009-07-29 -%% -Type: language -Subtag: blz -Description: Balantak -Added: 2009-07-29 -%% -Type: language -Subtag: bma -Description: Lame -Added: 2009-07-29 -%% -Type: language -Subtag: bmb -Description: Bembe -Added: 2009-07-29 -%% -Type: language -Subtag: bmc -Description: Biem -Added: 2009-07-29 -%% -Type: language -Subtag: bmd -Description: Baga Manduri -Added: 2009-07-29 -%% -Type: language -Subtag: bme -Description: Limassa -Added: 2009-07-29 -%% -Type: language -Subtag: bmf -Description: Bom-Kim -Added: 2009-07-29 -%% -Type: language -Subtag: bmg -Description: Bamwe -Added: 2009-07-29 -%% -Type: language -Subtag: bmh -Description: Kein -Added: 2009-07-29 -%% -Type: language -Subtag: bmi -Description: Bagirmi -Added: 2009-07-29 -%% -Type: language -Subtag: bmj -Description: Bote-Majhi -Added: 2009-07-29 -%% -Type: language -Subtag: bmk -Description: Ghayavi -Added: 2009-07-29 -%% -Type: language -Subtag: bml -Description: Bomboli -Added: 2009-07-29 -%% -Type: language -Subtag: bmm -Description: Northern Betsimisaraka Malagasy -Added: 2009-07-29 -Macrolanguage: mg -%% -Type: language -Subtag: bmn -Description: Bina (Papua New Guinea) -Added: 2009-07-29 -%% -Type: language -Subtag: bmo -Description: Bambalang -Added: 2009-07-29 -%% -Type: language -Subtag: bmp -Description: Bulgebi -Added: 2009-07-29 -%% -Type: language -Subtag: bmq -Description: Bomu -Added: 2009-07-29 -%% -Type: language -Subtag: bmr -Description: Muinane -Added: 2009-07-29 -%% -Type: language -Subtag: bms -Description: Bilma Kanuri -Added: 2009-07-29 -%% -Type: language -Subtag: bmt -Description: Biao Mon -Added: 2009-07-29 -%% -Type: language -Subtag: bmu -Description: Somba-Siawari -Added: 2009-07-29 -%% -Type: language -Subtag: bmv -Description: Bum -Added: 2009-07-29 -%% -Type: language -Subtag: bmw -Description: Bomwali -Added: 2009-07-29 -%% -Type: language -Subtag: bmx -Description: Baimak -Added: 2009-07-29 -%% -Type: language -Subtag: bmy -Description: Bemba (Democratic Republic of Congo) -Added: 2009-07-29 -Deprecated: 2015-02-12 -%% -Type: language -Subtag: bmz -Description: Baramu -Added: 2009-07-29 -%% -Type: language -Subtag: bna -Description: Bonerate -Added: 2009-07-29 -%% -Type: language -Subtag: bnb -Description: Bookan -Added: 2009-07-29 -%% -Type: language -Subtag: bnc -Description: Bontok -Added: 2009-07-29 -Scope: macrolanguage -%% -Type: language -Subtag: bnd -Description: Banda (Indonesia) -Added: 2009-07-29 -%% -Type: language -Subtag: bne -Description: Bintauna -Added: 2009-07-29 -%% -Type: language -Subtag: bnf -Description: Masiwang -Added: 2009-07-29 -%% -Type: language -Subtag: bng -Description: Benga -Added: 2009-07-29 -%% -Type: language -Subtag: bni -Description: Bangi -Added: 2009-07-29 -%% -Type: language -Subtag: bnj -Description: Eastern Tawbuid -Added: 2009-07-29 -%% -Type: language -Subtag: bnk -Description: Bierebo -Added: 2009-07-29 -%% -Type: language -Subtag: bnl -Description: Boon -Added: 2009-07-29 -%% -Type: language -Subtag: bnm -Description: Batanga -Added: 2009-07-29 -%% -Type: language -Subtag: bnn -Description: Bunun -Added: 2009-07-29 -%% -Type: language -Subtag: bno -Description: Bantoanon -Added: 2009-07-29 -%% -Type: language -Subtag: bnp -Description: Bola -Added: 2009-07-29 -%% -Type: language -Subtag: bnq -Description: Bantik -Added: 2009-07-29 -%% -Type: language -Subtag: bnr -Description: Butmas-Tur -Added: 2009-07-29 -%% -Type: language -Subtag: bns -Description: Bundeli -Added: 2009-07-29 -%% -Type: language -Subtag: bnt -Description: Bantu languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: bnu -Description: Bentong -Added: 2009-07-29 -%% -Type: language -Subtag: bnv -Description: Bonerif -Description: Beneraf -Description: Edwas -Added: 2009-07-29 -%% -Type: language -Subtag: bnw -Description: Bisis -Added: 2009-07-29 -%% -Type: language -Subtag: bnx -Description: Bangubangu -Added: 2009-07-29 -%% -Type: language -Subtag: bny -Description: Bintulu -Added: 2009-07-29 -%% -Type: language -Subtag: bnz -Description: Beezen -Added: 2009-07-29 -%% -Type: language -Subtag: boa -Description: Bora -Added: 2009-07-29 -%% -Type: language -Subtag: bob -Description: Aweer -Added: 2009-07-29 -%% -Type: language -Subtag: boe -Description: Mundabli-Mufu -Added: 2009-07-29 -%% -Type: language -Subtag: bof -Description: Bolon -Added: 2009-07-29 -%% -Type: language -Subtag: bog -Description: Bamako Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: boh -Description: Boma -Added: 2009-07-29 -%% -Type: language -Subtag: boi -Description: Barbareño -Added: 2009-07-29 -%% -Type: language -Subtag: boj -Description: Anjam -Added: 2009-07-29 -%% -Type: language -Subtag: bok -Description: Bonjo -Added: 2009-07-29 -%% -Type: language -Subtag: bol -Description: Bole -Added: 2009-07-29 -%% -Type: language -Subtag: bom -Description: Berom -Added: 2009-07-29 -%% -Type: language -Subtag: bon -Description: Bine -Added: 2009-07-29 -%% -Type: language -Subtag: boo -Description: Tiemacèwè Bozo -Added: 2009-07-29 -%% -Type: language -Subtag: bop -Description: Bonkiman -Added: 2009-07-29 -%% -Type: language -Subtag: boq -Description: Bogaya -Added: 2009-07-29 -%% -Type: language -Subtag: bor -Description: Borôro -Added: 2009-07-29 -%% -Type: language -Subtag: bot -Description: Bongo -Added: 2009-07-29 -%% -Type: language -Subtag: bou -Description: Bondei -Added: 2009-07-29 -%% -Type: language -Subtag: bov -Description: Tuwuli -Added: 2009-07-29 -%% -Type: language -Subtag: bow -Description: Rema -Added: 2009-07-29 -%% -Type: language -Subtag: box -Description: Buamu -Added: 2009-07-29 -%% -Type: language -Subtag: boy -Description: Bodo (Central African Republic) -Added: 2009-07-29 -%% -Type: language -Subtag: boz -Description: Tiéyaxo Bozo -Added: 2009-07-29 -%% -Type: language -Subtag: bpa -Description: Daakaka -Added: 2009-07-29 -%% -Type: language -Subtag: bpb -Description: Barbacoas -Added: 2009-07-29 -Deprecated: 2020-03-28 -%% -Type: language -Subtag: bpc -Description: Mbuk -Added: 2022-02-25 -%% -Type: language -Subtag: bpd -Description: Banda-Banda -Added: 2009-07-29 -%% -Type: language -Subtag: bpe -Description: Bauni -Added: 2021-02-20 -%% -Type: language -Subtag: bpg -Description: Bonggo -Added: 2009-07-29 -%% -Type: language -Subtag: bph -Description: Botlikh -Added: 2009-07-29 -%% -Type: language -Subtag: bpi -Description: Bagupi -Added: 2009-07-29 -%% -Type: language -Subtag: bpj -Description: Binji -Added: 2009-07-29 -%% -Type: language -Subtag: bpk -Description: Orowe -Description: 'Ôrôê -Added: 2009-07-29 -%% -Type: language -Subtag: bpl -Description: Broome Pearling Lugger Pidgin -Added: 2009-07-29 -%% -Type: language -Subtag: bpm -Description: Biyom -Added: 2009-07-29 -%% -Type: language -Subtag: bpn -Description: Dzao Min -Added: 2009-07-29 -%% -Type: language -Subtag: bpo -Description: Anasi -Added: 2009-07-29 -%% -Type: language -Subtag: bpp -Description: Kaure -Added: 2009-07-29 -%% -Type: language -Subtag: bpq -Description: Banda Malay -Added: 2009-07-29 -%% -Type: language -Subtag: bpr -Description: Koronadal Blaan -Added: 2009-07-29 -%% -Type: language -Subtag: bps -Description: Sarangani Blaan -Added: 2009-07-29 -%% -Type: language -Subtag: bpt -Description: Barrow Point -Added: 2009-07-29 -%% -Type: language -Subtag: bpu -Description: Bongu -Added: 2009-07-29 -%% -Type: language -Subtag: bpv -Description: Bian Marind -Added: 2009-07-29 -%% -Type: language -Subtag: bpw -Description: Bo (Papua New Guinea) -Added: 2009-07-29 -%% -Type: language -Subtag: bpx -Description: Palya Bareli -Added: 2009-07-29 -%% -Type: language -Subtag: bpy -Description: Bishnupriya -Added: 2009-07-29 -%% -Type: language -Subtag: bpz -Description: Bilba -Added: 2009-07-29 -%% -Type: language -Subtag: bqa -Description: Tchumbuli -Added: 2009-07-29 -%% -Type: language -Subtag: bqb -Description: Bagusa -Added: 2009-07-29 -%% -Type: language -Subtag: bqc -Description: Boko (Benin) -Description: Boo -Added: 2009-07-29 -%% -Type: language -Subtag: bqd -Description: Bung -Added: 2009-07-29 -%% -Type: language -Subtag: bqf -Description: Baga Kaloum -Added: 2009-07-29 -%% -Type: language -Subtag: bqg -Description: Bago-Kusuntu -Added: 2009-07-29 -%% -Type: language -Subtag: bqh -Description: Baima -Added: 2009-07-29 -%% -Type: language -Subtag: bqi -Description: Bakhtiari -Added: 2009-07-29 -%% -Type: language -Subtag: bqj -Description: Bandial -Added: 2009-07-29 -%% -Type: language -Subtag: bqk -Description: Banda-Mbrès -Added: 2009-07-29 -%% -Type: language -Subtag: bql -Description: Karian -Description: Bilakura -Added: 2009-07-29 -%% -Type: language -Subtag: bqm -Description: Wumboko -Added: 2009-07-29 -%% -Type: language -Subtag: bqn -Description: Bulgarian Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: bqo -Description: Balo -Added: 2009-07-29 -%% -Type: language -Subtag: bqp -Description: Busa -Added: 2009-07-29 -%% -Type: language -Subtag: bqq -Description: Biritai -Added: 2009-07-29 -%% -Type: language -Subtag: bqr -Description: Burusu -Added: 2009-07-29 -%% -Type: language -Subtag: bqs -Description: Bosngun -Added: 2009-07-29 -%% -Type: language -Subtag: bqt -Description: Bamukumbit -Added: 2009-07-29 -%% -Type: language -Subtag: bqu -Description: Boguru -Added: 2009-07-29 -%% -Type: language -Subtag: bqv -Description: Koro Wachi -Description: Begbere-Ejar -Added: 2009-07-29 -%% -Type: language -Subtag: bqw -Description: Buru (Nigeria) -Added: 2009-07-29 -%% -Type: language -Subtag: bqx -Description: Baangi -Added: 2009-07-29 -%% -Type: language -Subtag: bqy -Description: Bengkala Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: bqz -Description: Bakaka -Added: 2009-07-29 -%% -Type: language -Subtag: bra -Description: Braj -Added: 2005-10-16 -%% -Type: language -Subtag: brb -Description: Brao -Description: Lave -Added: 2009-07-29 -%% -Type: language -Subtag: brc -Description: Berbice Creole Dutch -Added: 2009-07-29 -%% -Type: language -Subtag: brd -Description: Baraamu -Added: 2009-07-29 -%% -Type: language -Subtag: brf -Description: Bira -Added: 2009-07-29 -%% -Type: language -Subtag: brg -Description: Baure -Added: 2009-07-29 -%% -Type: language -Subtag: brh -Description: Brahui -Added: 2009-07-29 -%% -Type: language -Subtag: bri -Description: Mokpwe -Added: 2009-07-29 -%% -Type: language -Subtag: brj -Description: Bieria -Added: 2009-07-29 -%% -Type: language -Subtag: brk -Description: Birked -Added: 2009-07-29 -%% -Type: language -Subtag: brl -Description: Birwa -Added: 2009-07-29 -%% -Type: language -Subtag: brm -Description: Barambu -Added: 2009-07-29 -%% -Type: language -Subtag: brn -Description: Boruca -Added: 2009-07-29 -%% -Type: language -Subtag: bro -Description: Brokkat -Added: 2009-07-29 -%% -Type: language -Subtag: brp -Description: Barapasi -Added: 2009-07-29 -%% -Type: language -Subtag: brq -Description: Breri -Added: 2009-07-29 -%% -Type: language -Subtag: brr -Description: Birao -Added: 2009-07-29 -%% -Type: language -Subtag: brs -Description: Baras -Added: 2009-07-29 -%% -Type: language -Subtag: brt -Description: Bitare -Added: 2009-07-29 -%% -Type: language -Subtag: bru -Description: Eastern Bru -Added: 2009-07-29 -%% -Type: language -Subtag: brv -Description: Western Bru -Added: 2009-07-29 -%% -Type: language -Subtag: brw -Description: Bellari -Added: 2009-07-29 -%% -Type: language -Subtag: brx -Description: Bodo (India) -Added: 2009-07-29 -%% -Type: language -Subtag: bry -Description: Burui -Added: 2009-07-29 -%% -Type: language -Subtag: brz -Description: Bilbil -Added: 2009-07-29 -%% -Type: language -Subtag: bsa -Description: Abinomn -Added: 2009-07-29 -%% -Type: language -Subtag: bsb -Description: Brunei Bisaya -Added: 2009-07-29 -%% -Type: language -Subtag: bsc -Description: Bassari -Description: Oniyan -Added: 2009-07-29 -%% -Type: language -Subtag: bse -Description: Wushi -Added: 2009-07-29 -%% -Type: language -Subtag: bsf -Description: Bauchi -Added: 2009-07-29 -%% -Type: language -Subtag: bsg -Description: Bashkardi -Added: 2009-07-29 -%% -Type: language -Subtag: bsh -Description: Kati -Added: 2009-07-29 -%% -Type: language -Subtag: bsi -Description: Bassossi -Added: 2009-07-29 -%% -Type: language -Subtag: bsj -Description: Bangwinji -Added: 2009-07-29 -%% -Type: language -Subtag: bsk -Description: Burushaski -Added: 2009-07-29 -%% -Type: language -Subtag: bsl -Description: Basa-Gumna -Added: 2009-07-29 -%% -Type: language -Subtag: bsm -Description: Busami -Added: 2009-07-29 -%% -Type: language -Subtag: bsn -Description: Barasana-Eduria -Added: 2009-07-29 -%% -Type: language -Subtag: bso -Description: Buso -Added: 2009-07-29 -%% -Type: language -Subtag: bsp -Description: Baga Sitemu -Added: 2009-07-29 -%% -Type: language -Subtag: bsq -Description: Bassa -Added: 2009-07-29 -%% -Type: language -Subtag: bsr -Description: Bassa-Kontagora -Added: 2009-07-29 -%% -Type: language -Subtag: bss -Description: Akoose -Added: 2009-07-29 -%% -Type: language -Subtag: bst -Description: Basketo -Added: 2009-07-29 -%% -Type: language -Subtag: bsu -Description: Bahonsuai -Added: 2009-07-29 -%% -Type: language -Subtag: bsv -Description: Baga Sobané -Added: 2009-07-29 -%% -Type: language -Subtag: bsw -Description: Baiso -Added: 2009-07-29 -%% -Type: language -Subtag: bsx -Description: Yangkam -Added: 2009-07-29 -%% -Type: language -Subtag: bsy -Description: Sabah Bisaya -Added: 2009-07-29 -%% -Type: language -Subtag: bta -Description: Bata -Added: 2009-07-29 -%% -Type: language -Subtag: btb -Description: Beti (Cameroon) -Added: 2009-07-29 -Deprecated: 2010-03-11 -Comments: see beb, bum, bxp, eto, ewo, fan, mct -%% -Type: language -Subtag: btc -Description: Bati (Cameroon) -Added: 2009-07-29 -%% -Type: language -Subtag: btd -Description: Batak Dairi -Added: 2009-07-29 -%% -Type: language -Subtag: bte -Description: Gamo-Ningi -Added: 2009-07-29 -%% -Type: language -Subtag: btf -Description: Birgit -Added: 2009-07-29 -%% -Type: language -Subtag: btg -Description: Gagnoa Bété -Added: 2009-07-29 -%% -Type: language -Subtag: bth -Description: Biatah Bidayuh -Added: 2009-07-29 -%% -Type: language -Subtag: bti -Description: Burate -Added: 2009-07-29 -%% -Type: language -Subtag: btj -Description: Bacanese Malay -Added: 2009-07-29 -Macrolanguage: ms -%% -Type: language -Subtag: btk -Description: Batak languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: btl -Description: Bhatola -Added: 2009-07-29 -Deprecated: 2016-05-30 -%% -Type: language -Subtag: btm -Description: Batak Mandailing -Added: 2009-07-29 -%% -Type: language -Subtag: btn -Description: Ratagnon -Added: 2009-07-29 -%% -Type: language -Subtag: bto -Description: Rinconada Bikol -Added: 2009-07-29 -Macrolanguage: bik -%% -Type: language -Subtag: btp -Description: Budibud -Added: 2009-07-29 -%% -Type: language -Subtag: btq -Description: Batek -Added: 2009-07-29 -%% -Type: language -Subtag: btr -Description: Baetora -Added: 2009-07-29 -%% -Type: language -Subtag: bts -Description: Batak Simalungun -Added: 2009-07-29 -%% -Type: language -Subtag: btt -Description: Bete-Bendi -Added: 2009-07-29 -%% -Type: language -Subtag: btu -Description: Batu -Added: 2009-07-29 -%% -Type: language -Subtag: btv -Description: Bateri -Added: 2009-07-29 -%% -Type: language -Subtag: btw -Description: Butuanon -Added: 2009-07-29 -%% -Type: language -Subtag: btx -Description: Batak Karo -Added: 2009-07-29 -%% -Type: language -Subtag: bty -Description: Bobot -Added: 2009-07-29 -%% -Type: language -Subtag: btz -Description: Batak Alas-Kluet -Added: 2009-07-29 -%% -Type: language -Subtag: bua -Description: Buriat -Added: 2005-10-16 -Scope: macrolanguage -%% -Type: language -Subtag: bub -Description: Bua -Added: 2009-07-29 -%% -Type: language -Subtag: buc -Description: Bushi -Added: 2009-07-29 -%% -Type: language -Subtag: bud -Description: Ntcham -Added: 2009-07-29 -%% -Type: language -Subtag: bue -Description: Beothuk -Added: 2009-07-29 -%% -Type: language -Subtag: buf -Description: Bushoong -Added: 2009-07-29 -%% -Type: language -Subtag: bug -Description: Buginese -Added: 2005-10-16 -%% -Type: language -Subtag: buh -Description: Younuo Bunu -Added: 2009-07-29 -%% -Type: language -Subtag: bui -Description: Bongili -Added: 2009-07-29 -%% -Type: language -Subtag: buj -Description: Basa-Gurmana -Added: 2009-07-29 -%% -Type: language -Subtag: buk -Description: Bugawac -Added: 2009-07-29 -%% -Type: language -Subtag: bum -Description: Bulu (Cameroon) -Added: 2009-07-29 -%% -Type: language -Subtag: bun -Description: Sherbro -Added: 2009-07-29 -%% -Type: language -Subtag: buo -Description: Terei -Added: 2009-07-29 -%% -Type: language -Subtag: bup -Description: Busoa -Added: 2009-07-29 -%% -Type: language -Subtag: buq -Description: Brem -Added: 2009-07-29 -%% -Type: language -Subtag: bus -Description: Bokobaru -Added: 2009-07-29 -%% -Type: language -Subtag: but -Description: Bungain -Added: 2009-07-29 -%% -Type: language -Subtag: buu -Description: Budu -Added: 2009-07-29 -%% -Type: language -Subtag: buv -Description: Bun -Added: 2009-07-29 -%% -Type: language -Subtag: buw -Description: Bubi -Added: 2009-07-29 -%% -Type: language -Subtag: bux -Description: Boghom -Added: 2009-07-29 -%% -Type: language -Subtag: buy -Description: Bullom So -Added: 2009-07-29 -%% -Type: language -Subtag: buz -Description: Bukwen -Added: 2009-07-29 -%% -Type: language -Subtag: bva -Description: Barein -Added: 2009-07-29 -%% -Type: language -Subtag: bvb -Description: Bube -Added: 2009-07-29 -%% -Type: language -Subtag: bvc -Description: Baelelea -Added: 2009-07-29 -%% -Type: language -Subtag: bvd -Description: Baeggu -Added: 2009-07-29 -%% -Type: language -Subtag: bve -Description: Berau Malay -Added: 2009-07-29 -Macrolanguage: ms -%% -Type: language -Subtag: bvf -Description: Boor -Added: 2009-07-29 -%% -Type: language -Subtag: bvg -Description: Bonkeng -Added: 2009-07-29 -%% -Type: language -Subtag: bvh -Description: Bure -Added: 2009-07-29 -%% -Type: language -Subtag: bvi -Description: Belanda Viri -Added: 2009-07-29 -%% -Type: language -Subtag: bvj -Description: Baan -Added: 2009-07-29 -%% -Type: language -Subtag: bvk -Description: Bukat -Added: 2009-07-29 -%% -Type: language -Subtag: bvl -Description: Bolivian Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: bvm -Description: Bamunka -Added: 2009-07-29 -%% -Type: language -Subtag: bvn -Description: Buna -Added: 2009-07-29 -%% -Type: language -Subtag: bvo -Description: Bolgo -Added: 2009-07-29 -%% -Type: language -Subtag: bvp -Description: Bumang -Added: 2013-09-10 -%% -Type: language -Subtag: bvq -Description: Birri -Added: 2009-07-29 -%% -Type: language -Subtag: bvr -Description: Burarra -Added: 2009-07-29 -%% -Type: language -Subtag: bvt -Description: Bati (Indonesia) -Added: 2009-07-29 -%% -Type: language -Subtag: bvu -Description: Bukit Malay -Added: 2009-07-29 -Macrolanguage: ms -%% -Type: language -Subtag: bvv -Description: Baniva -Added: 2009-07-29 -%% -Type: language -Subtag: bvw -Description: Boga -Added: 2009-07-29 -%% -Type: language -Subtag: bvx -Description: Dibole -Added: 2009-07-29 -%% -Type: language -Subtag: bvy -Description: Baybayanon -Added: 2010-03-11 -%% -Type: language -Subtag: bvz -Description: Bauzi -Added: 2009-07-29 -%% -Type: language -Subtag: bwa -Description: Bwatoo -Added: 2009-07-29 -%% -Type: language -Subtag: bwb -Description: Namosi-Naitasiri-Serua -Added: 2009-07-29 -%% -Type: language -Subtag: bwc -Description: Bwile -Added: 2009-07-29 -%% -Type: language -Subtag: bwd -Description: Bwaidoka -Added: 2009-07-29 -%% -Type: language -Subtag: bwe -Description: Bwe Karen -Added: 2009-07-29 -%% -Type: language -Subtag: bwf -Description: Boselewa -Added: 2009-07-29 -%% -Type: language -Subtag: bwg -Description: Barwe -Added: 2009-07-29 -%% -Type: language -Subtag: bwh -Description: Bishuo -Added: 2009-07-29 -%% -Type: language -Subtag: bwi -Description: Baniwa -Added: 2009-07-29 -%% -Type: language -Subtag: bwj -Description: Láá Láá Bwamu -Added: 2009-07-29 -%% -Type: language -Subtag: bwk -Description: Bauwaki -Added: 2009-07-29 -%% -Type: language -Subtag: bwl -Description: Bwela -Added: 2009-07-29 -%% -Type: language -Subtag: bwm -Description: Biwat -Added: 2009-07-29 -%% -Type: language -Subtag: bwn -Description: Wunai Bunu -Added: 2009-07-29 -%% -Type: language -Subtag: bwo -Description: Boro (Ethiopia) -Description: Borna (Ethiopia) -Added: 2009-07-29 -%% -Type: language -Subtag: bwp -Description: Mandobo Bawah -Added: 2009-07-29 -%% -Type: language -Subtag: bwq -Description: Southern Bobo Madaré -Added: 2009-07-29 -%% -Type: language -Subtag: bwr -Description: Bura-Pabir -Added: 2009-07-29 -%% -Type: language -Subtag: bws -Description: Bomboma -Added: 2009-07-29 -%% -Type: language -Subtag: bwt -Description: Bafaw-Balong -Added: 2009-07-29 -%% -Type: language -Subtag: bwu -Description: Buli (Ghana) -Added: 2009-07-29 -%% -Type: language -Subtag: bww -Description: Bwa -Added: 2009-07-29 -%% -Type: language -Subtag: bwx -Description: Bu-Nao Bunu -Added: 2009-07-29 -%% -Type: language -Subtag: bwy -Description: Cwi Bwamu -Added: 2009-07-29 -%% -Type: language -Subtag: bwz -Description: Bwisi -Added: 2009-07-29 -%% -Type: language -Subtag: bxa -Description: Tairaha -Added: 2009-07-29 -%% -Type: language -Subtag: bxb -Description: Belanda Bor -Added: 2009-07-29 -%% -Type: language -Subtag: bxc -Description: Molengue -Added: 2009-07-29 -%% -Type: language -Subtag: bxd -Description: Pela -Added: 2009-07-29 -%% -Type: language -Subtag: bxe -Description: Birale -Added: 2009-07-29 -%% -Type: language -Subtag: bxf -Description: Bilur -Description: Minigir -Added: 2009-07-29 -Comments: see also vmg -%% -Type: language -Subtag: bxg -Description: Bangala -Added: 2009-07-29 -%% -Type: language -Subtag: bxh -Description: Buhutu -Added: 2009-07-29 -%% -Type: language -Subtag: bxi -Description: Pirlatapa -Added: 2009-07-29 -%% -Type: language -Subtag: bxj -Description: Bayungu -Added: 2009-07-29 -%% -Type: language -Subtag: bxk -Description: Bukusu -Description: Lubukusu -Added: 2009-07-29 -Macrolanguage: luy -%% -Type: language -Subtag: bxl -Description: Jalkunan -Added: 2009-07-29 -%% -Type: language -Subtag: bxm -Description: Mongolia Buriat -Added: 2009-07-29 -Macrolanguage: bua -%% -Type: language -Subtag: bxn -Description: Burduna -Added: 2009-07-29 -%% -Type: language -Subtag: bxo -Description: Barikanchi -Added: 2009-07-29 -%% -Type: language -Subtag: bxp -Description: Bebil -Added: 2009-07-29 -%% -Type: language -Subtag: bxq -Description: Beele -Added: 2009-07-29 -%% -Type: language -Subtag: bxr -Description: Russia Buriat -Added: 2009-07-29 -Macrolanguage: bua -%% -Type: language -Subtag: bxs -Description: Busam -Added: 2009-07-29 -%% -Type: language -Subtag: bxu -Description: China Buriat -Added: 2009-07-29 -Macrolanguage: bua -%% -Type: language -Subtag: bxv -Description: Berakou -Added: 2009-07-29 -%% -Type: language -Subtag: bxw -Description: Bankagooma -Added: 2009-07-29 -%% -Type: language -Subtag: bxx -Description: Borna (Democratic Republic of Congo) -Added: 2009-07-29 -Deprecated: 2015-02-12 -%% -Type: language -Subtag: bxz -Description: Binahari -Added: 2009-07-29 -%% -Type: language -Subtag: bya -Description: Batak -Added: 2009-07-29 -%% -Type: language -Subtag: byb -Description: Bikya -Added: 2009-07-29 -%% -Type: language -Subtag: byc -Description: Ubaghara -Added: 2009-07-29 -%% -Type: language -Subtag: byd -Description: Benyadu' -Added: 2009-07-29 -%% -Type: language -Subtag: bye -Description: Pouye -Added: 2009-07-29 -%% -Type: language -Subtag: byf -Description: Bete -Added: 2009-07-29 -%% -Type: language -Subtag: byg -Description: Baygo -Added: 2009-07-29 -%% -Type: language -Subtag: byh -Description: Bhujel -Added: 2009-07-29 -%% -Type: language -Subtag: byi -Description: Buyu -Added: 2009-07-29 -%% -Type: language -Subtag: byj -Description: Bina (Nigeria) -Added: 2009-07-29 -%% -Type: language -Subtag: byk -Description: Biao -Added: 2009-07-29 -%% -Type: language -Subtag: byl -Description: Bayono -Added: 2009-07-29 -%% -Type: language -Subtag: bym -Description: Bidjara -Added: 2009-07-29 -%% -Type: language -Subtag: byn -Description: Bilin -Description: Blin -Added: 2005-10-16 -%% -Type: language -Subtag: byo -Description: Biyo -Added: 2009-07-29 -%% -Type: language -Subtag: byp -Description: Bumaji -Added: 2009-07-29 -%% -Type: language -Subtag: byq -Description: Basay -Added: 2009-07-29 -%% -Type: language -Subtag: byr -Description: Baruya -Description: Yipma -Added: 2009-07-29 -%% -Type: language -Subtag: bys -Description: Burak -Added: 2009-07-29 -%% -Type: language -Subtag: byt -Description: Berti -Added: 2009-07-29 -%% -Type: language -Subtag: byv -Description: Medumba -Added: 2009-07-29 -%% -Type: language -Subtag: byw -Description: Belhariya -Added: 2009-07-29 -%% -Type: language -Subtag: byx -Description: Qaqet -Added: 2009-07-29 -%% -Type: language -Subtag: byy -Description: Buya -Added: 2009-07-29 -Deprecated: 2015-02-12 -%% -Type: language -Subtag: byz -Description: Banaro -Added: 2009-07-29 -%% -Type: language -Subtag: bza -Description: Bandi -Added: 2009-07-29 -%% -Type: language -Subtag: bzb -Description: Andio -Added: 2009-07-29 -%% -Type: language -Subtag: bzc -Description: Southern Betsimisaraka Malagasy -Added: 2011-08-16 -Macrolanguage: mg -%% -Type: language -Subtag: bzd -Description: Bribri -Added: 2009-07-29 -%% -Type: language -Subtag: bze -Description: Jenaama Bozo -Added: 2009-07-29 -%% -Type: language -Subtag: bzf -Description: Boikin -Added: 2009-07-29 -%% -Type: language -Subtag: bzg -Description: Babuza -Added: 2009-07-29 -%% -Type: language -Subtag: bzh -Description: Mapos Buang -Added: 2009-07-29 -%% -Type: language -Subtag: bzi -Description: Bisu -Added: 2009-07-29 -%% -Type: language -Subtag: bzj -Description: Belize Kriol English -Added: 2009-07-29 -%% -Type: language -Subtag: bzk -Description: Nicaragua Creole English -Added: 2009-07-29 -%% -Type: language -Subtag: bzl -Description: Boano (Sulawesi) -Added: 2009-07-29 -%% -Type: language -Subtag: bzm -Description: Bolondo -Added: 2009-07-29 -%% -Type: language -Subtag: bzn -Description: Boano (Maluku) -Added: 2009-07-29 -%% -Type: language -Subtag: bzo -Description: Bozaba -Added: 2009-07-29 -%% -Type: language -Subtag: bzp -Description: Kemberano -Added: 2009-07-29 -%% -Type: language -Subtag: bzq -Description: Buli (Indonesia) -Added: 2009-07-29 -%% -Type: language -Subtag: bzr -Description: Biri -Added: 2009-07-29 -%% -Type: language -Subtag: bzs -Description: Brazilian Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: bzt -Description: Brithenig -Added: 2009-07-29 -%% -Type: language -Subtag: bzu -Description: Burmeso -Added: 2009-07-29 -%% -Type: language -Subtag: bzv -Description: Naami -Added: 2009-07-29 -%% -Type: language -Subtag: bzw -Description: Basa (Nigeria) -Added: 2009-07-29 -%% -Type: language -Subtag: bzx -Description: Kɛlɛngaxo Bozo -Added: 2009-07-29 -%% -Type: language -Subtag: bzy -Description: Obanliku -Added: 2009-07-29 -%% -Type: language -Subtag: bzz -Description: Evant -Added: 2009-07-29 -%% -Type: language -Subtag: caa -Description: Chortí -Added: 2009-07-29 -%% -Type: language -Subtag: cab -Description: Garifuna -Added: 2009-07-29 -%% -Type: language -Subtag: cac -Description: Chuj -Added: 2009-07-29 -%% -Type: language -Subtag: cad -Description: Caddo -Added: 2005-10-16 -%% -Type: language -Subtag: cae -Description: Lehar -Description: Laalaa -Added: 2009-07-29 -%% -Type: language -Subtag: caf -Description: Southern Carrier -Added: 2009-07-29 -%% -Type: language -Subtag: cag -Description: Nivaclé -Added: 2009-07-29 -%% -Type: language -Subtag: cah -Description: Cahuarano -Added: 2009-07-29 -%% -Type: language -Subtag: cai -Description: Central American Indian languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: caj -Description: Chané -Added: 2009-07-29 -%% -Type: language -Subtag: cak -Description: Kaqchikel -Description: Cakchiquel -Added: 2009-07-29 -%% -Type: language -Subtag: cal -Description: Carolinian -Added: 2009-07-29 -%% -Type: language -Subtag: cam -Description: Cemuhî -Added: 2009-07-29 -%% -Type: language -Subtag: can -Description: Chambri -Added: 2009-07-29 -%% -Type: language -Subtag: cao -Description: Chácobo -Added: 2009-07-29 -%% -Type: language -Subtag: cap -Description: Chipaya -Added: 2009-07-29 -%% -Type: language -Subtag: caq -Description: Car Nicobarese -Added: 2009-07-29 -%% -Type: language -Subtag: car -Description: Galibi Carib -Added: 2005-10-16 -%% -Type: language -Subtag: cas -Description: Tsimané -Added: 2009-07-29 -%% -Type: language -Subtag: cau -Description: Caucasian languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: cav -Description: Cavineña -Added: 2009-07-29 -%% -Type: language -Subtag: caw -Description: Callawalla -Added: 2009-07-29 -%% -Type: language -Subtag: cax -Description: Chiquitano -Added: 2009-07-29 -%% -Type: language -Subtag: cay -Description: Cayuga -Added: 2009-07-29 -%% -Type: language -Subtag: caz -Description: Canichana -Added: 2009-07-29 -%% -Type: language -Subtag: cba -Description: Chibchan languages -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: cbb -Description: Cabiyarí -Added: 2009-07-29 -%% -Type: language -Subtag: cbc -Description: Carapana -Added: 2009-07-29 -%% -Type: language -Subtag: cbd -Description: Carijona -Added: 2009-07-29 -%% -Type: language -Subtag: cbe -Description: Chipiajes -Added: 2009-07-29 -Deprecated: 2016-05-30 -%% -Type: language -Subtag: cbg -Description: Chimila -Added: 2009-07-29 -%% -Type: language -Subtag: cbh -Description: Cagua -Added: 2009-07-29 -Deprecated: 2016-05-30 -%% -Type: language -Subtag: cbi -Description: Chachi -Added: 2009-07-29 -%% -Type: language -Subtag: cbj -Description: Ede Cabe -Added: 2009-07-29 -%% -Type: language -Subtag: cbk -Description: Chavacano -Added: 2009-07-29 -%% -Type: language -Subtag: cbl -Description: Bualkhaw Chin -Added: 2009-07-29 -%% -Type: language -Subtag: cbn -Description: Nyahkur -Added: 2009-07-29 -%% -Type: language -Subtag: cbo -Description: Izora -Added: 2009-07-29 -%% -Type: language -Subtag: cbq -Description: Tsucuba -Description: Cuba -Added: 2015-02-12 -%% -Type: language -Subtag: cbr -Description: Cashibo-Cacataibo -Added: 2009-07-29 -%% -Type: language -Subtag: cbs -Description: Cashinahua -Added: 2009-07-29 -%% -Type: language -Subtag: cbt -Description: Chayahuita -Added: 2009-07-29 -%% -Type: language -Subtag: cbu -Description: Candoshi-Shapra -Added: 2009-07-29 -%% -Type: language -Subtag: cbv -Description: Cacua -Added: 2009-07-29 -%% -Type: language -Subtag: cbw -Description: Kinabalian -Added: 2010-03-11 -%% -Type: language -Subtag: cby -Description: Carabayo -Added: 2009-07-29 -%% -Type: language -Subtag: cca -Description: Cauca -Added: 2009-07-29 -Deprecated: 2020-03-28 -%% -Type: language -Subtag: ccc -Description: Chamicuro -Added: 2009-07-29 -%% -Type: language -Subtag: ccd -Description: Cafundo Creole -Added: 2009-07-29 -%% -Type: language -Subtag: cce -Description: Chopi -Added: 2009-07-29 -%% -Type: language -Subtag: ccg -Description: Samba Daka -Added: 2009-07-29 -%% -Type: language -Subtag: cch -Description: Atsam -Added: 2009-07-29 -%% -Type: language -Subtag: ccj -Description: Kasanga -Added: 2009-07-29 -%% -Type: language -Subtag: ccl -Description: Cutchi-Swahili -Added: 2009-07-29 -%% -Type: language -Subtag: ccm -Description: Malaccan Creole Malay -Added: 2009-07-29 -%% -Type: language -Subtag: ccn -Description: North Caucasian languages -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: cco -Description: Comaltepec Chinantec -Added: 2009-07-29 -%% -Type: language -Subtag: ccp -Description: Chakma -Added: 2009-07-29 -%% -Type: language -Subtag: ccq -Description: Chaungtha -Added: 2009-07-29 -Deprecated: 2012-08-12 -Preferred-Value: rki -%% -Type: language -Subtag: ccr -Description: Cacaopera -Added: 2009-07-29 -%% -Type: language -Subtag: ccs -Description: South Caucasian languages -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: cda -Description: Choni -Added: 2009-07-29 -%% -Type: language -Subtag: cdc -Description: Chadic languages -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: cdd -Description: Caddoan languages -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: cde -Description: Chenchu -Added: 2009-07-29 -%% -Type: language -Subtag: cdf -Description: Chiru -Added: 2009-07-29 -%% -Type: language -Subtag: cdg -Description: Chamari -Added: 2009-07-29 -Deprecated: 2020-03-28 -%% -Type: language -Subtag: cdh -Description: Chambeali -Added: 2009-07-29 -%% -Type: language -Subtag: cdi -Description: Chodri -Added: 2009-07-29 -%% -Type: language -Subtag: cdj -Description: Churahi -Added: 2009-07-29 -%% -Type: language -Subtag: cdm -Description: Chepang -Added: 2009-07-29 -%% -Type: language -Subtag: cdn -Description: Chaudangsi -Added: 2009-07-29 -%% -Type: language -Subtag: cdo -Description: Min Dong Chinese -Added: 2009-07-29 -Macrolanguage: zh -%% -Type: language -Subtag: cdr -Description: Cinda-Regi-Tiyal -Added: 2009-07-29 -%% -Type: language -Subtag: cds -Description: Chadian Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: cdy -Description: Chadong -Added: 2009-07-29 -%% -Type: language -Subtag: cdz -Description: Koda -Added: 2009-07-29 -%% -Type: language -Subtag: cea -Description: Lower Chehalis -Added: 2009-07-29 -%% -Type: language -Subtag: ceb -Description: Cebuano -Added: 2005-10-16 -%% -Type: language -Subtag: ceg -Description: Chamacoco -Added: 2009-07-29 -%% -Type: language -Subtag: cek -Description: Eastern Khumi Chin -Added: 2012-08-12 -%% -Type: language -Subtag: cel -Description: Celtic languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: cen -Description: Cen -Added: 2009-07-29 -%% -Type: language -Subtag: cet -Description: Centúúm -Added: 2009-07-29 -%% -Type: language -Subtag: cey -Description: Ekai Chin -Added: 2019-04-16 -%% -Type: language -Subtag: cfa -Description: Dijim-Bwilim -Added: 2009-07-29 -%% -Type: language -Subtag: cfd -Description: Cara -Added: 2009-07-29 -%% -Type: language -Subtag: cfg -Description: Como Karim -Added: 2009-07-29 -%% -Type: language -Subtag: cfm -Description: Falam Chin -Added: 2009-07-29 -%% -Type: language -Subtag: cga -Description: Changriwa -Added: 2009-07-29 -%% -Type: language -Subtag: cgc -Description: Kagayanen -Added: 2009-07-29 -%% -Type: language -Subtag: cgg -Description: Chiga -Added: 2009-07-29 -%% -Type: language -Subtag: cgk -Description: Chocangacakha -Added: 2009-07-29 -%% -Type: language -Subtag: chb -Description: Chibcha -Added: 2005-10-16 -%% -Type: language -Subtag: chc -Description: Catawba -Added: 2009-07-29 -%% -Type: language -Subtag: chd -Description: Highland Oaxaca Chontal -Added: 2009-07-29 -%% -Type: language -Subtag: chf -Description: Tabasco Chontal -Added: 2009-07-29 -%% -Type: language -Subtag: chg -Description: Chagatai -Added: 2005-10-16 -%% -Type: language -Subtag: chh -Description: Chinook -Added: 2009-07-29 -%% -Type: language -Subtag: chj -Description: Ojitlán Chinantec -Added: 2009-07-29 -%% -Type: language -Subtag: chk -Description: Chuukese -Added: 2005-10-16 -%% -Type: language -Subtag: chl -Description: Cahuilla -Added: 2009-07-29 -%% -Type: language -Subtag: chm -Description: Mari (Russia) -Added: 2005-10-16 -Scope: macrolanguage -%% -Type: language -Subtag: chn -Description: Chinook jargon -Added: 2005-10-16 -%% -Type: language -Subtag: cho -Description: Choctaw -Added: 2005-10-16 -%% -Type: language -Subtag: chp -Description: Chipewyan -Description: Dene Suline -Added: 2005-10-16 -%% -Type: language -Subtag: chq -Description: Quiotepec Chinantec -Added: 2009-07-29 -%% -Type: language -Subtag: chr -Description: Cherokee -Added: 2005-10-16 -%% -Type: language -Subtag: cht -Description: Cholón -Added: 2009-07-29 -%% -Type: language -Subtag: chw -Description: Chuwabu -Added: 2009-07-29 -%% -Type: language -Subtag: chx -Description: Chantyal -Added: 2009-07-29 -%% -Type: language -Subtag: chy -Description: Cheyenne -Added: 2005-10-16 -%% -Type: language -Subtag: chz -Description: Ozumacín Chinantec -Added: 2009-07-29 -%% -Type: language -Subtag: cia -Description: Cia-Cia -Added: 2009-07-29 -%% -Type: language -Subtag: cib -Description: Ci Gbe -Added: 2009-07-29 -%% -Type: language -Subtag: cic -Description: Chickasaw -Added: 2009-07-29 -%% -Type: language -Subtag: cid -Description: Chimariko -Added: 2009-07-29 -%% -Type: language -Subtag: cie -Description: Cineni -Added: 2009-07-29 -%% -Type: language -Subtag: cih -Description: Chinali -Added: 2009-07-29 -%% -Type: language -Subtag: cik -Description: Chitkuli Kinnauri -Added: 2009-07-29 -%% -Type: language -Subtag: cim -Description: Cimbrian -Added: 2009-07-29 -%% -Type: language -Subtag: cin -Description: Cinta Larga -Added: 2009-07-29 -%% -Type: language -Subtag: cip -Description: Chiapanec -Added: 2009-07-29 -%% -Type: language -Subtag: cir -Description: Tiri -Description: Haméa -Description: Méa -Added: 2009-07-29 -%% -Type: language -Subtag: ciw -Description: Chippewa -Added: 2009-07-29 -Macrolanguage: oj -%% -Type: language -Subtag: ciy -Description: Chaima -Added: 2009-07-29 -%% -Type: language -Subtag: cja -Description: Western Cham -Added: 2009-07-29 -%% -Type: language -Subtag: cje -Description: Chru -Added: 2009-07-29 -%% -Type: language -Subtag: cjh -Description: Upper Chehalis -Added: 2009-07-29 -%% -Type: language -Subtag: cji -Description: Chamalal -Added: 2009-07-29 -%% -Type: language -Subtag: cjk -Description: Chokwe -Added: 2009-07-29 -%% -Type: language -Subtag: cjm -Description: Eastern Cham -Added: 2009-07-29 -%% -Type: language -Subtag: cjn -Description: Chenapian -Added: 2009-07-29 -%% -Type: language -Subtag: cjo -Description: Ashéninka Pajonal -Added: 2009-07-29 -%% -Type: language -Subtag: cjp -Description: Cabécar -Added: 2009-07-29 -%% -Type: language -Subtag: cjr -Description: Chorotega -Added: 2009-07-29 -Deprecated: 2010-03-11 -Preferred-Value: mom -%% -Type: language -Subtag: cjs -Description: Shor -Added: 2009-07-29 -%% -Type: language -Subtag: cjv -Description: Chuave -Added: 2009-07-29 -%% -Type: language -Subtag: cjy -Description: Jinyu Chinese -Added: 2009-07-29 -Macrolanguage: zh -%% -Type: language -Subtag: cka -Description: Khumi Awa Chin -Added: 2009-07-29 -Deprecated: 2012-08-12 -Preferred-Value: cmr -%% -Type: language -Subtag: ckb -Description: Central Kurdish -Added: 2009-07-29 -Macrolanguage: ku -%% -Type: language -Subtag: ckh -Description: Chak -Added: 2009-07-29 -%% -Type: language -Subtag: ckl -Description: Cibak -Added: 2009-07-29 -%% -Type: language -Subtag: ckm -Description: Chakavian -Added: 2020-03-28 -%% -Type: language -Subtag: ckn -Description: Kaang Chin -Added: 2013-09-10 -%% -Type: language -Subtag: cko -Description: Anufo -Added: 2009-07-29 -%% -Type: language -Subtag: ckq -Description: Kajakse -Added: 2009-07-29 -%% -Type: language -Subtag: ckr -Description: Kairak -Added: 2009-07-29 -%% -Type: language -Subtag: cks -Description: Tayo -Added: 2009-07-29 -%% -Type: language -Subtag: ckt -Description: Chukot -Added: 2009-07-29 -%% -Type: language -Subtag: cku -Description: Koasati -Added: 2009-07-29 -%% -Type: language -Subtag: ckv -Description: Kavalan -Added: 2009-07-29 -%% -Type: language -Subtag: ckx -Description: Caka -Added: 2009-07-29 -%% -Type: language -Subtag: cky -Description: Cakfem-Mushere -Added: 2009-07-29 -%% -Type: language -Subtag: ckz -Description: Cakchiquel-Quiché Mixed Language -Added: 2009-07-29 -%% -Type: language -Subtag: cla -Description: Ron -Added: 2009-07-29 -%% -Type: language -Subtag: clc -Description: Chilcotin -Description: Tsilhqot’in -Added: 2009-07-29 -%% -Type: language -Subtag: cld -Description: Chaldean Neo-Aramaic -Added: 2009-07-29 -Macrolanguage: syr -%% -Type: language -Subtag: cle -Description: Lealao Chinantec -Added: 2009-07-29 -%% -Type: language -Subtag: clh -Description: Chilisso -Added: 2009-07-29 -%% -Type: language -Subtag: cli -Description: Chakali -Added: 2009-07-29 -%% -Type: language -Subtag: clj -Description: Laitu Chin -Added: 2012-08-12 -%% -Type: language -Subtag: clk -Description: Idu-Mishmi -Added: 2009-07-29 -%% -Type: language -Subtag: cll -Description: Chala -Added: 2009-07-29 -%% -Type: language -Subtag: clm -Description: Klallam -Description: Clallam -Added: 2009-07-29 -%% -Type: language -Subtag: clo -Description: Lowland Oaxaca Chontal -Added: 2009-07-29 -%% -Type: language -Subtag: cls -Description: Classical Sanskrit -Added: 2024-03-04 -Macrolanguage: sa -%% -Type: language -Subtag: clt -Description: Lautu Chin -Added: 2012-08-12 -%% -Type: language -Subtag: clu -Description: Caluyanun -Added: 2009-07-29 -%% -Type: language -Subtag: clw -Description: Chulym -Added: 2009-07-29 -%% -Type: language -Subtag: cly -Description: Eastern Highland Chatino -Added: 2009-07-29 -%% -Type: language -Subtag: cma -Description: Maa -Added: 2009-07-29 -%% -Type: language -Subtag: cmc -Description: Chamic languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: cme -Description: Cerma -Added: 2009-07-29 -%% -Type: language -Subtag: cmg -Description: Classical Mongolian -Added: 2009-07-29 -%% -Type: language -Subtag: cmi -Description: Emberá-Chamí -Added: 2009-07-29 -%% -Type: language -Subtag: cmk -Description: Chimakum -Added: 2009-07-29 -Deprecated: 2010-03-11 -Preferred-Value: xch -%% -Type: language -Subtag: cml -Description: Campalagian -Added: 2009-07-29 -%% -Type: language -Subtag: cmm -Description: Michigamea -Added: 2009-07-29 -%% -Type: language -Subtag: cmn -Description: Mandarin Chinese -Added: 2009-07-29 -Macrolanguage: zh -%% -Type: language -Subtag: cmo -Description: Central Mnong -Added: 2009-07-29 -%% -Type: language -Subtag: cmr -Description: Mro-Khimi Chin -Added: 2009-07-29 -%% -Type: language -Subtag: cms -Description: Messapic -Added: 2009-07-29 -%% -Type: language -Subtag: cmt -Description: Camtho -Added: 2009-07-29 -%% -Type: language -Subtag: cna -Description: Changthang -Added: 2009-07-29 -%% -Type: language -Subtag: cnb -Description: Chinbon Chin -Added: 2009-07-29 -%% -Type: language -Subtag: cnc -Description: Côông -Added: 2009-07-29 -%% -Type: language -Subtag: cng -Description: Northern Qiang -Added: 2009-07-29 -%% -Type: language -Subtag: cnh -Description: Hakha Chin -Description: Haka Chin -Added: 2009-07-29 -%% -Type: language -Subtag: cni -Description: Asháninka -Added: 2009-07-29 -%% -Type: language -Subtag: cnk -Description: Khumi Chin -Added: 2009-07-29 -%% -Type: language -Subtag: cnl -Description: Lalana Chinantec -Added: 2009-07-29 -%% -Type: language -Subtag: cno -Description: Con -Added: 2009-07-29 -%% -Type: language -Subtag: cnp -Description: Northern Ping Chinese -Description: Northern Pinghua -Added: 2020-03-28 -Macrolanguage: zh -%% -Type: language -Subtag: cnq -Description: Chung -Added: 2022-02-25 -%% -Type: language -Subtag: cnr -Description: Montenegrin -Added: 2018-01-23 -Macrolanguage: sh -Comments: see sr for Serbian -%% -Type: language -Subtag: cns -Description: Central Asmat -Added: 2009-07-29 -%% -Type: language -Subtag: cnt -Description: Tepetotutla Chinantec -Added: 2009-07-29 -%% -Type: language -Subtag: cnu -Description: Chenoua -Added: 2009-07-29 -%% -Type: language -Subtag: cnw -Description: Ngawn Chin -Added: 2009-07-29 -%% -Type: language -Subtag: cnx -Description: Middle Cornish -Added: 2009-07-29 -%% -Type: language -Subtag: coa -Description: Cocos Islands Malay -Added: 2009-07-29 -Macrolanguage: ms -%% -Type: language -Subtag: cob -Description: Chicomuceltec -Added: 2009-07-29 -%% -Type: language -Subtag: coc -Description: Cocopa -Added: 2009-07-29 -%% -Type: language -Subtag: cod -Description: Cocama-Cocamilla -Added: 2009-07-29 -%% -Type: language -Subtag: coe -Description: Koreguaje -Added: 2009-07-29 -%% -Type: language -Subtag: cof -Description: Colorado -Added: 2009-07-29 -%% -Type: language -Subtag: cog -Description: Chong -Added: 2009-07-29 -%% -Type: language -Subtag: coh -Description: Chonyi-Dzihana-Kauma -Description: Chichonyi-Chidzihana-Chikauma -Added: 2009-07-29 -%% -Type: language -Subtag: coj -Description: Cochimi -Added: 2009-07-29 -%% -Type: language -Subtag: cok -Description: Santa Teresa Cora -Added: 2009-07-29 -%% -Type: language -Subtag: col -Description: Columbia-Wenatchi -Added: 2009-07-29 -%% -Type: language -Subtag: com -Description: Comanche -Added: 2009-07-29 -%% -Type: language -Subtag: con -Description: Cofán -Added: 2009-07-29 -%% -Type: language -Subtag: coo -Description: Comox -Added: 2009-07-29 -%% -Type: language -Subtag: cop -Description: Coptic -Added: 2005-10-16 -%% -Type: language -Subtag: coq -Description: Coquille -Added: 2009-07-29 -%% -Type: language -Subtag: cot -Description: Caquinte -Added: 2009-07-29 -%% -Type: language -Subtag: cou -Description: Wamey -Added: 2009-07-29 -%% -Type: language -Subtag: cov -Description: Cao Miao -Added: 2009-07-29 -%% -Type: language -Subtag: cow -Description: Cowlitz -Added: 2009-07-29 -%% -Type: language -Subtag: cox -Description: Nanti -Added: 2009-07-29 -%% -Type: language -Subtag: coy -Description: Coyaima -Added: 2009-07-29 -Deprecated: 2016-05-30 -Preferred-Value: pij -%% -Type: language -Subtag: coz -Description: Chochotec -Added: 2009-07-29 -%% -Type: language -Subtag: cpa -Description: Palantla Chinantec -Added: 2009-07-29 -%% -Type: language -Subtag: cpb -Description: Ucayali-Yurúa Ashéninka -Added: 2009-07-29 -%% -Type: language -Subtag: cpc -Description: Ajyíninka Apurucayali -Added: 2009-07-29 -%% -Type: language -Subtag: cpe -Description: English-based creoles and pidgins -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: cpf -Description: French-based creoles and pidgins -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: cpg -Description: Cappadocian Greek -Added: 2009-07-29 -%% -Type: language -Subtag: cpi -Description: Chinese Pidgin English -Added: 2009-07-29 -%% -Type: language -Subtag: cpn -Description: Cherepon -Added: 2009-07-29 -%% -Type: language -Subtag: cpo -Description: Kpeego -Added: 2013-09-10 -%% -Type: language -Subtag: cpp -Description: Portuguese-based creoles and pidgins -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: cps -Description: Capiznon -Added: 2009-07-29 -%% -Type: language -Subtag: cpu -Description: Pichis Ashéninka -Added: 2009-07-29 -%% -Type: language -Subtag: cpx -Description: Pu-Xian Chinese -Added: 2009-07-29 -Macrolanguage: zh -%% -Type: language -Subtag: cpy -Description: South Ucayali Ashéninka -Added: 2009-07-29 -%% -Type: language -Subtag: cqd -Description: Chuanqiandian Cluster Miao -Added: 2009-07-29 -Macrolanguage: hmn -%% -Type: language -Subtag: cqu -Description: Chilean Quechua -Added: 2009-07-29 -Deprecated: 2016-05-30 -Preferred-Value: quh -Macrolanguage: qu -%% -Type: language -Subtag: cra -Description: Chara -Added: 2009-07-29 -%% -Type: language -Subtag: crb -Description: Island Carib -Added: 2009-07-29 -%% -Type: language -Subtag: crc -Description: Lonwolwol -Added: 2009-07-29 -%% -Type: language -Subtag: crd -Description: Coeur d'Alene -Added: 2009-07-29 -%% -Type: language -Subtag: crf -Description: Caramanta -Added: 2009-07-29 -%% -Type: language -Subtag: crg -Description: Michif -Added: 2009-07-29 -%% -Type: language -Subtag: crh -Description: Crimean Tatar -Description: Crimean Turkish -Added: 2005-10-16 -%% -Type: language -Subtag: cri -Description: Sãotomense -Added: 2009-07-29 -%% -Type: language -Subtag: crj -Description: Southern East Cree -Added: 2009-07-29 -Macrolanguage: cr -%% -Type: language -Subtag: crk -Description: Plains Cree -Added: 2009-07-29 -Macrolanguage: cr -%% -Type: language -Subtag: crl -Description: Northern East Cree -Added: 2009-07-29 -Macrolanguage: cr -%% -Type: language -Subtag: crm -Description: Moose Cree -Added: 2009-07-29 -Macrolanguage: cr -%% -Type: language -Subtag: crn -Description: El Nayar Cora -Added: 2009-07-29 -%% -Type: language -Subtag: cro -Description: Crow -Added: 2009-07-29 -%% -Type: language -Subtag: crp -Description: Creoles and pidgins -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: crq -Description: Iyo'wujwa Chorote -Added: 2009-07-29 -%% -Type: language -Subtag: crr -Description: Carolina Algonquian -Added: 2009-07-29 -%% -Type: language -Subtag: crs -Description: Seselwa Creole French -Added: 2009-07-29 -%% -Type: language -Subtag: crt -Description: Iyojwa'ja Chorote -Added: 2009-07-29 -%% -Type: language -Subtag: crv -Description: Chaura -Added: 2009-07-29 -%% -Type: language -Subtag: crw -Description: Chrau -Added: 2009-07-29 -%% -Type: language -Subtag: crx -Description: Carrier -Added: 2009-07-29 -%% -Type: language -Subtag: cry -Description: Cori -Added: 2009-07-29 -%% -Type: language -Subtag: crz -Description: Cruzeño -Added: 2009-07-29 -%% -Type: language -Subtag: csa -Description: Chiltepec Chinantec -Added: 2009-07-29 -%% -Type: language -Subtag: csb -Description: Kashubian -Added: 2005-10-16 -%% -Type: language -Subtag: csc -Description: Catalan Sign Language -Description: Lengua de señas catalana -Description: Llengua de Signes Catalana -Added: 2009-07-29 -%% -Type: language -Subtag: csd -Description: Chiangmai Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: cse -Description: Czech Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: csf -Description: Cuba Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: csg -Description: Chilean Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: csh -Description: Asho Chin -Added: 2009-07-29 -%% -Type: language -Subtag: csi -Description: Coast Miwok -Added: 2009-07-29 -%% -Type: language -Subtag: csj -Description: Songlai Chin -Added: 2013-09-10 -%% -Type: language -Subtag: csk -Description: Jola-Kasa -Added: 2009-07-29 -%% -Type: language -Subtag: csl -Description: Chinese Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: csm -Description: Central Sierra Miwok -Added: 2009-07-29 -%% -Type: language -Subtag: csn -Description: Colombian Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: cso -Description: Sochiapam Chinantec -Description: Sochiapan Chinantec -Added: 2009-07-29 -%% -Type: language -Subtag: csp -Description: Southern Ping Chinese -Description: Southern Pinghua -Added: 2020-03-28 -Macrolanguage: zh -%% -Type: language -Subtag: csq -Description: Croatia Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: csr -Description: Costa Rican Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: css -Description: Southern Ohlone -Added: 2009-07-29 -%% -Type: language -Subtag: cst -Description: Northern Ohlone -Added: 2009-07-29 -%% -Type: language -Subtag: csu -Description: Central Sudanic languages -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: csv -Description: Sumtu Chin -Added: 2012-08-12 -%% -Type: language -Subtag: csw -Description: Swampy Cree -Added: 2009-07-29 -Macrolanguage: cr -%% -Type: language -Subtag: csx -Description: Cambodian Sign Language -Added: 2021-02-20 -%% -Type: language -Subtag: csy -Description: Siyin Chin -Added: 2009-07-29 -%% -Type: language -Subtag: csz -Description: Coos -Added: 2009-07-29 -%% -Type: language -Subtag: cta -Description: Tataltepec Chatino -Added: 2009-07-29 -%% -Type: language -Subtag: ctc -Description: Chetco -Added: 2009-07-29 -%% -Type: language -Subtag: ctd -Description: Tedim Chin -Added: 2009-07-29 -%% -Type: language -Subtag: cte -Description: Tepinapa Chinantec -Added: 2009-07-29 -%% -Type: language -Subtag: ctg -Description: Chittagonian -Added: 2009-07-29 -%% -Type: language -Subtag: cth -Description: Thaiphum Chin -Added: 2012-08-12 -%% -Type: language -Subtag: ctl -Description: Tlacoatzintepec Chinantec -Added: 2009-07-29 -%% -Type: language -Subtag: ctm -Description: Chitimacha -Added: 2009-07-29 -%% -Type: language -Subtag: ctn -Description: Chhintange -Added: 2009-07-29 -%% -Type: language -Subtag: cto -Description: Emberá-Catío -Added: 2009-07-29 -%% -Type: language -Subtag: ctp -Description: Western Highland Chatino -Added: 2009-07-29 -%% -Type: language -Subtag: cts -Description: Northern Catanduanes Bikol -Added: 2009-07-29 -Macrolanguage: bik -%% -Type: language -Subtag: ctt -Description: Wayanad Chetti -Added: 2009-07-29 -%% -Type: language -Subtag: ctu -Description: Chol -Added: 2009-07-29 -%% -Type: language -Subtag: cty -Description: Moundadan Chetty -Added: 2021-02-20 -%% -Type: language -Subtag: ctz -Description: Zacatepec Chatino -Added: 2009-07-29 -%% -Type: language -Subtag: cua -Description: Cua -Added: 2009-07-29 -%% -Type: language -Subtag: cub -Description: Cubeo -Added: 2009-07-29 -%% -Type: language -Subtag: cuc -Description: Usila Chinantec -Added: 2009-07-29 -%% -Type: language -Subtag: cug -Description: Chungmboko -Description: Cung -Added: 2009-07-29 -Deprecated: 2022-02-25 -Comments: see bpc, cnq -%% -Type: language -Subtag: cuh -Description: Chuka -Description: Gichuka -Added: 2009-07-29 -%% -Type: language -Subtag: cui -Description: Cuiba -Added: 2009-07-29 -%% -Type: language -Subtag: cuj -Description: Mashco Piro -Added: 2009-07-29 -%% -Type: language -Subtag: cuk -Description: San Blas Kuna -Added: 2009-07-29 -%% -Type: language -Subtag: cul -Description: Culina -Description: Kulina -Added: 2009-07-29 -%% -Type: language -Subtag: cum -Description: Cumeral -Added: 2009-07-29 -Deprecated: 2016-05-30 -%% -Type: language -Subtag: cuo -Description: Cumanagoto -Added: 2009-07-29 -%% -Type: language -Subtag: cup -Description: Cupeño -Added: 2009-07-29 -%% -Type: language -Subtag: cuq -Description: Cun -Added: 2009-07-29 -%% -Type: language -Subtag: cur -Description: Chhulung -Added: 2009-07-29 -%% -Type: language -Subtag: cus -Description: Cushitic languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: cut -Description: Teutila Cuicatec -Added: 2009-07-29 -%% -Type: language -Subtag: cuu -Description: Tai Ya -Added: 2009-07-29 -%% -Type: language -Subtag: cuv -Description: Cuvok -Added: 2009-07-29 -%% -Type: language -Subtag: cuw -Description: Chukwa -Added: 2009-07-29 -%% -Type: language -Subtag: cux -Description: Tepeuxila Cuicatec -Added: 2009-07-29 -%% -Type: language -Subtag: cuy -Description: Cuitlatec -Added: 2018-03-08 -%% -Type: language -Subtag: cvg -Description: Chug -Added: 2009-07-29 -%% -Type: language -Subtag: cvn -Description: Valle Nacional Chinantec -Added: 2009-07-29 -%% -Type: language -Subtag: cwa -Description: Kabwa -Added: 2009-07-29 -%% -Type: language -Subtag: cwb -Description: Maindo -Added: 2009-07-29 -%% -Type: language -Subtag: cwd -Description: Woods Cree -Added: 2009-07-29 -Macrolanguage: cr -%% -Type: language -Subtag: cwe -Description: Kwere -Added: 2009-07-29 -%% -Type: language -Subtag: cwg -Description: Chewong -Description: Cheq Wong -Added: 2009-07-29 -%% -Type: language -Subtag: cwt -Description: Kuwaataay -Added: 2009-07-29 -%% -Type: language -Subtag: cxh -Description: Cha'ari -Added: 2023-03-17 -%% -Type: language -Subtag: cya -Description: Nopala Chatino -Added: 2009-07-29 -%% -Type: language -Subtag: cyb -Description: Cayubaba -Added: 2009-07-29 -%% -Type: language -Subtag: cyo -Description: Cuyonon -Added: 2009-07-29 -%% -Type: language -Subtag: czh -Description: Huizhou Chinese -Added: 2009-07-29 -Macrolanguage: zh -%% -Type: language -Subtag: czk -Description: Knaanic -Added: 2009-07-29 -%% -Type: language -Subtag: czn -Description: Zenzontepec Chatino -Added: 2009-07-29 -%% -Type: language -Subtag: czo -Description: Min Zhong Chinese -Added: 2009-07-29 -Macrolanguage: zh -%% -Type: language -Subtag: czt -Description: Zotung Chin -Added: 2009-07-29 -%% -Type: language -Subtag: daa -Description: Dangaléat -Added: 2009-07-29 -%% -Type: language -Subtag: dac -Description: Dambi -Added: 2009-07-29 -%% -Type: language -Subtag: dad -Description: Marik -Added: 2009-07-29 -%% -Type: language -Subtag: dae -Description: Duupa -Added: 2009-07-29 -%% -Type: language -Subtag: daf -Description: Dan -Added: 2009-07-29 -Deprecated: 2013-09-10 -Comments: see dnj, lda -%% -Type: language -Subtag: dag -Description: Dagbani -Added: 2009-07-29 -%% -Type: language -Subtag: dah -Description: Gwahatike -Added: 2009-07-29 -%% -Type: language -Subtag: dai -Description: Day -Added: 2009-07-29 -%% -Type: language -Subtag: daj -Description: Dar Fur Daju -Added: 2009-07-29 -%% -Type: language -Subtag: dak -Description: Dakota -Added: 2005-10-16 -%% -Type: language -Subtag: dal -Description: Dahalo -Added: 2009-07-29 -%% -Type: language -Subtag: dam -Description: Damakawa -Added: 2009-07-29 -%% -Type: language -Subtag: dao -Description: Daai Chin -Added: 2009-07-29 -%% -Type: language -Subtag: dap -Description: Nisi (India) -Added: 2009-07-29 -Deprecated: 2012-08-12 -Comments: see njz, tgj -%% -Type: language -Subtag: daq -Description: Dandami Maria -Added: 2009-07-29 -%% -Type: language -Subtag: dar -Description: Dargwa -Added: 2005-10-16 -%% -Type: language -Subtag: das -Description: Daho-Doo -Added: 2009-07-29 -%% -Type: language -Subtag: dau -Description: Dar Sila Daju -Added: 2009-07-29 -%% -Type: language -Subtag: dav -Description: Taita -Description: Dawida -Added: 2009-07-29 -%% -Type: language -Subtag: daw -Description: Davawenyo -Added: 2009-07-29 -%% -Type: language -Subtag: dax -Description: Dayi -Added: 2009-07-29 -%% -Type: language -Subtag: day -Description: Land Dayak languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: daz -Description: Moi-Wadea -Description: Dao -Added: 2009-07-29 -%% -Type: language -Subtag: dba -Description: Bangime -Added: 2009-07-29 -%% -Type: language -Subtag: dbb -Description: Deno -Added: 2009-07-29 -%% -Type: language -Subtag: dbd -Description: Dadiya -Added: 2009-07-29 -%% -Type: language -Subtag: dbe -Description: Dabe -Added: 2009-07-29 -%% -Type: language -Subtag: dbf -Description: Edopi -Added: 2009-07-29 -%% -Type: language -Subtag: dbg -Description: Dogul Dom Dogon -Added: 2009-07-29 -%% -Type: language -Subtag: dbi -Description: Doka -Added: 2009-07-29 -%% -Type: language -Subtag: dbj -Description: Ida'an -Added: 2009-07-29 -%% -Type: language -Subtag: dbl -Description: Dyirbal -Added: 2009-07-29 -%% -Type: language -Subtag: dbm -Description: Duguri -Added: 2009-07-29 -%% -Type: language -Subtag: dbn -Description: Duriankere -Added: 2009-07-29 -%% -Type: language -Subtag: dbo -Description: Dulbu -Added: 2009-07-29 -%% -Type: language -Subtag: dbp -Description: Duwai -Added: 2009-07-29 -%% -Type: language -Subtag: dbq -Description: Daba -Added: 2009-07-29 -%% -Type: language -Subtag: dbr -Description: Dabarre -Added: 2009-07-29 -%% -Type: language -Subtag: dbt -Description: Ben Tey Dogon -Added: 2012-08-12 -%% -Type: language -Subtag: dbu -Description: Bondum Dom Dogon -Added: 2009-07-29 -%% -Type: language -Subtag: dbv -Description: Dungu -Added: 2009-07-29 -%% -Type: language -Subtag: dbw -Description: Bankan Tey Dogon -Added: 2012-08-12 -%% -Type: language -Subtag: dby -Description: Dibiyaso -Added: 2009-07-29 -%% -Type: language -Subtag: dcc -Description: Deccan -Added: 2009-07-29 -%% -Type: language -Subtag: dcr -Description: Negerhollands -Added: 2009-07-29 -%% -Type: language -Subtag: dda -Description: Dadi Dadi -Added: 2012-08-12 -%% -Type: language -Subtag: ddd -Description: Dongotono -Added: 2009-07-29 -%% -Type: language -Subtag: dde -Description: Doondo -Added: 2009-07-29 -%% -Type: language -Subtag: ddg -Description: Fataluku -Added: 2009-07-29 -%% -Type: language -Subtag: ddi -Description: West Goodenough -Added: 2009-07-29 -%% -Type: language -Subtag: ddj -Description: Jaru -Added: 2009-07-29 -%% -Type: language -Subtag: ddn -Description: Dendi (Benin) -Added: 2009-07-29 -%% -Type: language -Subtag: ddo -Description: Dido -Added: 2009-07-29 -%% -Type: language -Subtag: ddr -Description: Dhudhuroa -Added: 2012-08-12 -%% -Type: language -Subtag: dds -Description: Donno So Dogon -Added: 2009-07-29 -%% -Type: language -Subtag: ddw -Description: Dawera-Daweloor -Added: 2009-07-29 -%% -Type: language -Subtag: dec -Description: Dagik -Added: 2009-07-29 -%% -Type: language -Subtag: ded -Description: Dedua -Added: 2009-07-29 -%% -Type: language -Subtag: dee -Description: Dewoin -Added: 2009-07-29 -%% -Type: language -Subtag: def -Description: Dezfuli -Added: 2009-07-29 -%% -Type: language -Subtag: deg -Description: Degema -Added: 2009-07-29 -%% -Type: language -Subtag: deh -Description: Dehwari -Added: 2009-07-29 -%% -Type: language -Subtag: dei -Description: Demisa -Added: 2009-07-29 -%% -Type: language -Subtag: dek -Description: Dek -Added: 2009-07-29 -Deprecated: 2024-12-12 -Preferred-Value: sqm -%% -Type: language -Subtag: del -Description: Delaware -Added: 2005-10-16 -Scope: macrolanguage -%% -Type: language -Subtag: dem -Description: Dem -Added: 2009-07-29 -%% -Type: language -Subtag: den -Description: Slavey -Added: 2005-10-16 -Scope: macrolanguage -%% -Type: language -Subtag: dep -Description: Pidgin Delaware -Added: 2009-07-29 -%% -Type: language -Subtag: deq -Description: Dendi (Central African Republic) -Added: 2009-07-29 -%% -Type: language -Subtag: der -Description: Deori -Added: 2009-07-29 -%% -Type: language -Subtag: des -Description: Desano -Added: 2009-07-29 -%% -Type: language -Subtag: dev -Description: Domung -Added: 2009-07-29 -%% -Type: language -Subtag: dez -Description: Dengese -Added: 2009-07-29 -%% -Type: language -Subtag: dga -Description: Southern Dagaare -Added: 2009-07-29 -%% -Type: language -Subtag: dgb -Description: Bunoge Dogon -Added: 2009-07-29 -%% -Type: language -Subtag: dgc -Description: Casiguran Dumagat Agta -Added: 2009-07-29 -%% -Type: language -Subtag: dgd -Description: Dagaari Dioula -Added: 2009-07-29 -%% -Type: language -Subtag: dge -Description: Degenan -Added: 2009-07-29 -%% -Type: language -Subtag: dgg -Description: Doga -Added: 2009-07-29 -%% -Type: language -Subtag: dgh -Description: Dghwede -Added: 2009-07-29 -%% -Type: language -Subtag: dgi -Description: Northern Dagara -Added: 2009-07-29 -%% -Type: language -Subtag: dgk -Description: Dagba -Added: 2009-07-29 -%% -Type: language -Subtag: dgl -Description: Andaandi -Description: Dongolawi -Added: 2012-08-12 -%% -Type: language -Subtag: dgn -Description: Dagoman -Added: 2009-07-29 -%% -Type: language -Subtag: dgo -Description: Dogri (individual language) -Added: 2009-07-29 -Macrolanguage: doi -%% -Type: language -Subtag: dgr -Description: Tlicho -Description: Dogrib -Description: Tłı̨chǫ -Added: 2005-10-16 -%% -Type: language -Subtag: dgs -Description: Dogoso -Added: 2009-07-29 -%% -Type: language -Subtag: dgt -Description: Ndra'ngith -Added: 2012-08-12 -%% -Type: language -Subtag: dgu -Description: Degaru -Added: 2009-07-29 -Deprecated: 2020-03-28 -%% -Type: language -Subtag: dgw -Description: Daungwurrung -Added: 2012-08-12 -%% -Type: language -Subtag: dgx -Description: Doghoro -Added: 2009-07-29 -%% -Type: language -Subtag: dgz -Description: Daga -Added: 2009-07-29 -%% -Type: language -Subtag: dha -Description: Dhanwar (India) -Added: 2009-07-29 -Deprecated: 2011-08-16 -%% -Type: language -Subtag: dhd -Description: Dhundari -Added: 2009-07-29 -Macrolanguage: mwr -%% -Type: language -Subtag: dhg -Description: Dhangu-Djangu -Description: Dhangu -Description: Djangu -Added: 2009-07-29 -%% -Type: language -Subtag: dhi -Description: Dhimal -Added: 2009-07-29 -%% -Type: language -Subtag: dhl -Description: Dhalandji -Added: 2009-07-29 -%% -Type: language -Subtag: dhm -Description: Zemba -Added: 2009-07-29 -%% -Type: language -Subtag: dhn -Description: Dhanki -Added: 2009-07-29 -%% -Type: language -Subtag: dho -Description: Dhodia -Added: 2009-07-29 -%% -Type: language -Subtag: dhr -Description: Dhargari -Added: 2009-07-29 -%% -Type: language -Subtag: dhs -Description: Dhaiso -Added: 2009-07-29 -%% -Type: language -Subtag: dhu -Description: Dhurga -Added: 2009-07-29 -%% -Type: language -Subtag: dhv -Description: Dehu -Description: Drehu -Added: 2009-07-29 -%% -Type: language -Subtag: dhw -Description: Dhanwar (Nepal) -Added: 2009-07-29 -%% -Type: language -Subtag: dhx -Description: Dhungaloo -Added: 2013-09-10 -%% -Type: language -Subtag: dia -Description: Dia -Added: 2009-07-29 -%% -Type: language -Subtag: dib -Description: South Central Dinka -Added: 2009-07-29 -Macrolanguage: din -%% -Type: language -Subtag: dic -Description: Lakota Dida -Added: 2009-07-29 -%% -Type: language -Subtag: did -Description: Didinga -Added: 2009-07-29 -%% -Type: language -Subtag: dif -Description: Dieri -Description: Diyari -Added: 2009-07-29 -%% -Type: language -Subtag: dig -Description: Digo -Description: Chidigo -Added: 2009-07-29 -%% -Type: language -Subtag: dih -Description: Kumiai -Added: 2009-07-29 -%% -Type: language -Subtag: dii -Description: Dimbong -Added: 2009-07-29 -%% -Type: language -Subtag: dij -Description: Dai -Added: 2009-07-29 -%% -Type: language -Subtag: dik -Description: Southwestern Dinka -Added: 2009-07-29 -Macrolanguage: din -%% -Type: language -Subtag: dil -Description: Dilling -Added: 2009-07-29 -%% -Type: language -Subtag: dim -Description: Dime -Added: 2009-07-29 -%% -Type: language -Subtag: din -Description: Dinka -Added: 2005-10-16 -Scope: macrolanguage -%% -Type: language -Subtag: dio -Description: Dibo -Added: 2009-07-29 -%% -Type: language -Subtag: dip -Description: Northeastern Dinka -Added: 2009-07-29 -Macrolanguage: din -%% -Type: language -Subtag: diq -Description: Dimli (individual language) -Added: 2009-07-29 -Macrolanguage: zza -%% -Type: language -Subtag: dir -Description: Dirim -Added: 2009-07-29 -%% -Type: language -Subtag: dis -Description: Dimasa -Added: 2009-07-29 -%% -Type: language -Subtag: dit -Description: Dirari -Added: 2009-07-29 -Deprecated: 2019-04-29 -Preferred-Value: dif -%% -Type: language -Subtag: diu -Description: Diriku -Added: 2009-07-29 -%% -Type: language -Subtag: diw -Description: Northwestern Dinka -Added: 2009-07-29 -Macrolanguage: din -%% -Type: language -Subtag: dix -Description: Dixon Reef -Added: 2009-07-29 -%% -Type: language -Subtag: diy -Description: Diuwe -Added: 2009-07-29 -%% -Type: language -Subtag: diz -Description: Ding -Added: 2009-07-29 -%% -Type: language -Subtag: dja -Description: Djadjawurrung -Added: 2012-08-12 -%% -Type: language -Subtag: djb -Description: Djinba -Added: 2009-07-29 -%% -Type: language -Subtag: djc -Description: Dar Daju Daju -Added: 2009-07-29 -%% -Type: language -Subtag: djd -Description: Djamindjung -Description: Ngaliwurru -Added: 2009-07-29 -%% -Type: language -Subtag: dje -Description: Zarma -Added: 2009-07-29 -%% -Type: language -Subtag: djf -Description: Djangun -Added: 2009-07-29 -%% -Type: language -Subtag: dji -Description: Djinang -Added: 2009-07-29 -%% -Type: language -Subtag: djj -Description: Djeebbana -Added: 2009-07-29 -%% -Type: language -Subtag: djk -Description: Eastern Maroon Creole -Description: Businenge Tongo -Description: Nenge -Added: 2009-07-29 -%% -Type: language -Subtag: djl -Description: Djiwarli -Added: 2009-07-29 -Deprecated: 2013-09-10 -Comments: see dze, iin -%% -Type: language -Subtag: djm -Description: Jamsay Dogon -Added: 2009-07-29 -%% -Type: language -Subtag: djn -Description: Jawoyn -Description: Djauan -Added: 2009-07-29 -%% -Type: language -Subtag: djo -Description: Jangkang -Added: 2009-07-29 -%% -Type: language -Subtag: djr -Description: Djambarrpuyngu -Added: 2009-07-29 -%% -Type: language -Subtag: dju -Description: Kapriman -Added: 2009-07-29 -%% -Type: language -Subtag: djw -Description: Djawi -Added: 2009-07-29 -%% -Type: language -Subtag: dka -Description: Dakpakha -Added: 2009-07-29 -%% -Type: language -Subtag: dkg -Description: Kadung -Added: 2021-02-20 -%% -Type: language -Subtag: dkk -Description: Dakka -Added: 2009-07-29 -%% -Type: language -Subtag: dkl -Description: Kolum So Dogon -Added: 2009-07-29 -Deprecated: 2011-08-16 -Comments: see aqd, dmb -%% -Type: language -Subtag: dkr -Description: Kuijau -Added: 2009-07-29 -%% -Type: language -Subtag: dks -Description: Southeastern Dinka -Added: 2009-07-29 -Macrolanguage: din -%% -Type: language -Subtag: dkx -Description: Mazagway -Added: 2009-07-29 -%% -Type: language -Subtag: dlg -Description: Dolgan -Added: 2009-07-29 -%% -Type: language -Subtag: dlk -Description: Dahalik -Added: 2013-09-10 -%% -Type: language -Subtag: dlm -Description: Dalmatian -Added: 2009-07-29 -%% -Type: language -Subtag: dln -Description: Darlong -Added: 2009-07-29 -%% -Type: language -Subtag: dma -Description: Duma -Added: 2009-07-29 -%% -Type: language -Subtag: dmb -Description: Mombo Dogon -Added: 2011-08-16 -%% -Type: language -Subtag: dmc -Description: Gavak -Added: 2009-07-29 -%% -Type: language -Subtag: dmd -Description: Madhi Madhi -Added: 2012-08-12 -%% -Type: language -Subtag: dme -Description: Dugwor -Added: 2009-07-29 -%% -Type: language -Subtag: dmf -Description: Medefaidrin -Added: 2020-03-28 -%% -Type: language -Subtag: dmg -Description: Upper Kinabatangan -Added: 2009-07-29 -%% -Type: language -Subtag: dmk -Description: Domaaki -Added: 2009-07-29 -%% -Type: language -Subtag: dml -Description: Dameli -Added: 2009-07-29 -%% -Type: language -Subtag: dmm -Description: Dama -Added: 2009-07-29 -%% -Type: language -Subtag: dmn -Description: Mande languages -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: dmo -Description: Kemedzung -Added: 2009-07-29 -%% -Type: language -Subtag: dmr -Description: East Damar -Added: 2009-07-29 -%% -Type: language -Subtag: dms -Description: Dampelas -Added: 2009-07-29 -%% -Type: language -Subtag: dmu -Description: Dubu -Description: Tebi -Added: 2009-07-29 -%% -Type: language -Subtag: dmv -Description: Dumpas -Added: 2009-07-29 -%% -Type: language -Subtag: dmw -Description: Mudburra -Added: 2013-09-10 -%% -Type: language -Subtag: dmx -Description: Dema -Added: 2009-07-29 -%% -Type: language -Subtag: dmy -Description: Demta -Description: Sowari -Added: 2009-07-29 -%% -Type: language -Subtag: dna -Description: Upper Grand Valley Dani -Added: 2009-07-29 -%% -Type: language -Subtag: dnd -Description: Daonda -Added: 2009-07-29 -%% -Type: language -Subtag: dne -Description: Ndendeule -Added: 2009-07-29 -%% -Type: language -Subtag: dng -Description: Dungan -Added: 2009-07-29 -%% -Type: language -Subtag: dni -Description: Lower Grand Valley Dani -Added: 2009-07-29 -%% -Type: language -Subtag: dnj -Description: Dan -Added: 2013-09-10 -%% -Type: language -Subtag: dnk -Description: Dengka -Added: 2009-07-29 -%% -Type: language -Subtag: dnn -Description: Dzùùngoo -Added: 2009-07-29 -%% -Type: language -Subtag: dno -Description: Ndrulo -Description: Northern Lendu -Added: 2018-10-28 -%% -Type: language -Subtag: dnr -Description: Danaru -Added: 2009-07-29 -%% -Type: language -Subtag: dnt -Description: Mid Grand Valley Dani -Added: 2009-07-29 -%% -Type: language -Subtag: dnu -Description: Danau -Added: 2009-07-29 -%% -Type: language -Subtag: dnv -Description: Danu -Added: 2012-08-12 -%% -Type: language -Subtag: dnw -Description: Western Dani -Added: 2009-07-29 -%% -Type: language -Subtag: dny -Description: Dení -Added: 2009-07-29 -%% -Type: language -Subtag: doa -Description: Dom -Added: 2009-07-29 -%% -Type: language -Subtag: dob -Description: Dobu -Added: 2009-07-29 -%% -Type: language -Subtag: doc -Description: Northern Dong -Added: 2009-07-29 -%% -Type: language -Subtag: doe -Description: Doe -Added: 2009-07-29 -%% -Type: language -Subtag: dof -Description: Domu -Added: 2009-07-29 -%% -Type: language -Subtag: doh -Description: Dong -Added: 2009-07-29 -%% -Type: language -Subtag: doi -Description: Dogri (macrolanguage) -Added: 2005-10-16 -Scope: macrolanguage -%% -Type: language -Subtag: dok -Description: Dondo -Added: 2009-07-29 -%% -Type: language -Subtag: dol -Description: Doso -Added: 2009-07-29 -%% -Type: language -Subtag: don -Description: Toura (Papua New Guinea) -Added: 2009-07-29 -%% -Type: language -Subtag: doo -Description: Dongo -Added: 2009-07-29 -%% -Type: language -Subtag: dop -Description: Lukpa -Added: 2009-07-29 -%% -Type: language -Subtag: doq -Description: Dominican Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: dor -Description: Dori'o -Added: 2009-07-29 -%% -Type: language -Subtag: dos -Description: Dogosé -Added: 2009-07-29 -%% -Type: language -Subtag: dot -Description: Dass -Added: 2009-07-29 -%% -Type: language -Subtag: dov -Description: Dombe -Added: 2009-07-29 -%% -Type: language -Subtag: dow -Description: Doyayo -Added: 2009-07-29 -%% -Type: language -Subtag: dox -Description: Bussa -Added: 2009-07-29 -%% -Type: language -Subtag: doy -Description: Dompo -Added: 2009-07-29 -%% -Type: language -Subtag: doz -Description: Dorze -Added: 2009-07-29 -%% -Type: language -Subtag: dpp -Description: Papar -Added: 2009-07-29 -%% -Type: language -Subtag: dra -Description: Dravidian languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: drb -Description: Dair -Added: 2009-07-29 -%% -Type: language -Subtag: drc -Description: Minderico -Added: 2011-08-16 -%% -Type: language -Subtag: drd -Description: Darmiya -Added: 2009-07-29 -%% -Type: language -Subtag: dre -Description: Dolpo -Added: 2009-07-29 -%% -Type: language -Subtag: drg -Description: Rungus -Added: 2009-07-29 -%% -Type: language -Subtag: drh -Description: Darkhat -Added: 2009-07-29 -Deprecated: 2010-03-11 -Preferred-Value: khk -%% -Type: language -Subtag: dri -Description: C'Lela -Added: 2009-07-29 -%% -Type: language -Subtag: drl -Description: Paakantyi -Added: 2009-07-29 -%% -Type: language -Subtag: drn -Description: West Damar -Added: 2009-07-29 -%% -Type: language -Subtag: dro -Description: Daro-Matu Melanau -Added: 2009-07-29 -%% -Type: language -Subtag: drq -Description: Dura -Added: 2009-07-29 -%% -Type: language -Subtag: drr -Description: Dororo -Added: 2009-07-29 -Deprecated: 2020-03-28 -Preferred-Value: kzk -%% -Type: language -Subtag: drs -Description: Gedeo -Added: 2009-07-29 -%% -Type: language -Subtag: drt -Description: Drents -Added: 2009-07-29 -%% -Type: language -Subtag: dru -Description: Rukai -Added: 2009-07-29 -%% -Type: language -Subtag: drw -Description: Darwazi -Added: 2009-07-29 -Deprecated: 2010-03-11 -Preferred-Value: prs -%% -Type: language -Subtag: dry -Description: Darai -Added: 2009-07-29 -%% -Type: language -Subtag: dsb -Description: Lower Sorbian -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: dse -Description: Dutch Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: dsh -Description: Daasanach -Added: 2009-07-29 -%% -Type: language -Subtag: dsi -Description: Disa -Added: 2009-07-29 -%% -Type: language -Subtag: dsk -Description: Dokshi -Added: 2023-03-17 -%% -Type: language -Subtag: dsl -Description: Danish Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: dsn -Description: Dusner -Added: 2009-07-29 -%% -Type: language -Subtag: dso -Description: Desiya -Added: 2009-07-29 -%% -Type: language -Subtag: dsq -Description: Tadaksahak -Added: 2009-07-29 -%% -Type: language -Subtag: dsz -Description: Mardin Sign Language -Added: 2022-02-25 -%% -Type: language -Subtag: dta -Description: Daur -Added: 2009-07-29 -%% -Type: language -Subtag: dtb -Description: Labuk-Kinabatangan Kadazan -Added: 2009-07-29 -%% -Type: language -Subtag: dtd -Description: Ditidaht -Added: 2011-08-16 -%% -Type: language -Subtag: dth -Description: Adithinngithigh -Added: 2012-08-12 -%% -Type: language -Subtag: dti -Description: Ana Tinga Dogon -Added: 2009-07-29 -%% -Type: language -Subtag: dtk -Description: Tene Kan Dogon -Added: 2009-07-29 -%% -Type: language -Subtag: dtm -Description: Tomo Kan Dogon -Added: 2009-07-29 -%% -Type: language -Subtag: dtn -Description: Daatsʼíin -Added: 2016-05-30 -%% -Type: language -Subtag: dto -Description: Tommo So Dogon -Added: 2012-08-12 -%% -Type: language -Subtag: dtp -Description: Kadazan Dusun -Description: Central Dusun -Added: 2009-07-29 -%% -Type: language -Subtag: dtr -Description: Lotud -Added: 2009-07-29 -%% -Type: language -Subtag: dts -Description: Toro So Dogon -Added: 2009-07-29 -%% -Type: language -Subtag: dtt -Description: Toro Tegu Dogon -Added: 2009-07-29 -%% -Type: language -Subtag: dtu -Description: Tebul Ure Dogon -Added: 2009-07-29 -%% -Type: language -Subtag: dty -Description: Dotyali -Added: 2012-08-12 -Macrolanguage: ne -%% -Type: language -Subtag: dua -Description: Duala -Added: 2005-10-16 -%% -Type: language -Subtag: dub -Description: Dubli -Added: 2009-07-29 -%% -Type: language -Subtag: duc -Description: Duna -Added: 2009-07-29 -%% -Type: language -Subtag: dud -Description: Hun-Saare -Added: 2009-07-29 -Deprecated: 2019-04-16 -Comments: see uth, uss -%% -Type: language -Subtag: due -Description: Umiray Dumaget Agta -Added: 2009-07-29 -%% -Type: language -Subtag: duf -Description: Dumbea -Description: Drubea -Added: 2009-07-29 -%% -Type: language -Subtag: dug -Description: Duruma -Description: Chiduruma -Added: 2009-07-29 -%% -Type: language -Subtag: duh -Description: Dungra Bhil -Added: 2009-07-29 -%% -Type: language -Subtag: dui -Description: Dumun -Added: 2009-07-29 -%% -Type: language -Subtag: duj -Description: Dhuwal -Added: 2009-07-29 -Deprecated: 2016-05-30 -Comments: see dwu, dwy -%% -Type: language -Subtag: duk -Description: Uyajitaya -Added: 2009-07-29 -%% -Type: language -Subtag: dul -Description: Alabat Island Agta -Added: 2009-07-29 -%% -Type: language -Subtag: dum -Description: Middle Dutch (ca. 1050-1350) -Added: 2005-10-16 -%% -Type: language -Subtag: dun -Description: Dusun Deyah -Added: 2009-07-29 -%% -Type: language -Subtag: duo -Description: Dupaninan Agta -Added: 2009-07-29 -%% -Type: language -Subtag: dup -Description: Duano -Added: 2009-07-29 -Macrolanguage: ms -%% -Type: language -Subtag: duq -Description: Dusun Malang -Added: 2009-07-29 -%% -Type: language -Subtag: dur -Description: Dii -Added: 2009-07-29 -%% -Type: language -Subtag: dus -Description: Dumi -Added: 2009-07-29 -%% -Type: language -Subtag: duu -Description: Drung -Added: 2009-07-29 -%% -Type: language -Subtag: duv -Description: Duvle -Added: 2009-07-29 -%% -Type: language -Subtag: duw -Description: Dusun Witu -Added: 2009-07-29 -%% -Type: language -Subtag: dux -Description: Duungooma -Added: 2009-07-29 -%% -Type: language -Subtag: duy -Description: Dicamay Agta -Added: 2009-07-29 -%% -Type: language -Subtag: duz -Description: Duli-Gey -Added: 2009-07-29 -%% -Type: language -Subtag: dva -Description: Duau -Added: 2009-07-29 -%% -Type: language -Subtag: dwa -Description: Diri -Added: 2009-07-29 -%% -Type: language -Subtag: dwk -Description: Dawik Kui -Added: 2020-03-28 -%% -Type: language -Subtag: dwl -Description: Walo Kumbe Dogon -Added: 2009-07-29 -Deprecated: 2012-08-12 -Comments: see dbt, dbw -%% -Type: language -Subtag: dwr -Description: Dawro -Added: 2009-07-29 -%% -Type: language -Subtag: dws -Description: Dutton World Speedwords -Added: 2009-07-29 -%% -Type: language -Subtag: dwu -Description: Dhuwal -Added: 2016-05-30 -%% -Type: language -Subtag: dww -Description: Dawawa -Added: 2009-07-29 -%% -Type: language -Subtag: dwy -Description: Dhuwaya -Added: 2016-05-30 -%% -Type: language -Subtag: dwz -Description: Dewas Rai -Added: 2018-10-28 -%% -Type: language -Subtag: dya -Description: Dyan -Added: 2009-07-29 -%% -Type: language -Subtag: dyb -Description: Dyaberdyaber -Added: 2009-07-29 -%% -Type: language -Subtag: dyd -Description: Dyugun -Added: 2009-07-29 -%% -Type: language -Subtag: dyg -Description: Villa Viciosa Agta -Added: 2009-07-29 -%% -Type: language -Subtag: dyi -Description: Djimini Senoufo -Added: 2009-07-29 -%% -Type: language -Subtag: dyl -Description: Bhutanese Sign Language -Added: 2026-04-09 -%% -Type: language -Subtag: dym -Description: Yanda Dom Dogon -Added: 2009-07-29 -%% -Type: language -Subtag: dyn -Description: Dyangadi -Description: Dhanggatti -Added: 2009-07-29 -%% -Type: language -Subtag: dyo -Description: Jola-Fonyi -Added: 2009-07-29 -%% -Type: language -Subtag: dyr -Description: Dyarim -Added: 2023-03-17 -%% -Type: language -Subtag: dyu -Description: Dyula -Added: 2005-10-16 -%% -Type: language -Subtag: dyy -Description: Djabugay -Description: Dyaabugay -Added: 2009-07-29 -%% -Type: language -Subtag: dza -Description: Tunzu -Added: 2009-07-29 -%% -Type: language -Subtag: dzd -Description: Daza -Added: 2009-07-29 -%% -Type: language -Subtag: dze -Description: Djiwarli -Added: 2013-09-10 -%% -Type: language -Subtag: dzg -Description: Dazaga -Added: 2009-07-29 -%% -Type: language -Subtag: dzl -Description: Dzalakha -Added: 2009-07-29 -%% -Type: language -Subtag: dzn -Description: Dzando -Added: 2009-07-29 -%% -Type: language -Subtag: eaa -Description: Karenggapa -Added: 2013-09-10 -%% -Type: language -Subtag: ebc -Description: Beginci -Added: 2020-03-28 -%% -Type: language -Subtag: ebg -Description: Ebughu -Added: 2009-07-29 -%% -Type: language -Subtag: ebk -Description: Eastern Bontok -Added: 2010-03-11 -Macrolanguage: bnc -%% -Type: language -Subtag: ebo -Description: Teke-Ebo -Added: 2009-07-29 -%% -Type: language -Subtag: ebr -Description: Ebrié -Added: 2009-07-29 -%% -Type: language -Subtag: ebu -Description: Embu -Description: Kiembu -Added: 2009-07-29 -%% -Type: language -Subtag: ecr -Description: Eteocretan -Added: 2009-07-29 -%% -Type: language -Subtag: ecs -Description: Ecuadorian Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: ecy -Description: Eteocypriot -Added: 2009-07-29 -%% -Type: language -Subtag: eee -Description: E -Added: 2009-07-29 -%% -Type: language -Subtag: efa -Description: Efai -Added: 2009-07-29 -%% -Type: language -Subtag: efe -Description: Efe -Added: 2009-07-29 -%% -Type: language -Subtag: efi -Description: Efik -Added: 2005-10-16 -%% -Type: language -Subtag: ega -Description: Ega -Added: 2009-07-29 -%% -Type: language -Subtag: egl -Description: Emilian -Added: 2009-07-29 -%% -Type: language -Subtag: egm -Description: Benamanga -Added: 2022-02-25 -%% -Type: language -Subtag: ego -Description: Eggon -Added: 2009-07-29 -%% -Type: language -Subtag: egx -Description: Egyptian languages -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: egy -Description: Egyptian (Ancient) -Added: 2005-10-16 -%% -Type: language -Subtag: ehs -Description: Miyakubo Sign Language -Added: 2021-02-20 -%% -Type: language -Subtag: ehu -Description: Ehueun -Added: 2009-07-29 -%% -Type: language -Subtag: eip -Description: Eipomek -Added: 2009-07-29 -%% -Type: language -Subtag: eit -Description: Eitiep -Added: 2009-07-29 -%% -Type: language -Subtag: eiv -Description: Askopan -Added: 2009-07-29 -%% -Type: language -Subtag: eja -Description: Ejamat -Added: 2009-07-29 -%% -Type: language -Subtag: eka -Description: Ekajuk -Added: 2005-10-16 -%% -Type: language -Subtag: ekc -Description: Eastern Karnic -Added: 2013-09-10 -Deprecated: 2020-03-28 -%% -Type: language -Subtag: eke -Description: Ekit -Added: 2009-07-29 -%% -Type: language -Subtag: ekg -Description: Ekari -Added: 2009-07-29 -%% -Type: language -Subtag: eki -Description: Eki -Added: 2009-07-29 -%% -Type: language -Subtag: ekk -Description: Standard Estonian -Added: 2009-07-29 -Macrolanguage: et -%% -Type: language -Subtag: ekl -Description: Kol (Bangladesh) -Description: Kol -Added: 2009-07-29 -%% -Type: language -Subtag: ekm -Description: Elip -Added: 2009-07-29 -%% -Type: language -Subtag: eko -Description: Koti -Added: 2009-07-29 -%% -Type: language -Subtag: ekp -Description: Ekpeye -Added: 2009-07-29 -%% -Type: language -Subtag: ekr -Description: Yace -Added: 2009-07-29 -%% -Type: language -Subtag: eky -Description: Eastern Kayah -Added: 2009-07-29 -%% -Type: language -Subtag: ele -Description: Elepi -Added: 2009-07-29 -%% -Type: language -Subtag: elh -Description: El Hugeirat -Added: 2009-07-29 -%% -Type: language -Subtag: eli -Description: Nding -Added: 2009-07-29 -%% -Type: language -Subtag: elk -Description: Elkei -Added: 2009-07-29 -%% -Type: language -Subtag: elm -Description: Eleme -Added: 2009-07-29 -%% -Type: language -Subtag: elo -Description: El Molo -Added: 2009-07-29 -%% -Type: language -Subtag: elp -Description: Elpaputih -Added: 2009-07-29 -Deprecated: 2012-08-12 -Comments: see amq, plh -%% -Type: language -Subtag: elu -Description: Elu -Added: 2009-07-29 -%% -Type: language -Subtag: elx -Description: Elamite -Added: 2005-10-16 -%% -Type: language -Subtag: ema -Description: Emai-Iuleha-Ora -Added: 2009-07-29 -%% -Type: language -Subtag: emb -Description: Embaloh -Added: 2009-07-29 -%% -Type: language -Subtag: eme -Description: Emerillon -Added: 2009-07-29 -%% -Type: language -Subtag: emg -Description: Eastern Meohang -Added: 2009-07-29 -%% -Type: language -Subtag: emi -Description: Mussau-Emira -Added: 2009-07-29 -%% -Type: language -Subtag: emk -Description: Eastern Maninkakan -Added: 2009-07-29 -Macrolanguage: man -%% -Type: language -Subtag: emm -Description: Mamulique -Added: 2009-07-29 -%% -Type: language -Subtag: emn -Description: Eman -Added: 2009-07-29 -%% -Type: language -Subtag: emo -Description: Emok -Added: 2009-07-29 -Deprecated: 2014-02-28 -%% -Type: language -Subtag: emp -Description: Northern Emberá -Added: 2009-07-29 -%% -Type: language -Subtag: emq -Description: Eastern Minyag -Added: 2021-02-20 -%% -Type: language -Subtag: ems -Description: Pacific Gulf Yupik -Added: 2009-07-29 -%% -Type: language -Subtag: emu -Description: Eastern Muria -Added: 2009-07-29 -%% -Type: language -Subtag: emw -Description: Emplawas -Added: 2009-07-29 -%% -Type: language -Subtag: emx -Description: Erromintxela -Added: 2010-03-11 -%% -Type: language -Subtag: emy -Description: Epigraphic Mayan -Added: 2009-07-29 -%% -Type: language -Subtag: emz -Description: Mbessa -Added: 2021-02-20 -%% -Type: language -Subtag: ena -Description: Apali -Added: 2009-07-29 -%% -Type: language -Subtag: enb -Description: Markweeta -Added: 2009-07-29 -Macrolanguage: kln -%% -Type: language -Subtag: enc -Description: En -Added: 2009-07-29 -%% -Type: language -Subtag: end -Description: Ende -Added: 2009-07-29 -%% -Type: language -Subtag: enf -Description: Forest Enets -Added: 2009-07-29 -%% -Type: language -Subtag: enh -Description: Tundra Enets -Added: 2009-07-29 -%% -Type: language -Subtag: enl -Description: Enlhet -Added: 2014-02-28 -%% -Type: language -Subtag: enm -Description: Middle English (1100-1500) -Added: 2005-10-16 -%% -Type: language -Subtag: enn -Description: Engenni -Added: 2009-07-29 -%% -Type: language -Subtag: eno -Description: Enggano -Added: 2009-07-29 -%% -Type: language -Subtag: enq -Description: Enga -Added: 2009-07-29 -%% -Type: language -Subtag: enr -Description: Emumu -Description: Emem -Added: 2009-07-29 -%% -Type: language -Subtag: enu -Description: Enu -Added: 2009-07-29 -%% -Type: language -Subtag: env -Description: Enwan (Edo State) -Added: 2009-07-29 -%% -Type: language -Subtag: enw -Description: Enwan (Akwa Ibom State) -Added: 2009-07-29 -%% -Type: language -Subtag: enx -Description: Enxet -Added: 2014-02-28 -%% -Type: language -Subtag: eot -Description: Beti (Côte d'Ivoire) -Added: 2009-07-29 -%% -Type: language -Subtag: epi -Description: Epie -Added: 2009-07-29 -%% -Type: language -Subtag: era -Description: Eravallan -Added: 2009-07-29 -%% -Type: language -Subtag: erg -Description: Sie -Added: 2009-07-29 -%% -Type: language -Subtag: erh -Description: Eruwa -Added: 2009-07-29 -%% -Type: language -Subtag: eri -Description: Ogea -Added: 2009-07-29 -%% -Type: language -Subtag: erk -Description: South Efate -Added: 2009-07-29 -%% -Type: language -Subtag: ero -Description: Horpa -Added: 2009-07-29 -%% -Type: language -Subtag: err -Description: Erre -Added: 2009-07-29 -%% -Type: language -Subtag: ers -Description: Ersu -Added: 2009-07-29 -%% -Type: language -Subtag: ert -Description: Eritai -Added: 2009-07-29 -%% -Type: language -Subtag: erw -Description: Erokwanas -Added: 2009-07-29 -%% -Type: language -Subtag: ese -Description: Ese Ejja -Added: 2009-07-29 -%% -Type: language -Subtag: esg -Description: Aheri Gondi -Added: 2016-05-30 -Macrolanguage: gon -%% -Type: language -Subtag: esh -Description: Eshtehardi -Added: 2009-07-29 -%% -Type: language -Subtag: esi -Description: North Alaskan Inupiatun -Added: 2009-07-29 -Macrolanguage: ik -%% -Type: language -Subtag: esk -Description: Northwest Alaska Inupiatun -Added: 2009-07-29 -Macrolanguage: ik -%% -Type: language -Subtag: esl -Description: Egypt Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: esm -Description: Esuma -Added: 2009-07-29 -%% -Type: language -Subtag: esn -Description: Salvadoran Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: eso -Description: Estonian Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: esq -Description: Esselen -Added: 2009-07-29 -%% -Type: language -Subtag: ess -Description: Central Siberian Yupik -Added: 2009-07-29 -%% -Type: language -Subtag: esu -Description: Central Yupik -Added: 2009-07-29 -%% -Type: language -Subtag: esx -Description: Eskimo-Aleut languages -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: esy -Description: Eskayan -Added: 2014-04-06 -%% -Type: language -Subtag: etb -Description: Etebi -Added: 2009-07-29 -%% -Type: language -Subtag: etc -Description: Etchemin -Added: 2009-07-29 -%% -Type: language -Subtag: eth -Description: Ethiopian Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: etn -Description: Eton (Vanuatu) -Added: 2009-07-29 -%% -Type: language -Subtag: eto -Description: Eton (Cameroon) -Added: 2009-07-29 -%% -Type: language -Subtag: etr -Description: Edolo -Added: 2009-07-29 -%% -Type: language -Subtag: ets -Description: Yekhee -Added: 2009-07-29 -%% -Type: language -Subtag: ett -Description: Etruscan -Added: 2009-07-29 -%% -Type: language -Subtag: etu -Description: Ejagham -Added: 2009-07-29 -%% -Type: language -Subtag: etx -Description: Eten -Added: 2009-07-29 -%% -Type: language -Subtag: etz -Description: Semimi -Added: 2009-07-29 -%% -Type: language -Subtag: eud -Description: Eudeve -Added: 2023-03-17 -%% -Type: language -Subtag: euq -Description: Basque (family) -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: eve -Description: Even -Added: 2009-07-29 -%% -Type: language -Subtag: evh -Description: Uvbie -Added: 2009-07-29 -%% -Type: language -Subtag: evn -Description: Evenki -Added: 2009-07-29 -%% -Type: language -Subtag: ewo -Description: Ewondo -Added: 2005-10-16 -%% -Type: language -Subtag: ext -Description: Extremaduran -Added: 2009-07-29 -%% -Type: language -Subtag: eya -Description: Eyak -Added: 2009-07-29 -%% -Type: language -Subtag: eyo -Description: Keiyo -Added: 2009-07-29 -Macrolanguage: kln -%% -Type: language -Subtag: eza -Description: Ezaa -Added: 2013-09-10 -%% -Type: language -Subtag: eze -Description: Uzekwe -Added: 2009-07-29 -%% -Type: language -Subtag: faa -Description: Fasu -Added: 2009-07-29 -%% -Type: language -Subtag: fab -Description: Fa d'Ambu -Added: 2009-07-29 -%% -Type: language -Subtag: fad -Description: Wagi -Added: 2009-07-29 -%% -Type: language -Subtag: faf -Description: Fagani -Added: 2009-07-29 -%% -Type: language -Subtag: fag -Description: Finongan -Added: 2009-07-29 -%% -Type: language -Subtag: fah -Description: Baissa Fali -Added: 2009-07-29 -%% -Type: language -Subtag: fai -Description: Faiwol -Added: 2009-07-29 -%% -Type: language -Subtag: faj -Description: Faita -Added: 2009-07-29 -%% -Type: language -Subtag: fak -Description: Fang (Cameroon) -Added: 2009-07-29 -%% -Type: language -Subtag: fal -Description: South Fali -Added: 2009-07-29 -%% -Type: language -Subtag: fam -Description: Fam -Added: 2009-07-29 -%% -Type: language -Subtag: fan -Description: Fang (Equatorial Guinea) -Added: 2005-10-16 -%% -Type: language -Subtag: fap -Description: Paloor -Added: 2009-07-29 -%% -Type: language -Subtag: far -Description: Fataleka -Added: 2009-07-29 -%% -Type: language -Subtag: fat -Description: Fanti -Added: 2005-10-16 -Macrolanguage: ak -%% -Type: language -Subtag: fau -Description: Fayu -Added: 2009-07-29 -%% -Type: language -Subtag: fax -Description: Fala -Added: 2009-07-29 -%% -Type: language -Subtag: fay -Description: Southwestern Fars -Added: 2009-07-29 -%% -Type: language -Subtag: faz -Description: Northwestern Fars -Added: 2009-07-29 -%% -Type: language -Subtag: fbl -Description: West Albay Bikol -Added: 2010-03-11 -Macrolanguage: bik -%% -Type: language -Subtag: fcs -Description: Quebec Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: fer -Description: Feroge -Added: 2009-07-29 -%% -Type: language -Subtag: ffi -Description: Foia Foia -Added: 2009-07-29 -%% -Type: language -Subtag: ffm -Description: Maasina Fulfulde -Added: 2009-07-29 -Macrolanguage: ff -%% -Type: language -Subtag: fgr -Description: Fongoro -Added: 2009-07-29 -%% -Type: language -Subtag: fia -Description: Nobiin -Added: 2009-07-29 -%% -Type: language -Subtag: fie -Description: Fyer -Added: 2009-07-29 -%% -Type: language -Subtag: fif -Description: Faifi -Added: 2020-06-08 -%% -Type: language -Subtag: fil -Description: Filipino -Description: Pilipino -Added: 2005-10-16 -%% -Type: language -Subtag: fip -Description: Fipa -Added: 2009-07-29 -%% -Type: language -Subtag: fir -Description: Firan -Added: 2009-07-29 -%% -Type: language -Subtag: fit -Description: Tornedalen Finnish -Description: Meänkieli -Added: 2009-07-29 -%% -Type: language -Subtag: fiu -Description: Finno-Ugrian languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: fiw -Description: Fiwaga -Added: 2009-07-29 -%% -Type: language -Subtag: fkk -Description: Kirya-Konzəl -Added: 2012-08-12 -%% -Type: language -Subtag: fkv -Description: Kven Finnish -Added: 2009-07-29 -%% -Type: language -Subtag: fla -Description: Kalispel-Pend d'Oreille -Added: 2009-07-29 -%% -Type: language -Subtag: flh -Description: Foau -Added: 2009-07-29 -%% -Type: language -Subtag: fli -Description: Fali -Added: 2009-07-29 -%% -Type: language -Subtag: fll -Description: North Fali -Added: 2009-07-29 -%% -Type: language -Subtag: fln -Description: Flinders Island -Added: 2009-07-29 -%% -Type: language -Subtag: flr -Description: Fuliiru -Added: 2009-07-29 -%% -Type: language -Subtag: fly -Description: Flaaitaal -Description: Tsotsitaal -Added: 2009-07-29 -%% -Type: language -Subtag: fmp -Description: Fe'fe' -Added: 2009-07-29 -%% -Type: language -Subtag: fmu -Description: Far Western Muria -Added: 2009-07-29 -%% -Type: language -Subtag: fnb -Description: Fanbak -Added: 2016-05-30 -%% -Type: language -Subtag: fng -Description: Fanagalo -Added: 2009-07-29 -%% -Type: language -Subtag: fni -Description: Fania -Added: 2009-07-29 -%% -Type: language -Subtag: fod -Description: Foodo -Added: 2009-07-29 -%% -Type: language -Subtag: foi -Description: Foi -Added: 2009-07-29 -%% -Type: language -Subtag: fom -Description: Foma -Added: 2009-07-29 -%% -Type: language -Subtag: fon -Description: Fon -Added: 2005-10-16 -%% -Type: language -Subtag: for -Description: Fore -Added: 2009-07-29 -%% -Type: language -Subtag: fos -Description: Siraya -Added: 2009-07-29 -%% -Type: language -Subtag: fox -Description: Formosan languages -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: fpe -Description: Fernando Po Creole English -Added: 2009-07-29 -%% -Type: language -Subtag: fqs -Description: Fas -Added: 2009-07-29 -%% -Type: language -Subtag: frc -Description: Cajun French -Added: 2009-07-29 -%% -Type: language -Subtag: frd -Description: Fordata -Added: 2009-07-29 -%% -Type: language -Subtag: frk -Description: Frankish -Added: 2009-07-29 -%% -Type: language -Subtag: frm -Description: Middle French (ca. 1400-1600) -Added: 2005-10-16 -%% -Type: language -Subtag: fro -Description: Old French (842-ca. 1400) -Added: 2005-10-16 -%% -Type: language -Subtag: frp -Description: Arpitan -Description: Francoprovençal -Added: 2009-07-29 -%% -Type: language -Subtag: frq -Description: Forak -Added: 2009-07-29 -%% -Type: language -Subtag: frr -Description: Northern Frisian -Added: 2006-03-08 -Suppress-Script: Latn -%% -Type: language -Subtag: frs -Description: Eastern Frisian -Added: 2006-03-08 -Suppress-Script: Latn -%% -Type: language -Subtag: frt -Description: Fortsenal -Added: 2009-07-29 -%% -Type: language -Subtag: fse -Description: Finnish Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: fsl -Description: French Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: fss -Description: Finland-Swedish Sign Language -Description: finlandssvenskt teckenspråk -Description: suomenruotsalainen viittomakieli -Added: 2009-07-29 -%% -Type: language -Subtag: fub -Description: Adamawa Fulfulde -Added: 2009-07-29 -Macrolanguage: ff -%% -Type: language -Subtag: fuc -Description: Pulaar -Added: 2009-07-29 -Macrolanguage: ff -%% -Type: language -Subtag: fud -Description: East Futuna -Added: 2009-07-29 -%% -Type: language -Subtag: fue -Description: Borgu Fulfulde -Added: 2009-07-29 -Macrolanguage: ff -%% -Type: language -Subtag: fuf -Description: Pular -Added: 2009-07-29 -Macrolanguage: ff -%% -Type: language -Subtag: fuh -Description: Western Niger Fulfulde -Added: 2009-07-29 -Macrolanguage: ff -%% -Type: language -Subtag: fui -Description: Bagirmi Fulfulde -Added: 2009-07-29 -Macrolanguage: ff -%% -Type: language -Subtag: fuj -Description: Ko -Added: 2009-07-29 -%% -Type: language -Subtag: fum -Description: Fum -Added: 2009-07-29 -%% -Type: language -Subtag: fun -Description: Fulniô -Added: 2009-07-29 -%% -Type: language -Subtag: fuq -Description: Central-Eastern Niger Fulfulde -Added: 2009-07-29 -Macrolanguage: ff -%% -Type: language -Subtag: fur -Description: Friulian -Added: 2005-10-16 -%% -Type: language -Subtag: fut -Description: Futuna-Aniwa -Added: 2009-07-29 -%% -Type: language -Subtag: fuu -Description: Furu -Added: 2009-07-29 -%% -Type: language -Subtag: fuv -Description: Nigerian Fulfulde -Added: 2009-07-29 -Macrolanguage: ff -%% -Type: language -Subtag: fuy -Description: Fuyug -Added: 2009-07-29 -%% -Type: language -Subtag: fvr -Description: Fur -Added: 2009-07-29 -%% -Type: language -Subtag: fwa -Description: Fwâi -Added: 2009-07-29 -%% -Type: language -Subtag: fwe -Description: Fwe -Added: 2009-07-29 -%% -Type: language -Subtag: gaa -Description: Ga -Added: 2005-10-16 -%% -Type: language -Subtag: gab -Description: Gabri -Added: 2009-07-29 -%% -Type: language -Subtag: gac -Description: Mixed Great Andamanese -Added: 2010-03-11 -%% -Type: language -Subtag: gad -Description: Gaddang -Added: 2009-07-29 -%% -Type: language -Subtag: gae -Description: Guarequena -Added: 2009-07-29 -%% -Type: language -Subtag: gaf -Description: Gende -Added: 2009-07-29 -%% -Type: language -Subtag: gag -Description: Gagauz -Added: 2009-07-29 -%% -Type: language -Subtag: gah -Description: Alekano -Added: 2009-07-29 -%% -Type: language -Subtag: gai -Description: Borei -Added: 2009-07-29 -%% -Type: language -Subtag: gaj -Description: Gadsup -Added: 2009-07-29 -%% -Type: language -Subtag: gak -Description: Gamkonora -Added: 2009-07-29 -%% -Type: language -Subtag: gal -Description: Galolen -Added: 2009-07-29 -%% -Type: language -Subtag: gam -Description: Kandawo -Added: 2009-07-29 -%% -Type: language -Subtag: gan -Description: Gan Chinese -Added: 2009-07-29 -Macrolanguage: zh -%% -Type: language -Subtag: gao -Description: Gants -Added: 2009-07-29 -%% -Type: language -Subtag: gap -Description: Gal -Added: 2009-07-29 -%% -Type: language -Subtag: gaq -Description: Gata' -Added: 2009-07-29 -%% -Type: language -Subtag: gar -Description: Galeya -Added: 2009-07-29 -%% -Type: language -Subtag: gas -Description: Adiwasi Garasia -Added: 2009-07-29 -%% -Type: language -Subtag: gat -Description: Kenati -Added: 2009-07-29 -%% -Type: language -Subtag: gau -Description: Mudhili Gadaba -Added: 2009-07-29 -%% -Type: language -Subtag: gav -Description: Gabutamon -Added: 2009-07-29 -Deprecated: 2010-03-11 -Preferred-Value: dev -%% -Type: language -Subtag: gaw -Description: Nobonob -Added: 2009-07-29 -%% -Type: language -Subtag: gax -Description: Borana-Arsi-Guji Oromo -Added: 2009-07-29 -Macrolanguage: om -%% -Type: language -Subtag: gay -Description: Gayo -Added: 2005-10-16 -%% -Type: language -Subtag: gaz -Description: West Central Oromo -Added: 2009-07-29 -Macrolanguage: om -%% -Type: language -Subtag: gba -Description: Gbaya (Central African Republic) -Added: 2005-10-16 -Scope: macrolanguage -%% -Type: language -Subtag: gbb -Description: Kaytetye -Added: 2009-07-29 -%% -Type: language -Subtag: gbc -Description: Garawa -Added: 2009-07-29 -Deprecated: 2012-08-12 -Comments: see wny, wrk -%% -Type: language -Subtag: gbd -Description: Karajarri -Added: 2009-07-29 -%% -Type: language -Subtag: gbe -Description: Niksek -Added: 2009-07-29 -%% -Type: language -Subtag: gbf -Description: Gaikundi -Added: 2009-07-29 -%% -Type: language -Subtag: gbg -Description: Gbanziri -Added: 2009-07-29 -%% -Type: language -Subtag: gbh -Description: Defi Gbe -Added: 2009-07-29 -%% -Type: language -Subtag: gbi -Description: Galela -Added: 2009-07-29 -%% -Type: language -Subtag: gbj -Description: Bodo Gadaba -Added: 2009-07-29 -%% -Type: language -Subtag: gbk -Description: Gaddi -Added: 2009-07-29 -%% -Type: language -Subtag: gbl -Description: Gamit -Added: 2009-07-29 -%% -Type: language -Subtag: gbm -Description: Garhwali -Added: 2009-07-29 -%% -Type: language -Subtag: gbn -Description: Mo'da -Added: 2009-07-29 -%% -Type: language -Subtag: gbo -Description: Northern Grebo -Added: 2009-07-29 -Macrolanguage: grb -%% -Type: language -Subtag: gbp -Description: Gbaya-Bossangoa -Added: 2009-07-29 -Macrolanguage: gba -%% -Type: language -Subtag: gbq -Description: Gbaya-Bozoum -Added: 2009-07-29 -Macrolanguage: gba -%% -Type: language -Subtag: gbr -Description: Gbagyi -Added: 2009-07-29 -%% -Type: language -Subtag: gbs -Description: Gbesi Gbe -Added: 2009-07-29 -%% -Type: language -Subtag: gbu -Description: Gagadu -Added: 2009-07-29 -%% -Type: language -Subtag: gbv -Description: Gbanu -Added: 2009-07-29 -%% -Type: language -Subtag: gbw -Description: Gabi-Gabi -Added: 2013-09-10 -%% -Type: language -Subtag: gbx -Description: Eastern Xwla Gbe -Added: 2009-07-29 -%% -Type: language -Subtag: gby -Description: Gbari -Added: 2009-07-29 -%% -Type: language -Subtag: gbz -Description: Zoroastrian Dari -Added: 2009-07-29 -%% -Type: language -Subtag: gcc -Description: Mali -Added: 2009-07-29 -%% -Type: language -Subtag: gcd -Description: Ganggalida -Added: 2009-07-29 -%% -Type: language -Subtag: gce -Description: Galice -Added: 2009-07-29 -%% -Type: language -Subtag: gcf -Description: Guadeloupean Creole French -Added: 2009-07-29 -%% -Type: language -Subtag: gcl -Description: Grenadian Creole English -Added: 2009-07-29 -%% -Type: language -Subtag: gcn -Description: Gaina -Added: 2009-07-29 -%% -Type: language -Subtag: gcr -Description: Guianese Creole French -Added: 2009-07-29 -%% -Type: language -Subtag: gct -Description: Colonia Tovar German -Added: 2009-07-29 -%% -Type: language -Subtag: gda -Description: Gade Lohar -Added: 2009-07-29 -Macrolanguage: raj -%% -Type: language -Subtag: gdb -Description: Pottangi Ollar Gadaba -Added: 2009-07-29 -%% -Type: language -Subtag: gdc -Description: Gugu Badhun -Added: 2009-07-29 -%% -Type: language -Subtag: gdd -Description: Gedaged -Added: 2009-07-29 -%% -Type: language -Subtag: gde -Description: Gude -Added: 2009-07-29 -%% -Type: language -Subtag: gdf -Description: Guduf-Gava -Added: 2009-07-29 -%% -Type: language -Subtag: gdg -Description: Ga'dang -Added: 2009-07-29 -%% -Type: language -Subtag: gdh -Description: Gadjerawang -Description: Gajirrabeng -Added: 2009-07-29 -%% -Type: language -Subtag: gdi -Description: Gundi -Added: 2009-07-29 -%% -Type: language -Subtag: gdj -Description: Gurdjar -Added: 2009-07-29 -%% -Type: language -Subtag: gdk -Description: Gadang -Added: 2009-07-29 -%% -Type: language -Subtag: gdl -Description: Dirasha -Added: 2009-07-29 -%% -Type: language -Subtag: gdm -Description: Laal -Added: 2009-07-29 -%% -Type: language -Subtag: gdn -Description: Umanakaina -Added: 2009-07-29 -%% -Type: language -Subtag: gdo -Description: Ghodoberi -Added: 2009-07-29 -%% -Type: language -Subtag: gdq -Description: Mehri -Added: 2009-07-29 -%% -Type: language -Subtag: gdr -Description: Wipi -Added: 2009-07-29 -%% -Type: language -Subtag: gds -Description: Ghandruk Sign Language -Added: 2012-08-12 -%% -Type: language -Subtag: gdt -Description: Kungardutyi -Added: 2013-09-10 -%% -Type: language -Subtag: gdu -Description: Gudu -Added: 2009-07-29 -%% -Type: language -Subtag: gdx -Description: Godwari -Added: 2009-07-29 -%% -Type: language -Subtag: gea -Description: Geruma -Added: 2009-07-29 -%% -Type: language -Subtag: geb -Description: Kire -Added: 2009-07-29 -%% -Type: language -Subtag: gec -Description: Gboloo Grebo -Added: 2009-07-29 -Macrolanguage: grb -%% -Type: language -Subtag: ged -Description: Gade -Added: 2009-07-29 -%% -Type: language -Subtag: gef -Description: Gerai -Added: 2020-03-28 -%% -Type: language -Subtag: geg -Description: Gengle -Added: 2009-07-29 -%% -Type: language -Subtag: geh -Description: Hutterite German -Description: Hutterisch -Added: 2009-07-29 -%% -Type: language -Subtag: gei -Description: Gebe -Added: 2009-07-29 -%% -Type: language -Subtag: gej -Description: Gen -Added: 2009-07-29 -%% -Type: language -Subtag: gek -Description: Ywom -Added: 2009-07-29 -%% -Type: language -Subtag: gel -Description: ut-Ma'in -Added: 2009-07-29 -%% -Type: language -Subtag: gem -Description: Germanic languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: geq -Description: Geme -Added: 2009-07-29 -%% -Type: language -Subtag: ges -Description: Geser-Gorom -Added: 2009-07-29 -%% -Type: language -Subtag: gev -Description: Eviya -Added: 2014-02-28 -%% -Type: language -Subtag: gew -Description: Gera -Added: 2009-07-29 -%% -Type: language -Subtag: gex -Description: Garre -Added: 2009-07-29 -%% -Type: language -Subtag: gey -Description: Enya -Added: 2009-07-29 -%% -Type: language -Subtag: gez -Description: Geez -Added: 2005-10-16 -%% -Type: language -Subtag: gfk -Description: Patpatar -Added: 2009-07-29 -%% -Type: language -Subtag: gft -Description: Gafat -Added: 2009-07-29 -%% -Type: language -Subtag: gfx -Description: Mangetti Dune ǃXung -Added: 2012-08-12 -Deprecated: 2015-02-12 -Preferred-Value: vaj -%% -Type: language -Subtag: gga -Description: Gao -Added: 2009-07-29 -%% -Type: language -Subtag: ggb -Description: Gbii -Added: 2009-07-29 -%% -Type: language -Subtag: ggd -Description: Gugadj -Added: 2009-07-29 -%% -Type: language -Subtag: gge -Description: Gurr-goni -Added: 2009-07-29 -%% -Type: language -Subtag: ggg -Description: Gurgula -Added: 2009-07-29 -%% -Type: language -Subtag: ggk -Description: Kungarakany -Added: 2009-07-29 -%% -Type: language -Subtag: ggl -Description: Ganglau -Added: 2009-07-29 -%% -Type: language -Subtag: ggn -Description: Eastern Gurung -Added: 2009-07-29 -Deprecated: 2016-05-30 -Preferred-Value: gvr -%% -Type: language -Subtag: ggo -Description: Southern Gondi -Added: 2009-07-29 -Deprecated: 2016-05-30 -Comments: see esg, wsg -%% -Type: language -Subtag: ggr -Description: Aghu Tharnggalu -Added: 2009-07-29 -Deprecated: 2013-09-10 -Comments: see gtu, ikr -%% -Type: language -Subtag: ggt -Description: Gitua -Added: 2009-07-29 -%% -Type: language -Subtag: ggu -Description: Gagu -Description: Gban -Added: 2009-07-29 -%% -Type: language -Subtag: ggw -Description: Gogodala -Added: 2009-07-29 -%% -Type: language -Subtag: gha -Description: Ghadamès -Added: 2009-07-29 -%% -Type: language -Subtag: ghc -Description: Hiberno-Scottish Gaelic -Added: 2009-07-29 -%% -Type: language -Subtag: ghe -Description: Southern Ghale -Added: 2009-07-29 -%% -Type: language -Subtag: ghh -Description: Northern Ghale -Added: 2009-07-29 -%% -Type: language -Subtag: ghk -Description: Geko Karen -Added: 2009-07-29 -%% -Type: language -Subtag: ghl -Description: Ghulfan -Added: 2009-07-29 -%% -Type: language -Subtag: ghn -Description: Ghanongga -Added: 2009-07-29 -%% -Type: language -Subtag: gho -Description: Ghomara -Added: 2009-07-29 -%% -Type: language -Subtag: ghr -Description: Ghera -Added: 2009-07-29 -%% -Type: language -Subtag: ghs -Description: Guhu-Samane -Added: 2009-07-29 -%% -Type: language -Subtag: ght -Description: Kuke -Description: Kutang Ghale -Added: 2009-07-29 -%% -Type: language -Subtag: gia -Description: Kija -Added: 2009-07-29 -%% -Type: language -Subtag: gib -Description: Gibanawa -Added: 2009-07-29 -%% -Type: language -Subtag: gic -Description: Gail -Added: 2009-07-29 -%% -Type: language -Subtag: gid -Description: Gidar -Added: 2009-07-29 -%% -Type: language -Subtag: gie -Description: Gaɓogbo -Description: Guébie -Added: 2017-02-23 -%% -Type: language -Subtag: gig -Description: Goaria -Added: 2009-07-29 -%% -Type: language -Subtag: gih -Description: Githabul -Added: 2013-09-10 -%% -Type: language -Subtag: gii -Description: Girirra -Added: 2021-02-20 -%% -Type: language -Subtag: gil -Description: Gilbertese -Added: 2005-10-16 -%% -Type: language -Subtag: gim -Description: Gimi (Eastern Highlands) -Added: 2009-07-29 -%% -Type: language -Subtag: gin -Description: Hinukh -Added: 2009-07-29 -%% -Type: language -Subtag: gio -Description: Gelao -Added: 2009-07-29 -Deprecated: 2012-08-12 -Comments: see aou, gqu -%% -Type: language -Subtag: gip -Description: Gimi (West New Britain) -Added: 2009-07-29 -%% -Type: language -Subtag: giq -Description: Green Gelao -Added: 2009-07-29 -%% -Type: language -Subtag: gir -Description: Red Gelao -Added: 2009-07-29 -%% -Type: language -Subtag: gis -Description: North Giziga -Added: 2009-07-29 -%% -Type: language -Subtag: git -Description: Gitxsan -Added: 2009-07-29 -%% -Type: language -Subtag: giu -Description: Mulao -Added: 2012-08-12 -%% -Type: language -Subtag: giw -Description: White Gelao -Added: 2009-07-29 -%% -Type: language -Subtag: gix -Description: Gilima -Added: 2009-07-29 -%% -Type: language -Subtag: giy -Description: Giyug -Added: 2009-07-29 -%% -Type: language -Subtag: giz -Description: South Giziga -Added: 2009-07-29 -%% -Type: language -Subtag: gji -Description: Geji -Added: 2009-07-29 -Deprecated: 2021-02-20 -Comments: see gyz, zbu -%% -Type: language -Subtag: gjk -Description: Kachi Koli -Added: 2009-07-29 -%% -Type: language -Subtag: gjm -Description: Gunditjmara -Added: 2013-09-10 -%% -Type: language -Subtag: gjn -Description: Gonja -Added: 2009-07-29 -%% -Type: language -Subtag: gjr -Description: Gurindji Kriol -Added: 2016-05-30 -%% -Type: language -Subtag: gju -Description: Gujari -Added: 2009-07-29 -Macrolanguage: raj -%% -Type: language -Subtag: gka -Description: Guya -Added: 2009-07-29 -%% -Type: language -Subtag: gkd -Description: Magɨ (Madang Province) -Added: 2018-03-08 -%% -Type: language -Subtag: gke -Description: Ndai -Added: 2009-07-29 -%% -Type: language -Subtag: gkn -Description: Gokana -Added: 2009-07-29 -%% -Type: language -Subtag: gko -Description: Kok-Nar -Added: 2012-08-12 -%% -Type: language -Subtag: gkp -Description: Guinea Kpelle -Added: 2009-07-29 -Macrolanguage: kpe -%% -Type: language -Subtag: gku -Description: ǂUngkue -Added: 2015-02-12 -%% -Type: language -Subtag: glb -Description: Belning -Added: 2021-02-20 -%% -Type: language -Subtag: glc -Description: Bon Gula -Added: 2009-07-29 -%% -Type: language -Subtag: gld -Description: Nanai -Added: 2009-07-29 -%% -Type: language -Subtag: glh -Description: Northwest Pashai -Description: Northwest Pashayi -Added: 2009-07-29 -%% -Type: language -Subtag: gli -Description: Guliguli -Added: 2009-07-29 -Deprecated: 2020-03-28 -Preferred-Value: kzk -%% -Type: language -Subtag: glj -Description: Gula Iro -Added: 2009-07-29 -%% -Type: language -Subtag: glk -Description: Gilaki -Added: 2009-07-29 -%% -Type: language -Subtag: gll -Description: Garlali -Added: 2013-09-10 -%% -Type: language -Subtag: glo -Description: Galambu -Added: 2009-07-29 -%% -Type: language -Subtag: glr -Description: Glaro-Twabo -Added: 2009-07-29 -%% -Type: language -Subtag: glu -Description: Gula (Chad) -Added: 2009-07-29 -%% -Type: language -Subtag: glw -Description: Glavda -Added: 2009-07-29 -%% -Type: language -Subtag: gly -Description: Gule -Added: 2009-07-29 -%% -Type: language -Subtag: gma -Description: Gambera -Added: 2009-07-29 -%% -Type: language -Subtag: gmb -Description: Gula'alaa -Added: 2009-07-29 -%% -Type: language -Subtag: gmd -Description: Mághdì -Added: 2009-07-29 -%% -Type: language -Subtag: gme -Description: East Germanic languages -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: gmg -Description: Magɨyi -Added: 2014-02-28 -%% -Type: language -Subtag: gmh -Description: Middle High German (ca. 1050-1500) -Added: 2005-10-16 -%% -Type: language -Subtag: gml -Description: Middle Low German -Added: 2009-07-29 -%% -Type: language -Subtag: gmm -Description: Gbaya-Mbodomo -Added: 2009-07-29 -Macrolanguage: gba -%% -Type: language -Subtag: gmn -Description: Gimnime -Added: 2009-07-29 -%% -Type: language -Subtag: gmq -Description: North Germanic languages -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: gmr -Description: Mirning -Description: Mirniny -Added: 2020-03-28 -%% -Type: language -Subtag: gmu -Description: Gumalu -Added: 2009-07-29 -%% -Type: language -Subtag: gmv -Description: Gamo -Added: 2009-07-29 -%% -Type: language -Subtag: gmw -Description: West Germanic languages -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: gmx -Description: Magoma -Added: 2009-07-29 -%% -Type: language -Subtag: gmy -Description: Mycenaean Greek -Added: 2009-07-29 -%% -Type: language -Subtag: gmz -Description: Mgbolizhia -Added: 2013-09-10 -%% -Type: language -Subtag: gna -Description: Kaansa -Added: 2009-07-29 -%% -Type: language -Subtag: gnb -Description: Gangte -Added: 2009-07-29 -%% -Type: language -Subtag: gnc -Description: Guanche -Added: 2009-07-29 -%% -Type: language -Subtag: gnd -Description: Zulgo-Gemzek -Added: 2009-07-29 -%% -Type: language -Subtag: gne -Description: Ganang -Added: 2009-07-29 -%% -Type: language -Subtag: gng -Description: Ngangam -Added: 2009-07-29 -%% -Type: language -Subtag: gnh -Description: Lere -Added: 2009-07-29 -%% -Type: language -Subtag: gni -Description: Gooniyandi -Added: 2009-07-29 -%% -Type: language -Subtag: gnj -Description: Ngen -Added: 2018-03-08 -%% -Type: language -Subtag: gnk -Description: ǁGana -Added: 2009-07-29 -%% -Type: language -Subtag: gnl -Description: Gangulu -Added: 2009-07-29 -%% -Type: language -Subtag: gnm -Description: Ginuman -Added: 2009-07-29 -%% -Type: language -Subtag: gnn -Description: Gumatj -Added: 2009-07-29 -%% -Type: language -Subtag: gno -Description: Northern Gondi -Added: 2009-07-29 -Macrolanguage: gon -%% -Type: language -Subtag: gnq -Description: Gana -Added: 2009-07-29 -%% -Type: language -Subtag: gnr -Description: Gureng Gureng -Added: 2009-07-29 -%% -Type: language -Subtag: gnt -Description: Guntai -Added: 2009-07-29 -%% -Type: language -Subtag: gnu -Description: Gnau -Added: 2009-07-29 -%% -Type: language -Subtag: gnw -Description: Western Bolivian Guaraní -Added: 2009-07-29 -Macrolanguage: gn -%% -Type: language -Subtag: gnz -Description: Ganzi -Added: 2009-07-29 -%% -Type: language -Subtag: goa -Description: Guro -Added: 2009-07-29 -%% -Type: language -Subtag: gob -Description: Playero -Added: 2009-07-29 -%% -Type: language -Subtag: goc -Description: Gorakor -Added: 2009-07-29 -%% -Type: language -Subtag: god -Description: Godié -Added: 2009-07-29 -%% -Type: language -Subtag: goe -Description: Gongduk -Added: 2009-07-29 -%% -Type: language -Subtag: gof -Description: Gofa -Added: 2009-07-29 -%% -Type: language -Subtag: gog -Description: Gogo -Added: 2009-07-29 -%% -Type: language -Subtag: goh -Description: Old High German (ca. 750-1050) -Added: 2005-10-16 -%% -Type: language -Subtag: goi -Description: Gobasi -Added: 2009-07-29 -%% -Type: language -Subtag: goj -Description: Gowlan -Added: 2009-07-29 -%% -Type: language -Subtag: gok -Description: Gowli -Added: 2009-07-29 -%% -Type: language -Subtag: gol -Description: Gola -Added: 2009-07-29 -%% -Type: language -Subtag: gom -Description: Goan Konkani -Added: 2009-07-29 -Macrolanguage: kok -%% -Type: language -Subtag: gon -Description: Gondi -Added: 2005-10-16 -Scope: macrolanguage -%% -Type: language -Subtag: goo -Description: Gone Dau -Added: 2009-07-29 -%% -Type: language -Subtag: gop -Description: Yeretuar -Added: 2009-07-29 -%% -Type: language -Subtag: goq -Description: Gorap -Added: 2009-07-29 -%% -Type: language -Subtag: gor -Description: Gorontalo -Added: 2005-10-16 -%% -Type: language -Subtag: gos -Description: Gronings -Added: 2009-07-29 -%% -Type: language -Subtag: got -Description: Gothic -Added: 2005-10-16 -%% -Type: language -Subtag: gou -Description: Gavar -Added: 2009-07-29 -%% -Type: language -Subtag: gov -Description: Goo -Added: 2022-02-25 -%% -Type: language -Subtag: gow -Description: Gorowa -Added: 2009-07-29 -%% -Type: language -Subtag: gox -Description: Gobu -Added: 2009-07-29 -%% -Type: language -Subtag: goy -Description: Goundo -Added: 2009-07-29 -%% -Type: language -Subtag: goz -Description: Gozarkhani -Added: 2009-07-29 -%% -Type: language -Subtag: gpa -Description: Gupa-Abawa -Added: 2009-07-29 -%% -Type: language -Subtag: gpe -Description: Ghanaian Pidgin English -Added: 2012-08-12 -%% -Type: language -Subtag: gpn -Description: Taiap -Added: 2009-07-29 -%% -Type: language -Subtag: gqa -Description: Ga'anda -Added: 2009-07-29 -%% -Type: language -Subtag: gqi -Description: Guiqiong -Added: 2009-07-29 -%% -Type: language -Subtag: gqn -Description: Guana (Brazil) -Added: 2009-07-29 -%% -Type: language -Subtag: gqr -Description: Gor -Added: 2009-07-29 -%% -Type: language -Subtag: gqu -Description: Qau -Added: 2012-08-12 -%% -Type: language -Subtag: gra -Description: Rajput Garasia -Added: 2009-07-29 -%% -Type: language -Subtag: grb -Description: Grebo -Added: 2005-10-16 -Scope: macrolanguage -%% -Type: language -Subtag: grc -Description: Ancient Greek (to 1453) -Added: 2005-10-16 -%% -Type: language -Subtag: grd -Description: Guruntum-Mbaaru -Added: 2009-07-29 -%% -Type: language -Subtag: grg -Description: Madi -Added: 2009-07-29 -%% -Type: language -Subtag: grh -Description: Gbiri-Niragu -Added: 2009-07-29 -%% -Type: language -Subtag: gri -Description: Ghari -Added: 2009-07-29 -%% -Type: language -Subtag: grj -Description: Southern Grebo -Added: 2009-07-29 -Macrolanguage: grb -%% -Type: language -Subtag: grk -Description: Greek languages -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: grm -Description: Kota Marudu Talantang -Added: 2009-07-29 -%% -Type: language -Subtag: gro -Description: Groma -Added: 2009-07-29 -%% -Type: language -Subtag: grq -Description: Gorovu -Added: 2009-07-29 -%% -Type: language -Subtag: grr -Description: Taznatit -Added: 2009-07-29 -%% -Type: language -Subtag: grs -Description: Gresi -Added: 2009-07-29 -%% -Type: language -Subtag: grt -Description: Garo -Added: 2009-07-29 -%% -Type: language -Subtag: gru -Description: Kistane -Added: 2009-07-29 -%% -Type: language -Subtag: grv -Description: Central Grebo -Added: 2009-07-29 -Macrolanguage: grb -%% -Type: language -Subtag: grw -Description: Gweda -Added: 2009-07-29 -%% -Type: language -Subtag: grx -Description: Guriaso -Added: 2009-07-29 -%% -Type: language -Subtag: gry -Description: Barclayville Grebo -Added: 2009-07-29 -Macrolanguage: grb -%% -Type: language -Subtag: grz -Description: Guramalum -Added: 2009-07-29 -%% -Type: language -Subtag: gse -Description: Ghanaian Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: gsg -Description: German Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: gsl -Description: Gusilay -Added: 2009-07-29 -%% -Type: language -Subtag: gsm -Description: Guatemalan Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: gsn -Description: Nema -Description: Gusan -Added: 2009-07-29 -%% -Type: language -Subtag: gso -Description: Southwest Gbaya -Added: 2009-07-29 -Macrolanguage: gba -%% -Type: language -Subtag: gsp -Description: Wasembo -Added: 2009-07-29 -%% -Type: language -Subtag: gss -Description: Greek Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: gsw -Description: Swiss German -Description: Alemannic -Description: Alsatian -Added: 2006-03-08 -Suppress-Script: Latn -%% -Type: language -Subtag: gta -Description: Guató -Added: 2009-07-29 -%% -Type: language -Subtag: gti -Description: Gbati-ri -Added: 2009-07-29 -Deprecated: 2015-02-12 -Preferred-Value: nyc -%% -Type: language -Subtag: gtu -Description: Aghu-Tharnggala -Added: 2013-09-10 -%% -Type: language -Subtag: gua -Description: Shiki -Added: 2009-07-29 -%% -Type: language -Subtag: gub -Description: Guajajára -Added: 2009-07-29 -%% -Type: language -Subtag: guc -Description: Wayuu -Added: 2009-07-29 -%% -Type: language -Subtag: gud -Description: Yocoboué Dida -Added: 2009-07-29 -%% -Type: language -Subtag: gue -Description: Gurindji -Added: 2009-07-29 -%% -Type: language -Subtag: guf -Description: Gupapuyngu -Added: 2009-07-29 -%% -Type: language -Subtag: gug -Description: Paraguayan Guaraní -Added: 2009-07-29 -Macrolanguage: gn -%% -Type: language -Subtag: guh -Description: Guahibo -Added: 2009-07-29 -%% -Type: language -Subtag: gui -Description: Eastern Bolivian Guaraní -Added: 2009-07-29 -Macrolanguage: gn -%% -Type: language -Subtag: guk -Description: Gumuz -Added: 2009-07-29 -%% -Type: language -Subtag: gul -Description: Sea Island Creole English -Added: 2009-07-29 -%% -Type: language -Subtag: gum -Description: Guambiano -Added: 2009-07-29 -%% -Type: language -Subtag: gun -Description: Mbyá Guaraní -Added: 2009-07-29 -Macrolanguage: gn -%% -Type: language -Subtag: guo -Description: Guayabero -Added: 2009-07-29 -%% -Type: language -Subtag: gup -Description: Gunwinggu -Added: 2009-07-29 -%% -Type: language -Subtag: guq -Description: Aché -Added: 2009-07-29 -%% -Type: language -Subtag: gur -Description: Farefare -Added: 2009-07-29 -%% -Type: language -Subtag: gus -Description: Guinean Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: gut -Description: Maléku Jaíka -Added: 2009-07-29 -%% -Type: language -Subtag: guu -Description: Yanomamö -Added: 2009-07-29 -%% -Type: language -Subtag: guv -Description: Gey -Added: 2009-07-29 -Deprecated: 2016-05-30 -Preferred-Value: duz -%% -Type: language -Subtag: guw -Description: Gun -Added: 2009-07-29 -%% -Type: language -Subtag: gux -Description: Gourmanchéma -Added: 2009-07-29 -%% -Type: language -Subtag: guz -Description: Gusii -Description: Ekegusii -Added: 2009-07-29 -%% -Type: language -Subtag: gva -Description: Guana (Paraguay) -Added: 2009-07-29 -%% -Type: language -Subtag: gvc -Description: Guanano -Added: 2009-07-29 -%% -Type: language -Subtag: gve -Description: Duwet -Added: 2009-07-29 -%% -Type: language -Subtag: gvf -Description: Golin -Added: 2009-07-29 -%% -Type: language -Subtag: gvj -Description: Guajá -Added: 2009-07-29 -%% -Type: language -Subtag: gvl -Description: Gulay -Added: 2009-07-29 -%% -Type: language -Subtag: gvm -Description: Gurmana -Added: 2009-07-29 -%% -Type: language -Subtag: gvn -Description: Kuku-Yalanji -Added: 2009-07-29 -%% -Type: language -Subtag: gvo -Description: Gavião Do Jiparaná -Added: 2009-07-29 -%% -Type: language -Subtag: gvp -Description: Pará Gavião -Added: 2009-07-29 -%% -Type: language -Subtag: gvr -Description: Gurung -Added: 2009-07-29 -%% -Type: language -Subtag: gvs -Description: Gumawana -Added: 2009-07-29 -%% -Type: language -Subtag: gvy -Description: Guyani -Added: 2009-07-29 -%% -Type: language -Subtag: gwa -Description: Mbato -Added: 2009-07-29 -%% -Type: language -Subtag: gwb -Description: Gwa -Added: 2009-07-29 -%% -Type: language -Subtag: gwc -Description: Gawri -Description: Kalami -Added: 2009-07-29 -%% -Type: language -Subtag: gwd -Description: Gawwada -Added: 2009-07-29 -%% -Type: language -Subtag: gwe -Description: Gweno -Added: 2009-07-29 -%% -Type: language -Subtag: gwf -Description: Gowro -Added: 2009-07-29 -%% -Type: language -Subtag: gwg -Description: Moo -Added: 2009-07-29 -%% -Type: language -Subtag: gwi -Description: Gwichʼin -Added: 2005-10-16 -%% -Type: language -Subtag: gwj -Description: ǀGwi -Added: 2009-07-29 -%% -Type: language -Subtag: gwm -Description: Awngthim -Added: 2012-08-12 -%% -Type: language -Subtag: gwn -Description: Gwandara -Added: 2009-07-29 -%% -Type: language -Subtag: gwr -Description: Gwere -Added: 2009-07-29 -%% -Type: language -Subtag: gwt -Description: Gawar-Bati -Added: 2009-07-29 -%% -Type: language -Subtag: gwu -Description: Guwamu -Added: 2009-07-29 -%% -Type: language -Subtag: gww -Description: Kwini -Added: 2009-07-29 -%% -Type: language -Subtag: gwx -Description: Gua -Added: 2009-07-29 -%% -Type: language -Subtag: gxx -Description: Wè Southern -Added: 2009-07-29 -%% -Type: language -Subtag: gya -Description: Northwest Gbaya -Added: 2009-07-29 -Macrolanguage: gba -%% -Type: language -Subtag: gyb -Description: Garus -Added: 2009-07-29 -%% -Type: language -Subtag: gyd -Description: Kayardild -Added: 2009-07-29 -%% -Type: language -Subtag: gye -Description: Gyem -Added: 2009-07-29 -%% -Type: language -Subtag: gyf -Description: Gungabula -Added: 2009-07-29 -%% -Type: language -Subtag: gyg -Description: Gbayi -Added: 2009-07-29 -%% -Type: language -Subtag: gyi -Description: Gyele -Added: 2009-07-29 -%% -Type: language -Subtag: gyl -Description: Gayil -Added: 2009-07-29 -%% -Type: language -Subtag: gym -Description: Ngäbere -Added: 2009-07-29 -%% -Type: language -Subtag: gyn -Description: Guyanese Creole English -Added: 2009-07-29 -%% -Type: language -Subtag: gyo -Description: Gyalsumdo -Added: 2018-03-08 -%% -Type: language -Subtag: gyr -Description: Guarayu -Added: 2009-07-29 -%% -Type: language -Subtag: gyy -Description: Gunya -Added: 2009-07-29 -%% -Type: language -Subtag: gyz -Description: Geji -Description: Gyaazi -Added: 2021-02-20 -%% -Type: language -Subtag: gza -Description: Ganza -Added: 2009-07-29 -%% -Type: language -Subtag: gzi -Description: Gazi -Added: 2009-07-29 -%% -Type: language -Subtag: gzn -Description: Gane -Added: 2009-07-29 -%% -Type: language -Subtag: haa -Description: Hän -Added: 2009-07-29 -%% -Type: language -Subtag: hab -Description: Hanoi Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: hac -Description: Gurani -Added: 2009-07-29 -%% -Type: language -Subtag: had -Description: Hatam -Added: 2009-07-29 -%% -Type: language -Subtag: hae -Description: Eastern Oromo -Added: 2009-07-29 -Macrolanguage: om -%% -Type: language -Subtag: haf -Description: Haiphong Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: hag -Description: Hanga -Added: 2009-07-29 -%% -Type: language -Subtag: hah -Description: Hahon -Added: 2009-07-29 -%% -Type: language -Subtag: hai -Description: Haida -Added: 2005-10-16 -Scope: macrolanguage -%% -Type: language -Subtag: haj -Description: Hajong -Added: 2009-07-29 -%% -Type: language -Subtag: hak -Description: Hakka Chinese -Added: 2009-07-29 -Macrolanguage: zh -%% -Type: language -Subtag: hal -Description: Halang -Added: 2009-07-29 -%% -Type: language -Subtag: ham -Description: Hewa -Added: 2009-07-29 -%% -Type: language -Subtag: han -Description: Hangaza -Added: 2009-07-29 -%% -Type: language -Subtag: hao -Description: Hakö -Added: 2009-07-29 -%% -Type: language -Subtag: hap -Description: Hupla -Added: 2009-07-29 -%% -Type: language -Subtag: haq -Description: Ha -Added: 2009-07-29 -%% -Type: language -Subtag: har -Description: Harari -Added: 2009-07-29 -%% -Type: language -Subtag: has -Description: Haisla -Added: 2009-07-29 -%% -Type: language -Subtag: hav -Description: Havu -Added: 2009-07-29 -%% -Type: language -Subtag: haw -Description: Hawaiian -Added: 2005-10-16 -%% -Type: language -Subtag: hax -Description: Southern Haida -Added: 2009-07-29 -Macrolanguage: hai -%% -Type: language -Subtag: hay -Description: Haya -Added: 2009-07-29 -%% -Type: language -Subtag: haz -Description: Hazaragi -Added: 2009-07-29 -%% -Type: language -Subtag: hba -Description: Hamba -Added: 2009-07-29 -%% -Type: language -Subtag: hbb -Description: Huba -Added: 2009-07-29 -%% -Type: language -Subtag: hbn -Description: Heiban -Added: 2009-07-29 -%% -Type: language -Subtag: hbo -Description: Ancient Hebrew -Added: 2009-07-29 -%% -Type: language -Subtag: hbu -Description: Habu -Added: 2009-07-29 -%% -Type: language -Subtag: hca -Description: Andaman Creole Hindi -Added: 2009-07-29 -%% -Type: language -Subtag: hch -Description: Huichol -Added: 2009-07-29 -%% -Type: language -Subtag: hdn -Description: Northern Haida -Added: 2009-07-29 -Macrolanguage: hai -%% -Type: language -Subtag: hds -Description: Honduras Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: hdy -Description: Hadiyya -Added: 2009-07-29 -%% -Type: language -Subtag: hea -Description: Northern Qiandong Miao -Added: 2009-07-29 -Macrolanguage: hmn -%% -Type: language -Subtag: hed -Description: Herdé -Added: 2009-07-29 -%% -Type: language -Subtag: heg -Description: Helong -Added: 2009-07-29 -%% -Type: language -Subtag: heh -Description: Hehe -Added: 2009-07-29 -%% -Type: language -Subtag: hei -Description: Heiltsuk -Added: 2009-07-29 -%% -Type: language -Subtag: hem -Description: Hemba -Added: 2009-07-29 -%% -Type: language -Subtag: hgm -Description: Haiǁom -Added: 2009-07-29 -%% -Type: language -Subtag: hgw -Description: Haigwai -Added: 2009-07-29 -%% -Type: language -Subtag: hhi -Description: Hoia Hoia -Added: 2009-07-29 -%% -Type: language -Subtag: hhr -Description: Kerak -Added: 2009-07-29 -%% -Type: language -Subtag: hhy -Description: Hoyahoya -Added: 2009-07-29 -%% -Type: language -Subtag: hia -Description: Lamang -Added: 2009-07-29 -%% -Type: language -Subtag: hib -Description: Hibito -Added: 2009-07-29 -%% -Type: language -Subtag: hid -Description: Hidatsa -Added: 2009-07-29 -%% -Type: language -Subtag: hif -Description: Fiji Hindi -Added: 2009-07-29 -%% -Type: language -Subtag: hig -Description: Kamwe -Added: 2009-07-29 -%% -Type: language -Subtag: hih -Description: Pamosu -Added: 2009-07-29 -%% -Type: language -Subtag: hii -Description: Hinduri -Added: 2009-07-29 -%% -Type: language -Subtag: hij -Description: Hijuk -Added: 2009-07-29 -%% -Type: language -Subtag: hik -Description: Seit-Kaitetu -Added: 2009-07-29 -%% -Type: language -Subtag: hil -Description: Hiligaynon -Added: 2005-10-16 -%% -Type: language -Subtag: him -Description: Himachali languages -Description: Western Pahari languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: hio -Description: Tsoa -Added: 2009-07-29 -%% -Type: language -Subtag: hir -Description: Himarimã -Added: 2009-07-29 -%% -Type: language -Subtag: hit -Description: Hittite -Added: 2005-10-16 -%% -Type: language -Subtag: hiw -Description: Hiw -Added: 2009-07-29 -%% -Type: language -Subtag: hix -Description: Hixkaryána -Added: 2009-07-29 -%% -Type: language -Subtag: hji -Description: Haji -Added: 2009-07-29 -Macrolanguage: ms -%% -Type: language -Subtag: hka -Description: Kahe -Added: 2009-07-29 -%% -Type: language -Subtag: hke -Description: Hunde -Added: 2009-07-29 -%% -Type: language -Subtag: hkh -Description: Khah -Description: Poguli -Added: 2021-02-20 -%% -Type: language -Subtag: hkk -Description: Hunjara-Kaina Ke -Added: 2009-07-29 -%% -Type: language -Subtag: hkn -Description: Mel-Khaonh -Added: 2018-03-08 -%% -Type: language -Subtag: hks -Description: Hong Kong Sign Language -Description: Heung Kong Sau Yue -Added: 2009-07-29 -%% -Type: language -Subtag: hla -Description: Halia -Added: 2009-07-29 -%% -Type: language -Subtag: hlb -Description: Halbi -Added: 2009-07-29 -%% -Type: language -Subtag: hld -Description: Halang Doan -Added: 2009-07-29 -%% -Type: language -Subtag: hle -Description: Hlersu -Added: 2009-07-29 -%% -Type: language -Subtag: hlt -Description: Matu Chin -Added: 2009-07-29 -%% -Type: language -Subtag: hlu -Description: Hieroglyphic Luwian -Added: 2009-07-29 -%% -Type: language -Subtag: hma -Description: Southern Mashan Hmong -Description: Southern Mashan Miao -Added: 2009-07-29 -Macrolanguage: hmn -%% -Type: language -Subtag: hmb -Description: Humburi Senni Songhay -Added: 2009-07-29 -%% -Type: language -Subtag: hmc -Description: Central Huishui Hmong -Description: Central Huishui Miao -Added: 2009-07-29 -Macrolanguage: hmn -%% -Type: language -Subtag: hmd -Description: Large Flowery Miao -Description: A-hmaos -Description: Da-Hua Miao -Added: 2009-07-29 -Macrolanguage: hmn -%% -Type: language -Subtag: hme -Description: Eastern Huishui Hmong -Description: Eastern Huishui Miao -Added: 2009-07-29 -Macrolanguage: hmn -%% -Type: language -Subtag: hmf -Description: Hmong Don -Added: 2009-07-29 -%% -Type: language -Subtag: hmg -Description: Southwestern Guiyang Hmong -Added: 2009-07-29 -Macrolanguage: hmn -%% -Type: language -Subtag: hmh -Description: Southwestern Huishui Hmong -Description: Southwestern Huishui Miao -Added: 2009-07-29 -Macrolanguage: hmn -%% -Type: language -Subtag: hmi -Description: Northern Huishui Hmong -Description: Northern Huishui Miao -Added: 2009-07-29 -Macrolanguage: hmn -%% -Type: language -Subtag: hmj -Description: Ge -Description: Gejia -Added: 2009-07-29 -Macrolanguage: hmn -%% -Type: language -Subtag: hmk -Description: Maek -Added: 2009-07-29 -%% -Type: language -Subtag: hml -Description: Luopohe Hmong -Description: Luopohe Miao -Added: 2009-07-29 -Macrolanguage: hmn -%% -Type: language -Subtag: hmm -Description: Central Mashan Hmong -Description: Central Mashan Miao -Added: 2009-07-29 -Macrolanguage: hmn -%% -Type: language -Subtag: hmn -Description: Hmong -Description: Mong -Added: 2005-10-16 -Scope: macrolanguage -%% -Type: language -Subtag: hmp -Description: Northern Mashan Hmong -Description: Northern Mashan Miao -Added: 2009-07-29 -Macrolanguage: hmn -%% -Type: language -Subtag: hmq -Description: Eastern Qiandong Miao -Added: 2009-07-29 -Macrolanguage: hmn -%% -Type: language -Subtag: hmr -Description: Hmar -Added: 2009-07-29 -%% -Type: language -Subtag: hms -Description: Southern Qiandong Miao -Added: 2009-07-29 -Macrolanguage: hmn -%% -Type: language -Subtag: hmt -Description: Hamtai -Added: 2009-07-29 -%% -Type: language -Subtag: hmu -Description: Hamap -Added: 2009-07-29 -%% -Type: language -Subtag: hmv -Description: Hmong Dô -Added: 2009-07-29 -%% -Type: language -Subtag: hmw -Description: Western Mashan Hmong -Description: Western Mashan Miao -Added: 2009-07-29 -Macrolanguage: hmn -%% -Type: language -Subtag: hmx -Description: Hmong-Mien languages -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: hmy -Description: Southern Guiyang Hmong -Description: Southern Guiyang Miao -Added: 2009-07-29 -Macrolanguage: hmn -%% -Type: language -Subtag: hmz -Description: Hmong Shua -Description: Sinicized Miao -Added: 2009-07-29 -Macrolanguage: hmn -%% -Type: language -Subtag: hna -Description: Mina (Cameroon) -Added: 2009-07-29 -%% -Type: language -Subtag: hnd -Description: Southern Hindko -Added: 2009-07-29 -Macrolanguage: lah -%% -Type: language -Subtag: hne -Description: Chhattisgarhi -Added: 2009-07-29 -%% -Type: language -Subtag: hng -Description: Hungu -Added: 2020-03-28 -%% -Type: language -Subtag: hnh -Description: ǁAni -Added: 2009-07-29 -%% -Type: language -Subtag: hni -Description: Hani -Added: 2009-07-29 -%% -Type: language -Subtag: hnj -Description: Hmong Njua -Description: Mong Leng -Description: Mong Njua -Added: 2009-07-29 -Macrolanguage: hmn -%% -Type: language -Subtag: hnm -Description: Hainanese -Added: 2024-12-12 -Macrolanguage: zh -%% -Type: language -Subtag: hnn -Description: Hanunoo -Added: 2009-07-29 -%% -Type: language -Subtag: hno -Description: Northern Hindko -Added: 2009-07-29 -Macrolanguage: lah -%% -Type: language -Subtag: hns -Description: Caribbean Hindustani -Added: 2009-07-29 -%% -Type: language -Subtag: hnu -Description: Hung -Added: 2009-07-29 -%% -Type: language -Subtag: hoa -Description: Hoava -Added: 2009-07-29 -%% -Type: language -Subtag: hob -Description: Mari (Madang Province) -Added: 2009-07-29 -%% -Type: language -Subtag: hoc -Description: Ho -Added: 2009-07-29 -%% -Type: language -Subtag: hod -Description: Holma -Added: 2009-07-29 -%% -Type: language -Subtag: hoe -Description: Horom -Added: 2009-07-29 -%% -Type: language -Subtag: hoh -Description: Hobyót -Added: 2009-07-29 -%% -Type: language -Subtag: hoi -Description: Holikachuk -Added: 2009-07-29 -%% -Type: language -Subtag: hoj -Description: Hadothi -Description: Haroti -Added: 2009-07-29 -Macrolanguage: raj -%% -Type: language -Subtag: hok -Description: Hokan languages -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: hol -Description: Holu -Added: 2009-07-29 -%% -Type: language -Subtag: hom -Description: Homa -Added: 2009-07-29 -%% -Type: language -Subtag: hoo -Description: Holoholo -Added: 2009-07-29 -%% -Type: language -Subtag: hop -Description: Hopi -Added: 2009-07-29 -%% -Type: language -Subtag: hor -Description: Horo -Added: 2009-07-29 -%% -Type: language -Subtag: hos -Description: Ho Chi Minh City Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: hot -Description: Hote -Description: Malê -Added: 2009-07-29 -%% -Type: language -Subtag: hov -Description: Hovongan -Added: 2009-07-29 -%% -Type: language -Subtag: how -Description: Honi -Added: 2009-07-29 -%% -Type: language -Subtag: hoy -Description: Holiya -Added: 2009-07-29 -%% -Type: language -Subtag: hoz -Description: Hozo -Added: 2009-07-29 -%% -Type: language -Subtag: hpo -Description: Hpon -Added: 2009-07-29 -%% -Type: language -Subtag: hps -Description: Hawai'i Sign Language (HSL) -Description: Hawai'i Pidgin Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: hra -Description: Hrangkhol -Added: 2009-07-29 -%% -Type: language -Subtag: hrc -Description: Niwer Mil -Added: 2013-09-10 -%% -Type: language -Subtag: hre -Description: Hre -Added: 2009-07-29 -%% -Type: language -Subtag: hrk -Description: Haruku -Added: 2009-07-29 -%% -Type: language -Subtag: hrm -Description: Horned Miao -Added: 2009-07-29 -Macrolanguage: hmn -%% -Type: language -Subtag: hro -Description: Haroi -Added: 2009-07-29 -%% -Type: language -Subtag: hrp -Description: Nhirrpi -Added: 2013-09-10 -%% -Type: language -Subtag: hrr -Description: Horuru -Added: 2009-07-29 -Deprecated: 2012-08-12 -Preferred-Value: jal -%% -Type: language -Subtag: hrt -Description: Hértevin -Added: 2009-07-29 -%% -Type: language -Subtag: hru -Description: Hruso -Added: 2009-07-29 -%% -Type: language -Subtag: hrw -Description: Warwar Feni -Added: 2013-09-10 -%% -Type: language -Subtag: hrx -Description: Hunsrik -Added: 2009-07-29 -%% -Type: language -Subtag: hrz -Description: Harzani -Added: 2009-07-29 -%% -Type: language -Subtag: hsb -Description: Upper Sorbian -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: hsh -Description: Hungarian Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: hsl -Description: Hausa Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: hsn -Description: Xiang Chinese -Added: 2009-07-29 -Macrolanguage: zh -%% -Type: language -Subtag: hss -Description: Harsusi -Added: 2009-07-29 -%% -Type: language -Subtag: hti -Description: Hoti -Added: 2009-07-29 -%% -Type: language -Subtag: hto -Description: Minica Huitoto -Added: 2009-07-29 -%% -Type: language -Subtag: hts -Description: Hadza -Added: 2009-07-29 -%% -Type: language -Subtag: htu -Description: Hitu -Added: 2009-07-29 -%% -Type: language -Subtag: htx -Description: Middle Hittite -Added: 2009-07-29 -%% -Type: language -Subtag: hub -Description: Huambisa -Added: 2009-07-29 -%% -Type: language -Subtag: huc -Description: ǂHua -Description: ǂʼAmkhoe -Added: 2009-07-29 -%% -Type: language -Subtag: hud -Description: Huaulu -Added: 2009-07-29 -%% -Type: language -Subtag: hue -Description: San Francisco Del Mar Huave -Added: 2009-07-29 -%% -Type: language -Subtag: huf -Description: Humene -Added: 2009-07-29 -%% -Type: language -Subtag: hug -Description: Huachipaeri -Added: 2009-07-29 -%% -Type: language -Subtag: huh -Description: Huilliche -Added: 2009-07-29 -%% -Type: language -Subtag: hui -Description: Huli -Added: 2009-07-29 -%% -Type: language -Subtag: huj -Description: Northern Guiyang Hmong -Description: Northern Guiyang Miao -Added: 2009-07-29 -Macrolanguage: hmn -%% -Type: language -Subtag: huk -Description: Hulung -Added: 2009-07-29 -%% -Type: language -Subtag: hul -Description: Hula -Added: 2009-07-29 -%% -Type: language -Subtag: hum -Description: Hungana -Added: 2009-07-29 -%% -Type: language -Subtag: huo -Description: Hu -Added: 2009-07-29 -%% -Type: language -Subtag: hup -Description: Hupa -Added: 2005-10-16 -%% -Type: language -Subtag: huq -Description: Tsat -Added: 2009-07-29 -%% -Type: language -Subtag: hur -Description: Halkomelem -Added: 2009-07-29 -%% -Type: language -Subtag: hus -Description: Huastec -Added: 2009-07-29 -%% -Type: language -Subtag: hut -Description: Humla -Added: 2009-07-29 -%% -Type: language -Subtag: huu -Description: Murui Huitoto -Added: 2009-07-29 -%% -Type: language -Subtag: huv -Description: San Mateo Del Mar Huave -Added: 2009-07-29 -%% -Type: language -Subtag: huw -Description: Hukumina -Added: 2009-07-29 -%% -Type: language -Subtag: hux -Description: Nüpode Huitoto -Added: 2009-07-29 -%% -Type: language -Subtag: huy -Description: Hulaulá -Added: 2009-07-29 -%% -Type: language -Subtag: huz -Description: Hunzib -Added: 2009-07-29 -%% -Type: language -Subtag: hvc -Description: Haitian Vodoun Culture Language -Added: 2009-07-29 -%% -Type: language -Subtag: hve -Description: San Dionisio Del Mar Huave -Added: 2009-07-29 -%% -Type: language -Subtag: hvk -Description: Haveke -Added: 2009-07-29 -%% -Type: language -Subtag: hvn -Description: Sabu -Added: 2009-07-29 -%% -Type: language -Subtag: hvv -Description: Santa María Del Mar Huave -Added: 2009-07-29 -%% -Type: language -Subtag: hwa -Description: Wané -Added: 2009-07-29 -%% -Type: language -Subtag: hwc -Description: Hawai'i Creole English -Description: Hawai'i Pidgin -Added: 2009-07-29 -%% -Type: language -Subtag: hwo -Description: Hwana -Added: 2009-07-29 -%% -Type: language -Subtag: hya -Description: Hya -Added: 2009-07-29 -%% -Type: language -Subtag: hyw -Description: Western Armenian -Added: 2018-03-08 -Comments: see also hy -%% -Type: language -Subtag: hyx -Description: Armenian (family) -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: iai -Description: Iaai -Added: 2009-07-29 -%% -Type: language -Subtag: ian -Description: Iatmul -Added: 2009-07-29 -%% -Type: language -Subtag: iap -Description: Iapama -Added: 2009-07-29 -Deprecated: 2016-05-30 -%% -Type: language -Subtag: iar -Description: Purari -Added: 2009-07-29 -%% -Type: language -Subtag: iba -Description: Iban -Added: 2005-10-16 -%% -Type: language -Subtag: ibb -Description: Ibibio -Added: 2009-07-29 -%% -Type: language -Subtag: ibd -Description: Iwaidja -Added: 2009-07-29 -%% -Type: language -Subtag: ibe -Description: Akpes -Added: 2009-07-29 -%% -Type: language -Subtag: ibg -Description: Ibanag -Added: 2009-07-29 -%% -Type: language -Subtag: ibh -Description: Bih -Added: 2017-02-23 -%% -Type: language -Subtag: ibi -Description: Ibilo -Added: 2009-07-29 -Deprecated: 2012-08-12 -Preferred-Value: opa -%% -Type: language -Subtag: ibl -Description: Ibaloi -Added: 2009-07-29 -%% -Type: language -Subtag: ibm -Description: Agoi -Added: 2009-07-29 -%% -Type: language -Subtag: ibn -Description: Ibino -Added: 2009-07-29 -%% -Type: language -Subtag: ibr -Description: Ibuoro -Added: 2009-07-29 -%% -Type: language -Subtag: ibu -Description: Ibu -Added: 2009-07-29 -%% -Type: language -Subtag: iby -Description: Ibani -Added: 2009-07-29 -%% -Type: language -Subtag: ica -Description: Ede Ica -Added: 2009-07-29 -%% -Type: language -Subtag: ich -Description: Etkywan -Added: 2009-07-29 -%% -Type: language -Subtag: icl -Description: Icelandic Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: icr -Description: Islander Creole English -Added: 2009-07-29 -%% -Type: language -Subtag: ida -Description: Idakho-Isukha-Tiriki -Description: Luidakho-Luisukha-Lutirichi -Added: 2009-07-29 -Macrolanguage: luy -%% -Type: language -Subtag: idb -Description: Indo-Portuguese -Added: 2009-07-29 -%% -Type: language -Subtag: idc -Description: Idon -Description: Ajiya -Added: 2009-07-29 -%% -Type: language -Subtag: idd -Description: Ede Idaca -Added: 2009-07-29 -%% -Type: language -Subtag: ide -Description: Idere -Added: 2009-07-29 -%% -Type: language -Subtag: idi -Description: Idi -Added: 2009-07-29 -%% -Type: language -Subtag: idr -Description: Indri -Added: 2009-07-29 -%% -Type: language -Subtag: ids -Description: Idesa -Added: 2009-07-29 -%% -Type: language -Subtag: idt -Description: Idaté -Added: 2009-07-29 -%% -Type: language -Subtag: idu -Description: Idoma -Added: 2009-07-29 -%% -Type: language -Subtag: ifa -Description: Amganad Ifugao -Added: 2009-07-29 -%% -Type: language -Subtag: ifb -Description: Batad Ifugao -Description: Ayangan Ifugao -Added: 2009-07-29 -%% -Type: language -Subtag: ife -Description: Ifè -Added: 2009-07-29 -%% -Type: language -Subtag: iff -Description: Ifo -Added: 2009-07-29 -%% -Type: language -Subtag: ifk -Description: Tuwali Ifugao -Added: 2009-07-29 -%% -Type: language -Subtag: ifm -Description: Teke-Fuumu -Added: 2009-07-29 -%% -Type: language -Subtag: ifu -Description: Mayoyao Ifugao -Added: 2009-07-29 -%% -Type: language -Subtag: ify -Description: Keley-I Kallahan -Added: 2009-07-29 -%% -Type: language -Subtag: igb -Description: Ebira -Added: 2009-07-29 -%% -Type: language -Subtag: ige -Description: Igede -Added: 2009-07-29 -%% -Type: language -Subtag: igg -Description: Igana -Added: 2009-07-29 -%% -Type: language -Subtag: igl -Description: Igala -Added: 2009-07-29 -%% -Type: language -Subtag: igm -Description: Kanggape -Added: 2009-07-29 -%% -Type: language -Subtag: ign -Description: Ignaciano -Added: 2009-07-29 -%% -Type: language -Subtag: igo -Description: Isebe -Added: 2009-07-29 -%% -Type: language -Subtag: igs -Description: Interglossa -Added: 2009-07-29 -%% -Type: language -Subtag: igw -Description: Igwe -Added: 2009-07-29 -%% -Type: language -Subtag: ihb -Description: Iha Based Pidgin -Added: 2009-07-29 -%% -Type: language -Subtag: ihi -Description: Ihievbe -Added: 2009-07-29 -%% -Type: language -Subtag: ihp -Description: Iha -Added: 2009-07-29 -%% -Type: language -Subtag: ihw -Description: Bidhawal -Added: 2012-08-12 -%% -Type: language -Subtag: iin -Description: Thiin -Added: 2013-09-10 -%% -Type: language -Subtag: iir -Description: Indo-Iranian languages -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: ijc -Description: Izon -Added: 2009-07-29 -%% -Type: language -Subtag: ije -Description: Biseni -Added: 2009-07-29 -%% -Type: language -Subtag: ijj -Description: Ede Ije -Added: 2009-07-29 -%% -Type: language -Subtag: ijn -Description: Kalabari -Added: 2009-07-29 -%% -Type: language -Subtag: ijo -Description: Ijo languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: ijs -Description: Southeast Ijo -Added: 2009-07-29 -%% -Type: language -Subtag: ike -Description: Eastern Canadian Inuktitut -Added: 2009-07-29 -Macrolanguage: iu -%% -Type: language -Subtag: ikh -Description: Ikhin-Arokho -Added: 2023-03-17 -%% -Type: language -Subtag: iki -Description: Iko -Added: 2009-07-29 -%% -Type: language -Subtag: ikk -Description: Ika -Added: 2009-07-29 -%% -Type: language -Subtag: ikl -Description: Ikulu -Added: 2009-07-29 -%% -Type: language -Subtag: iko -Description: Olulumo-Ikom -Added: 2009-07-29 -%% -Type: language -Subtag: ikp -Description: Ikpeshi -Added: 2009-07-29 -%% -Type: language -Subtag: ikr -Description: Ikaranggal -Added: 2013-09-10 -%% -Type: language -Subtag: iks -Description: Inuit Sign Language -Added: 2015-02-12 -%% -Type: language -Subtag: ikt -Description: Inuinnaqtun -Description: Western Canadian Inuktitut -Added: 2009-07-29 -Macrolanguage: iu -%% -Type: language -Subtag: ikv -Description: Iku-Gora-Ankwa -Added: 2009-07-29 -%% -Type: language -Subtag: ikw -Description: Ikwere -Added: 2009-07-29 -%% -Type: language -Subtag: ikx -Description: Ik -Added: 2009-07-29 -%% -Type: language -Subtag: ikz -Description: Ikizu -Added: 2009-07-29 -%% -Type: language -Subtag: ila -Description: Ile Ape -Added: 2009-07-29 -%% -Type: language -Subtag: ilb -Description: Ila -Added: 2009-07-29 -%% -Type: language -Subtag: ilg -Description: Garig-Ilgar -Added: 2009-07-29 -%% -Type: language -Subtag: ili -Description: Ili Turki -Added: 2009-07-29 -%% -Type: language -Subtag: ilk -Description: Ilongot -Added: 2009-07-29 -%% -Type: language -Subtag: ill -Description: Iranun -Added: 2009-07-29 -Deprecated: 2016-05-30 -Comments: see ilm, ilp -%% -Type: language -Subtag: ilm -Description: Iranun (Malaysia) -Added: 2016-05-30 -%% -Type: language -Subtag: ilo -Description: Iloko -Added: 2005-10-16 -%% -Type: language -Subtag: ilp -Description: Iranun (Philippines) -Added: 2016-05-30 -%% -Type: language -Subtag: ils -Description: International Sign -Added: 2009-07-29 -%% -Type: language -Subtag: ilu -Description: Ili'uun -Added: 2009-07-29 -%% -Type: language -Subtag: ilv -Description: Ilue -Added: 2009-07-29 -%% -Type: language -Subtag: ilw -Description: Talur -Added: 2009-07-29 -Deprecated: 2013-09-10 -Preferred-Value: gal -%% -Type: language -Subtag: ima -Description: Mala Malasar -Added: 2009-07-29 -%% -Type: language -Subtag: ime -Description: Imeraguen -Added: 2009-07-29 -Deprecated: 2015-02-12 -%% -Type: language -Subtag: imi -Description: Anamgura -Added: 2009-07-29 -%% -Type: language -Subtag: iml -Description: Miluk -Added: 2009-07-29 -%% -Type: language -Subtag: imn -Description: Imonda -Added: 2009-07-29 -%% -Type: language -Subtag: imo -Description: Imbongu -Added: 2009-07-29 -%% -Type: language -Subtag: imr -Description: Imroing -Added: 2009-07-29 -%% -Type: language -Subtag: ims -Description: Marsian -Added: 2009-07-29 -%% -Type: language -Subtag: imt -Description: Imotong -Added: 2022-02-25 -%% -Type: language -Subtag: imy -Description: Milyan -Added: 2009-07-29 -%% -Type: language -Subtag: inb -Description: Inga -Added: 2009-07-29 -%% -Type: language -Subtag: inc -Description: Indic languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: ine -Description: Indo-European languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: ing -Description: Degexit'an -Added: 2009-07-29 -%% -Type: language -Subtag: inh -Description: Ingush -Added: 2005-10-16 -%% -Type: language -Subtag: inj -Description: Jungle Inga -Added: 2009-07-29 -%% -Type: language -Subtag: inl -Description: Indonesian Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: inm -Description: Minaean -Added: 2009-07-29 -%% -Type: language -Subtag: inn -Description: Isinai -Added: 2009-07-29 -%% -Type: language -Subtag: ino -Description: Inoke-Yate -Added: 2009-07-29 -%% -Type: language -Subtag: inp -Description: Iñapari -Added: 2009-07-29 -%% -Type: language -Subtag: ins -Description: Indian Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: int -Description: Intha -Added: 2009-07-29 -%% -Type: language -Subtag: inz -Description: Ineseño -Added: 2009-07-29 -%% -Type: language -Subtag: ior -Description: Inor -Added: 2009-07-29 -%% -Type: language -Subtag: iou -Description: Tuma-Irumu -Added: 2009-07-29 -%% -Type: language -Subtag: iow -Description: Iowa-Oto -Added: 2009-07-29 -%% -Type: language -Subtag: ipi -Description: Ipili -Added: 2009-07-29 -%% -Type: language -Subtag: ipo -Description: Ipiko -Added: 2009-07-29 -%% -Type: language -Subtag: iqu -Description: Iquito -Added: 2009-07-29 -%% -Type: language -Subtag: iqw -Description: Ikwo -Added: 2013-09-10 -%% -Type: language -Subtag: ira -Description: Iranian languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: ire -Description: Iresim -Added: 2009-07-29 -%% -Type: language -Subtag: irh -Description: Irarutu -Added: 2009-07-29 -%% -Type: language -Subtag: iri -Description: Rigwe -Description: Irigwe -Added: 2009-07-29 -%% -Type: language -Subtag: irk -Description: Iraqw -Added: 2009-07-29 -%% -Type: language -Subtag: irn -Description: Irántxe -Added: 2009-07-29 -%% -Type: language -Subtag: iro -Description: Iroquoian languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: irr -Description: Ir -Added: 2009-07-29 -%% -Type: language -Subtag: iru -Description: Irula -Added: 2009-07-29 -%% -Type: language -Subtag: irx -Description: Kamberau -Added: 2009-07-29 -%% -Type: language -Subtag: iry -Description: Iraya -Added: 2009-07-29 -%% -Type: language -Subtag: isa -Description: Isabi -Added: 2009-07-29 -%% -Type: language -Subtag: isc -Description: Isconahua -Added: 2009-07-29 -%% -Type: language -Subtag: isd -Description: Isnag -Added: 2009-07-29 -%% -Type: language -Subtag: ise -Description: Italian Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: isg -Description: Irish Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: ish -Description: Esan -Added: 2009-07-29 -%% -Type: language -Subtag: isi -Description: Nkem-Nkum -Added: 2009-07-29 -%% -Type: language -Subtag: isk -Description: Ishkashimi -Added: 2010-03-11 -%% -Type: language -Subtag: ism -Description: Masimasi -Added: 2009-07-29 -%% -Type: language -Subtag: isn -Description: Isanzu -Added: 2009-07-29 -%% -Type: language -Subtag: iso -Description: Isoko -Added: 2009-07-29 -%% -Type: language -Subtag: isr -Description: Israeli Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: ist -Description: Istriot -Added: 2009-07-29 -%% -Type: language -Subtag: isu -Description: Isu -Description: Isu (Menchum Division) -Added: 2009-07-29 -%% -Type: language -Subtag: isv -Description: Interslavic -Added: 2024-05-15 -%% -Type: language -Subtag: itb -Description: Binongan Itneg -Added: 2009-07-29 -%% -Type: language -Subtag: itc -Description: Italic languages -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: itd -Description: Southern Tidung -Added: 2016-05-30 -%% -Type: language -Subtag: ite -Description: Itene -Added: 2009-07-29 -%% -Type: language -Subtag: iti -Description: Inlaod Itneg -Added: 2009-07-29 -%% -Type: language -Subtag: itk -Description: Judeo-Italian -Added: 2009-07-29 -%% -Type: language -Subtag: itl -Description: Itelmen -Added: 2009-07-29 -%% -Type: language -Subtag: itm -Description: Itu Mbon Uzo -Added: 2009-07-29 -%% -Type: language -Subtag: ito -Description: Itonama -Added: 2009-07-29 -%% -Type: language -Subtag: itr -Description: Iteri -Added: 2009-07-29 -%% -Type: language -Subtag: its -Description: Isekiri -Added: 2009-07-29 -%% -Type: language -Subtag: itt -Description: Maeng Itneg -Added: 2009-07-29 -%% -Type: language -Subtag: itv -Description: Itawit -Added: 2009-07-29 -%% -Type: language -Subtag: itw -Description: Ito -Added: 2009-07-29 -%% -Type: language -Subtag: itx -Description: Itik -Added: 2009-07-29 -%% -Type: language -Subtag: ity -Description: Moyadan Itneg -Added: 2009-07-29 -%% -Type: language -Subtag: itz -Description: Itzá -Added: 2009-07-29 -%% -Type: language -Subtag: ium -Description: Iu Mien -Added: 2009-07-29 -%% -Type: language -Subtag: ivb -Description: Ibatan -Added: 2009-07-29 -%% -Type: language -Subtag: ivv -Description: Ivatan -Added: 2009-07-29 -%% -Type: language -Subtag: iwk -Description: I-Wak -Added: 2009-07-29 -%% -Type: language -Subtag: iwm -Description: Iwam -Added: 2009-07-29 -%% -Type: language -Subtag: iwo -Description: Iwur -Added: 2009-07-29 -%% -Type: language -Subtag: iws -Description: Sepik Iwam -Added: 2009-07-29 -%% -Type: language -Subtag: ixc -Description: Ixcatec -Added: 2009-07-29 -%% -Type: language -Subtag: ixl -Description: Ixil -Added: 2009-07-29 -%% -Type: language -Subtag: iya -Description: Iyayu -Added: 2009-07-29 -%% -Type: language -Subtag: iyo -Description: Mesaka -Added: 2009-07-29 -%% -Type: language -Subtag: iyx -Description: Yaka (Congo) -Added: 2009-07-29 -%% -Type: language -Subtag: izh -Description: Ingrian -Added: 2009-07-29 -%% -Type: language -Subtag: izi -Description: Izi-Ezaa-Ikwo-Mgbo -Added: 2009-07-29 -Deprecated: 2013-09-10 -Comments: see eza, gmz, iqw, izz -%% -Type: language -Subtag: izm -Description: Kizamani -Added: 2023-03-17 -%% -Type: language -Subtag: izr -Description: Izere -Added: 2009-07-29 -%% -Type: language -Subtag: izz -Description: Izii -Added: 2013-09-10 -%% -Type: language -Subtag: jaa -Description: Jamamadí -Added: 2009-07-29 -%% -Type: language -Subtag: jab -Description: Hyam -Added: 2009-07-29 -%% -Type: language -Subtag: jac -Description: Popti' -Description: Jakalteko -Added: 2009-07-29 -%% -Type: language -Subtag: jad -Description: Jahanka -Added: 2009-07-29 -%% -Type: language -Subtag: jae -Description: Yabem -Added: 2009-07-29 -%% -Type: language -Subtag: jaf -Description: Jara -Added: 2009-07-29 -%% -Type: language -Subtag: jah -Description: Jah Hut -Added: 2009-07-29 -%% -Type: language -Subtag: jaj -Description: Zazao -Added: 2009-07-29 -%% -Type: language -Subtag: jak -Description: Jakun -Added: 2009-07-29 -Macrolanguage: ms -%% -Type: language -Subtag: jal -Description: Yalahatan -Added: 2009-07-29 -%% -Type: language -Subtag: jam -Description: Jamaican Creole English -Added: 2009-07-29 -%% -Type: language -Subtag: jan -Description: Jandai -Added: 2012-08-12 -%% -Type: language -Subtag: jao -Description: Yanyuwa -Added: 2009-07-29 -%% -Type: language -Subtag: jaq -Description: Yaqay -Added: 2009-07-29 -%% -Type: language -Subtag: jar -Description: Jarawa (Nigeria) -Added: 2009-07-29 -Deprecated: 2012-08-12 -Comments: see jgk, jjr -%% -Type: language -Subtag: jas -Description: New Caledonian Javanese -Added: 2009-07-29 -%% -Type: language -Subtag: jat -Description: Jakati -Added: 2009-07-29 -Macrolanguage: lah -%% -Type: language -Subtag: jau -Description: Yaur -Added: 2009-07-29 -%% -Type: language -Subtag: jax -Description: Jambi Malay -Added: 2009-07-29 -Macrolanguage: ms -%% -Type: language -Subtag: jay -Description: Yan-nhangu -Description: Nhangu -Added: 2009-07-29 -%% -Type: language -Subtag: jaz -Description: Jawe -Added: 2009-07-29 -%% -Type: language -Subtag: jbe -Description: Judeo-Berber -Added: 2009-07-29 -%% -Type: language -Subtag: jbi -Description: Badjiri -Added: 2013-09-10 -%% -Type: language -Subtag: jbj -Description: Arandai -Added: 2009-07-29 -%% -Type: language -Subtag: jbk -Description: Barikewa -Added: 2012-08-12 -%% -Type: language -Subtag: jbm -Description: Bijim -Added: 2021-02-20 -%% -Type: language -Subtag: jbn -Description: Nafusi -Added: 2009-07-29 -%% -Type: language -Subtag: jbo -Description: Lojban -Added: 2005-10-16 -%% -Type: language -Subtag: jbr -Description: Jofotek-Bromnya -Added: 2009-07-29 -%% -Type: language -Subtag: jbt -Description: Jabutí -Added: 2009-07-29 -%% -Type: language -Subtag: jbu -Description: Jukun Takum -Added: 2009-07-29 -%% -Type: language -Subtag: jbw -Description: Yawijibaya -Added: 2012-08-12 -%% -Type: language -Subtag: jcs -Description: Jamaican Country Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: jct -Description: Krymchak -Added: 2009-07-29 -%% -Type: language -Subtag: jda -Description: Jad -Added: 2009-07-29 -%% -Type: language -Subtag: jdg -Description: Jadgali -Added: 2009-07-29 -%% -Type: language -Subtag: jdt -Description: Judeo-Tat -Added: 2009-07-29 -%% -Type: language -Subtag: jeb -Description: Jebero -Added: 2009-07-29 -%% -Type: language -Subtag: jee -Description: Jerung -Added: 2009-07-29 -%% -Type: language -Subtag: jeg -Description: Jeng -Added: 2009-07-29 -Deprecated: 2017-02-23 -Preferred-Value: oyb -%% -Type: language -Subtag: jeh -Description: Jeh -Added: 2009-07-29 -%% -Type: language -Subtag: jei -Description: Yei -Added: 2009-07-29 -%% -Type: language -Subtag: jek -Description: Jeri Kuo -Added: 2009-07-29 -%% -Type: language -Subtag: jel -Description: Yelmek -Added: 2009-07-29 -%% -Type: language -Subtag: jen -Description: Dza -Added: 2009-07-29 -%% -Type: language -Subtag: jer -Description: Jere -Added: 2009-07-29 -%% -Type: language -Subtag: jet -Description: Manem -Added: 2009-07-29 -%% -Type: language -Subtag: jeu -Description: Jonkor Bourmataguil -Added: 2009-07-29 -%% -Type: language -Subtag: jgb -Description: Ngbee -Added: 2009-07-29 -%% -Type: language -Subtag: jge -Description: Judeo-Georgian -Added: 2009-07-29 -%% -Type: language -Subtag: jgk -Description: Gwak -Added: 2012-08-12 -%% -Type: language -Subtag: jgo -Description: Ngomba -Added: 2009-07-29 -%% -Type: language -Subtag: jhi -Description: Jehai -Added: 2009-07-29 -%% -Type: language -Subtag: jhs -Description: Jhankot Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: jia -Description: Jina -Added: 2009-07-29 -%% -Type: language -Subtag: jib -Description: Jibu -Added: 2009-07-29 -%% -Type: language -Subtag: jic -Description: Tol -Added: 2009-07-29 -%% -Type: language -Subtag: jid -Description: Bu (Kaduna State) -Added: 2009-07-29 -%% -Type: language -Subtag: jie -Description: Jilbe -Added: 2009-07-29 -%% -Type: language -Subtag: jig -Description: Jingulu -Description: Djingili -Added: 2009-07-29 -%% -Type: language -Subtag: jih -Description: sTodsde -Description: Shangzhai -Added: 2009-07-29 -%% -Type: language -Subtag: jii -Description: Jiiddu -Added: 2009-07-29 -%% -Type: language -Subtag: jil -Description: Jilim -Added: 2009-07-29 -%% -Type: language -Subtag: jim -Description: Jimi (Cameroon) -Added: 2009-07-29 -%% -Type: language -Subtag: jio -Description: Jiamao -Added: 2009-07-29 -%% -Type: language -Subtag: jiq -Description: Guanyinqiao -Description: Lavrung -Added: 2009-07-29 -%% -Type: language -Subtag: jit -Description: Jita -Added: 2009-07-29 -%% -Type: language -Subtag: jiu -Description: Youle Jinuo -Added: 2009-07-29 -%% -Type: language -Subtag: jiv -Description: Shuar -Added: 2009-07-29 -%% -Type: language -Subtag: jiy -Description: Buyuan Jinuo -Added: 2009-07-29 -%% -Type: language -Subtag: jje -Description: Jejueo -Added: 2015-02-12 -%% -Type: language -Subtag: jjr -Description: Bankal -Added: 2012-08-12 -%% -Type: language -Subtag: jka -Description: Kaera -Added: 2016-05-30 -%% -Type: language -Subtag: jkm -Description: Mobwa Karen -Added: 2012-08-12 -%% -Type: language -Subtag: jko -Description: Kubo -Added: 2009-07-29 -%% -Type: language -Subtag: jkp -Description: Paku Karen -Added: 2012-08-12 -%% -Type: language -Subtag: jkr -Description: Koro (India) -Added: 2012-08-12 -%% -Type: language -Subtag: jks -Description: Amami Koniya Sign Language -Added: 2021-02-20 -%% -Type: language -Subtag: jku -Description: Labir -Added: 2009-07-29 -%% -Type: language -Subtag: jle -Description: Ngile -Added: 2009-07-29 -%% -Type: language -Subtag: jls -Description: Jamaican Sign Language -Added: 2010-03-11 -%% -Type: language -Subtag: jma -Description: Dima -Added: 2009-07-29 -%% -Type: language -Subtag: jmb -Description: Zumbun -Added: 2009-07-29 -%% -Type: language -Subtag: jmc -Description: Machame -Added: 2009-07-29 -%% -Type: language -Subtag: jmd -Description: Yamdena -Added: 2009-07-29 -%% -Type: language -Subtag: jmi -Description: Jimi (Nigeria) -Added: 2009-07-29 -%% -Type: language -Subtag: jml -Description: Jumli -Added: 2009-07-29 -%% -Type: language -Subtag: jmn -Description: Makuri Naga -Added: 2009-07-29 -%% -Type: language -Subtag: jmr -Description: Kamara -Added: 2009-07-29 -%% -Type: language -Subtag: jms -Description: Mashi (Nigeria) -Added: 2009-07-29 -%% -Type: language -Subtag: jmw -Description: Mouwase -Added: 2012-08-12 -%% -Type: language -Subtag: jmx -Description: Western Juxtlahuaca Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: jna -Description: Jangshung -Added: 2009-07-29 -%% -Type: language -Subtag: jnd -Description: Jandavra -Added: 2009-07-29 -%% -Type: language -Subtag: jng -Description: Yangman -Added: 2009-07-29 -%% -Type: language -Subtag: jni -Description: Janji -Added: 2009-07-29 -%% -Type: language -Subtag: jnj -Description: Yemsa -Added: 2009-07-29 -%% -Type: language -Subtag: jnl -Description: Rawat -Added: 2009-07-29 -%% -Type: language -Subtag: jns -Description: Jaunsari -Added: 2009-07-29 -%% -Type: language -Subtag: job -Description: Joba -Added: 2009-07-29 -%% -Type: language -Subtag: jod -Description: Wojenaka -Added: 2009-07-29 -%% -Type: language -Subtag: jog -Description: Jogi -Added: 2015-05-27 -%% -Type: language -Subtag: jor -Description: Jorá -Added: 2009-07-29 -%% -Type: language -Subtag: jos -Description: Jordanian Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: jow -Description: Jowulu -Added: 2009-07-29 -%% -Type: language -Subtag: jpa -Description: Jewish Palestinian Aramaic -Added: 2009-07-29 -%% -Type: language -Subtag: jpr -Description: Judeo-Persian -Added: 2005-10-16 -%% -Type: language -Subtag: jpx -Description: Japanese (family) -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: jqr -Description: Jaqaru -Added: 2009-07-29 -%% -Type: language -Subtag: jra -Description: Jarai -Added: 2009-07-29 -%% -Type: language -Subtag: jrb -Description: Judeo-Arabic -Added: 2005-10-16 -Scope: macrolanguage -%% -Type: language -Subtag: jrr -Description: Jiru -Added: 2009-07-29 -%% -Type: language -Subtag: jrt -Description: Jakattoe -Added: 2009-07-29 -%% -Type: language -Subtag: jru -Description: Japrería -Added: 2009-07-29 -%% -Type: language -Subtag: jsl -Description: Japanese Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: jua -Description: Júma -Added: 2009-07-29 -%% -Type: language -Subtag: jub -Description: Wannu -Added: 2009-07-29 -%% -Type: language -Subtag: juc -Description: Jurchen -Added: 2009-07-29 -%% -Type: language -Subtag: jud -Description: Worodougou -Added: 2009-07-29 -%% -Type: language -Subtag: juh -Description: Hõne -Added: 2009-07-29 -%% -Type: language -Subtag: jui -Description: Ngadjuri -Added: 2012-08-12 -%% -Type: language -Subtag: juk -Description: Wapan -Added: 2009-07-29 -%% -Type: language -Subtag: jul -Description: Jirel -Added: 2009-07-29 -%% -Type: language -Subtag: jum -Description: Jumjum -Added: 2009-07-29 -%% -Type: language -Subtag: jun -Description: Juang -Added: 2009-07-29 -%% -Type: language -Subtag: juo -Description: Jiba -Added: 2009-07-29 -%% -Type: language -Subtag: jup -Description: Hupdë -Added: 2009-07-29 -%% -Type: language -Subtag: jur -Description: Jurúna -Added: 2009-07-29 -%% -Type: language -Subtag: jus -Description: Jumla Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: jut -Description: Jutish -Added: 2009-07-29 -%% -Type: language -Subtag: juu -Description: Ju -Added: 2009-07-29 -%% -Type: language -Subtag: juw -Description: Wãpha -Added: 2009-07-29 -%% -Type: language -Subtag: juy -Description: Juray -Added: 2009-07-29 -%% -Type: language -Subtag: jvd -Description: Javindo -Added: 2009-07-29 -%% -Type: language -Subtag: jvn -Description: Caribbean Javanese -Added: 2009-07-29 -%% -Type: language -Subtag: jwi -Description: Jwira-Pepesa -Added: 2009-07-29 -%% -Type: language -Subtag: jya -Description: Jiarong -Added: 2009-07-29 -%% -Type: language -Subtag: jye -Description: Judeo-Yemeni Arabic -Added: 2009-07-29 -Macrolanguage: jrb -%% -Type: language -Subtag: jyy -Description: Jaya -Added: 2009-07-29 -%% -Type: language -Subtag: kaa -Description: Kara-Kalpak -Description: Karakalpak -Added: 2005-10-16 -%% -Type: language -Subtag: kab -Description: Kabyle -Added: 2005-10-16 -%% -Type: language -Subtag: kac -Description: Kachin -Description: Jingpho -Added: 2005-10-16 -%% -Type: language -Subtag: kad -Description: Adara -Added: 2009-07-29 -%% -Type: language -Subtag: kae -Description: Ketangalan -Added: 2009-07-29 -%% -Type: language -Subtag: kaf -Description: Katso -Added: 2009-07-29 -%% -Type: language -Subtag: kag -Description: Kajaman -Added: 2009-07-29 -%% -Type: language -Subtag: kah -Description: Kara (Central African Republic) -Added: 2009-07-29 -%% -Type: language -Subtag: kai -Description: Karekare -Added: 2009-07-29 -%% -Type: language -Subtag: kaj -Description: Jju -Added: 2009-07-29 -%% -Type: language -Subtag: kak -Description: Kalanguya -Description: Kayapa Kallahan -Added: 2009-07-29 -%% -Type: language -Subtag: kam -Description: Kamba (Kenya) -Added: 2005-10-16 -%% -Type: language -Subtag: kao -Description: Xaasongaxango -Added: 2009-07-29 -%% -Type: language -Subtag: kap -Description: Bezhta -Added: 2009-07-29 -%% -Type: language -Subtag: kaq -Description: Capanahua -Added: 2009-07-29 -%% -Type: language -Subtag: kar -Description: Karen languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: kav -Description: Katukína -Added: 2009-07-29 -%% -Type: language -Subtag: kaw -Description: Kawi -Added: 2005-10-16 -%% -Type: language -Subtag: kax -Description: Kao -Added: 2009-07-29 -%% -Type: language -Subtag: kay -Description: Kamayurá -Added: 2009-07-29 -%% -Type: language -Subtag: kba -Description: Kalarko -Added: 2009-07-29 -%% -Type: language -Subtag: kbb -Description: Kaxuiâna -Added: 2009-07-29 -%% -Type: language -Subtag: kbc -Description: Kadiwéu -Added: 2009-07-29 -%% -Type: language -Subtag: kbd -Description: Kabardian -Added: 2005-10-16 -%% -Type: language -Subtag: kbe -Description: Kanju -Added: 2009-07-29 -%% -Type: language -Subtag: kbf -Description: Kakauhua -Added: 2009-07-29 -Deprecated: 2015-02-12 -%% -Type: language -Subtag: kbg -Description: Khamba -Added: 2009-07-29 -%% -Type: language -Subtag: kbh -Description: Camsá -Added: 2009-07-29 -%% -Type: language -Subtag: kbi -Description: Kaptiau -Added: 2009-07-29 -%% -Type: language -Subtag: kbj -Description: Kari -Added: 2009-07-29 -%% -Type: language -Subtag: kbk -Description: Grass Koiari -Added: 2009-07-29 -%% -Type: language -Subtag: kbl -Description: Kanembu -Added: 2009-07-29 -%% -Type: language -Subtag: kbm -Description: Iwal -Added: 2009-07-29 -%% -Type: language -Subtag: kbn -Description: Kare (Central African Republic) -Added: 2009-07-29 -%% -Type: language -Subtag: kbo -Description: Keliko -Added: 2009-07-29 -%% -Type: language -Subtag: kbp -Description: Kabiyè -Added: 2009-07-29 -%% -Type: language -Subtag: kbq -Description: Kamano -Added: 2009-07-29 -%% -Type: language -Subtag: kbr -Description: Kafa -Added: 2009-07-29 -%% -Type: language -Subtag: kbs -Description: Kande -Added: 2009-07-29 -%% -Type: language -Subtag: kbt -Description: Abadi -Added: 2009-07-29 -%% -Type: language -Subtag: kbu -Description: Kabutra -Added: 2009-07-29 -%% -Type: language -Subtag: kbv -Description: Dera (Indonesia) -Added: 2009-07-29 -%% -Type: language -Subtag: kbw -Description: Kaiep -Added: 2009-07-29 -%% -Type: language -Subtag: kbx -Description: Ap Ma -Added: 2009-07-29 -%% -Type: language -Subtag: kby -Description: Manga Kanuri -Added: 2009-07-29 -Macrolanguage: kr -%% -Type: language -Subtag: kbz -Description: Duhwa -Added: 2009-07-29 -%% -Type: language -Subtag: kca -Description: Khanty -Added: 2009-07-29 -%% -Type: language -Subtag: kcb -Description: Kawacha -Added: 2009-07-29 -%% -Type: language -Subtag: kcc -Description: Lubila -Added: 2009-07-29 -%% -Type: language -Subtag: kcd -Description: Ngkâlmpw Kanum -Added: 2009-07-29 -%% -Type: language -Subtag: kce -Description: Kaivi -Added: 2009-07-29 -%% -Type: language -Subtag: kcf -Description: Ukaan -Added: 2009-07-29 -%% -Type: language -Subtag: kcg -Description: Tyap -Added: 2009-07-29 -%% -Type: language -Subtag: kch -Description: Vono -Added: 2009-07-29 -%% -Type: language -Subtag: kci -Description: Ngyian -Description: Kamantan -Added: 2009-07-29 -%% -Type: language -Subtag: kcj -Description: Kobiana -Added: 2009-07-29 -%% -Type: language -Subtag: kck -Description: Kalanga -Added: 2009-07-29 -%% -Type: language -Subtag: kcl -Description: Kela (Papua New Guinea) -Description: Kala -Added: 2009-07-29 -%% -Type: language -Subtag: kcm -Description: Gula (Central African Republic) -Added: 2009-07-29 -%% -Type: language -Subtag: kcn -Description: Nubi -Added: 2009-07-29 -%% -Type: language -Subtag: kco -Description: Kinalakna -Added: 2009-07-29 -%% -Type: language -Subtag: kcp -Description: Kanga -Added: 2009-07-29 -%% -Type: language -Subtag: kcq -Description: Kamo -Added: 2009-07-29 -%% -Type: language -Subtag: kcr -Description: Katla -Added: 2009-07-29 -%% -Type: language -Subtag: kcs -Description: Koenoem -Added: 2009-07-29 -%% -Type: language -Subtag: kct -Description: Kaian -Added: 2009-07-29 -%% -Type: language -Subtag: kcu -Description: Kami (Tanzania) -Added: 2009-07-29 -%% -Type: language -Subtag: kcv -Description: Kete -Added: 2009-07-29 -%% -Type: language -Subtag: kcw -Description: Kabwari -Added: 2009-07-29 -%% -Type: language -Subtag: kcx -Description: Kachama-Ganjule -Added: 2009-07-29 -%% -Type: language -Subtag: kcy -Description: Korandje -Added: 2009-07-29 -%% -Type: language -Subtag: kcz -Description: Konongo -Added: 2009-07-29 -%% -Type: language -Subtag: kda -Description: Worimi -Added: 2009-07-29 -%% -Type: language -Subtag: kdc -Description: Kutu -Added: 2009-07-29 -%% -Type: language -Subtag: kdd -Description: Yankunytjatjara -Added: 2009-07-29 -%% -Type: language -Subtag: kde -Description: Makonde -Added: 2009-07-29 -%% -Type: language -Subtag: kdf -Description: Mamusi -Added: 2009-07-29 -%% -Type: language -Subtag: kdg -Description: Seba -Added: 2009-07-29 -%% -Type: language -Subtag: kdh -Description: Tem -Added: 2009-07-29 -%% -Type: language -Subtag: kdi -Description: Kumam -Added: 2009-07-29 -%% -Type: language -Subtag: kdj -Description: Karamojong -Added: 2009-07-29 -%% -Type: language -Subtag: kdk -Description: Numèè -Description: Kwényi -Added: 2009-07-29 -%% -Type: language -Subtag: kdl -Description: Tsikimba -Added: 2009-07-29 -%% -Type: language -Subtag: kdm -Description: Kagoma -Added: 2009-07-29 -%% -Type: language -Subtag: kdn -Description: Kunda -Added: 2009-07-29 -%% -Type: language -Subtag: kdo -Description: Kordofanian languages -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: kdp -Description: Kaningdon-Nindem -Added: 2009-07-29 -%% -Type: language -Subtag: kdq -Description: Koch -Added: 2009-07-29 -%% -Type: language -Subtag: kdr -Description: Karaim -Added: 2009-07-29 -%% -Type: language -Subtag: kdt -Description: Kuy -Added: 2009-07-29 -%% -Type: language -Subtag: kdu -Description: Kadaru -Added: 2009-07-29 -%% -Type: language -Subtag: kdv -Description: Kado -Added: 2009-07-29 -Deprecated: 2012-08-12 -Comments: see zkd, zkn -%% -Type: language -Subtag: kdw -Description: Koneraw -Added: 2009-07-29 -%% -Type: language -Subtag: kdx -Description: Kam -Added: 2009-07-29 -%% -Type: language -Subtag: kdy -Description: Keder -Description: Keijar -Added: 2009-07-29 -%% -Type: language -Subtag: kdz -Description: Kwaja -Added: 2009-07-29 -%% -Type: language -Subtag: kea -Description: Kabuverdianu -Added: 2009-07-29 -%% -Type: language -Subtag: keb -Description: Kélé -Added: 2009-07-29 -%% -Type: language -Subtag: kec -Description: Keiga -Added: 2009-07-29 -%% -Type: language -Subtag: ked -Description: Kerewe -Added: 2009-07-29 -%% -Type: language -Subtag: kee -Description: Eastern Keres -Added: 2009-07-29 -%% -Type: language -Subtag: kef -Description: Kpessi -Added: 2009-07-29 -%% -Type: language -Subtag: keg -Description: Tese -Added: 2009-07-29 -%% -Type: language -Subtag: keh -Description: Keak -Added: 2009-07-29 -%% -Type: language -Subtag: kei -Description: Kei -Added: 2009-07-29 -%% -Type: language -Subtag: kej -Description: Kadar -Added: 2009-07-29 -%% -Type: language -Subtag: kek -Description: Kekchí -Added: 2009-07-29 -%% -Type: language -Subtag: kel -Description: Kela (Democratic Republic of Congo) -Added: 2009-07-29 -%% -Type: language -Subtag: kem -Description: Kemak -Added: 2009-07-29 -%% -Type: language -Subtag: ken -Description: Kenyang -Added: 2009-07-29 -%% -Type: language -Subtag: keo -Description: Kakwa -Added: 2009-07-29 -%% -Type: language -Subtag: kep -Description: Kaikadi -Added: 2009-07-29 -%% -Type: language -Subtag: keq -Description: Kamar -Added: 2009-07-29 -%% -Type: language -Subtag: ker -Description: Kera -Added: 2009-07-29 -%% -Type: language -Subtag: kes -Description: Kugbo -Added: 2009-07-29 -%% -Type: language -Subtag: ket -Description: Ket -Added: 2009-07-29 -%% -Type: language -Subtag: keu -Description: Akebu -Added: 2009-07-29 -%% -Type: language -Subtag: kev -Description: Kanikkaran -Added: 2009-07-29 -%% -Type: language -Subtag: kew -Description: West Kewa -Added: 2009-07-29 -%% -Type: language -Subtag: kex -Description: Kukna -Added: 2009-07-29 -%% -Type: language -Subtag: key -Description: Kupia -Added: 2009-07-29 -%% -Type: language -Subtag: kez -Description: Kukele -Added: 2009-07-29 -%% -Type: language -Subtag: kfa -Description: Kodava -Added: 2009-07-29 -%% -Type: language -Subtag: kfb -Description: Northwestern Kolami -Added: 2009-07-29 -%% -Type: language -Subtag: kfc -Description: Konda-Dora -Added: 2009-07-29 -%% -Type: language -Subtag: kfd -Description: Korra Koraga -Added: 2009-07-29 -%% -Type: language -Subtag: kfe -Description: Kota (India) -Added: 2009-07-29 -%% -Type: language -Subtag: kff -Description: Koya -Added: 2009-07-29 -%% -Type: language -Subtag: kfg -Description: Kudiya -Added: 2009-07-29 -%% -Type: language -Subtag: kfh -Description: Kurichiya -Added: 2009-07-29 -%% -Type: language -Subtag: kfi -Description: Kannada Kurumba -Added: 2009-07-29 -%% -Type: language -Subtag: kfj -Description: Kemiehua -Added: 2009-07-29 -%% -Type: language -Subtag: kfk -Description: Kinnauri -Added: 2009-07-29 -%% -Type: language -Subtag: kfl -Description: Kung -Added: 2009-07-29 -%% -Type: language -Subtag: kfm -Description: Khunsari -Added: 2009-07-29 -%% -Type: language -Subtag: kfn -Description: Kuk -Added: 2009-07-29 -%% -Type: language -Subtag: kfo -Description: Koro (Côte d'Ivoire) -Added: 2009-07-29 -%% -Type: language -Subtag: kfp -Description: Korwa -Added: 2009-07-29 -%% -Type: language -Subtag: kfq -Description: Korku -Added: 2009-07-29 -%% -Type: language -Subtag: kfr -Description: Kachhi -Description: Kutchi -Added: 2009-07-29 -%% -Type: language -Subtag: kfs -Description: Bilaspuri -Added: 2009-07-29 -%% -Type: language -Subtag: kft -Description: Kanjari -Added: 2009-07-29 -%% -Type: language -Subtag: kfu -Description: Katkari -Added: 2009-07-29 -%% -Type: language -Subtag: kfv -Description: Kurmukar -Added: 2009-07-29 -%% -Type: language -Subtag: kfw -Description: Kharam Naga -Added: 2009-07-29 -%% -Type: language -Subtag: kfx -Description: Kullu Pahari -Added: 2009-07-29 -%% -Type: language -Subtag: kfy -Description: Kumaoni -Added: 2009-07-29 -%% -Type: language -Subtag: kfz -Description: Koromfé -Added: 2009-07-29 -%% -Type: language -Subtag: kga -Description: Koyaga -Added: 2009-07-29 -%% -Type: language -Subtag: kgb -Description: Kawe -Added: 2009-07-29 -%% -Type: language -Subtag: kgc -Description: Kasseng -Added: 2009-07-29 -Deprecated: 2016-05-30 -Preferred-Value: tdf -%% -Type: language -Subtag: kgd -Description: Kataang -Added: 2009-07-29 -Deprecated: 2017-02-23 -Comments: see ncq, sct -%% -Type: language -Subtag: kge -Description: Komering -Added: 2009-07-29 -%% -Type: language -Subtag: kgf -Description: Kube -Added: 2009-07-29 -%% -Type: language -Subtag: kgg -Description: Kusunda -Added: 2009-07-29 -%% -Type: language -Subtag: kgh -Description: Upper Tanudan Kalinga -Added: 2009-07-29 -Deprecated: 2012-08-12 -Preferred-Value: kml -%% -Type: language -Subtag: kgi -Description: Selangor Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: kgj -Description: Gamale Kham -Added: 2009-07-29 -%% -Type: language -Subtag: kgk -Description: Kaiwá -Added: 2009-07-29 -%% -Type: language -Subtag: kgl -Description: Kunggari -Added: 2009-07-29 -%% -Type: language -Subtag: kgm -Description: Karipúna -Added: 2009-07-29 -Deprecated: 2023-03-17 -Preferred-Value: plu -%% -Type: language -Subtag: kgn -Description: Karingani -Added: 2009-07-29 -%% -Type: language -Subtag: kgo -Description: Krongo -Added: 2009-07-29 -%% -Type: language -Subtag: kgp -Description: Kaingang -Added: 2009-07-29 -%% -Type: language -Subtag: kgq -Description: Kamoro -Added: 2009-07-29 -%% -Type: language -Subtag: kgr -Description: Abun -Added: 2009-07-29 -%% -Type: language -Subtag: kgs -Description: Kumbainggar -Added: 2009-07-29 -%% -Type: language -Subtag: kgt -Description: Somyev -Added: 2009-07-29 -%% -Type: language -Subtag: kgu -Description: Kobol -Added: 2009-07-29 -%% -Type: language -Subtag: kgv -Description: Karas -Added: 2009-07-29 -%% -Type: language -Subtag: kgw -Description: Karon Dori -Added: 2009-07-29 -%% -Type: language -Subtag: kgx -Description: Kamaru -Added: 2009-07-29 -%% -Type: language -Subtag: kgy -Description: Kyerung -Added: 2009-07-29 -%% -Type: language -Subtag: kha -Description: Khasi -Added: 2005-10-16 -Comments: as of 2008-04-21 this subtag does not include Lyngngam; see - lyg -%% -Type: language -Subtag: khb -Description: Lü -Added: 2009-07-29 -%% -Type: language -Subtag: khc -Description: Tukang Besi North -Added: 2009-07-29 -%% -Type: language -Subtag: khd -Description: Bädi Kanum -Added: 2009-07-29 -%% -Type: language -Subtag: khe -Description: Korowai -Added: 2009-07-29 -%% -Type: language -Subtag: khf -Description: Khuen -Added: 2009-07-29 -%% -Type: language -Subtag: khg -Description: Khams Tibetan -Added: 2009-07-29 -%% -Type: language -Subtag: khh -Description: Kehu -Added: 2009-07-29 -%% -Type: language -Subtag: khi -Description: Khoisan languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: khj -Description: Kuturmi -Added: 2009-07-29 -%% -Type: language -Subtag: khk -Description: Halh Mongolian -Added: 2009-07-29 -Macrolanguage: mn -%% -Type: language -Subtag: khl -Description: Lusi -Added: 2009-07-29 -%% -Type: language -Subtag: khn -Description: Khandesi -Added: 2009-07-29 -%% -Type: language -Subtag: kho -Description: Khotanese -Description: Sakan -Added: 2005-10-16 -%% -Type: language -Subtag: khp -Description: Kapori -Description: Kapauri -Added: 2009-07-29 -%% -Type: language -Subtag: khq -Description: Koyra Chiini Songhay -Added: 2009-07-29 -%% -Type: language -Subtag: khr -Description: Kharia -Added: 2009-07-29 -%% -Type: language -Subtag: khs -Description: Kasua -Added: 2009-07-29 -%% -Type: language -Subtag: kht -Description: Khamti -Added: 2009-07-29 -%% -Type: language -Subtag: khu -Description: Nkhumbi -Added: 2009-07-29 -%% -Type: language -Subtag: khv -Description: Khvarshi -Added: 2009-07-29 -%% -Type: language -Subtag: khw -Description: Khowar -Added: 2009-07-29 -%% -Type: language -Subtag: khx -Description: Kanu -Added: 2009-07-29 -%% -Type: language -Subtag: khy -Description: Kele (Democratic Republic of Congo) -Added: 2009-07-29 -%% -Type: language -Subtag: khz -Description: Keapara -Added: 2009-07-29 -%% -Type: language -Subtag: kia -Description: Kim -Added: 2009-07-29 -%% -Type: language -Subtag: kib -Description: Koalib -Added: 2009-07-29 -%% -Type: language -Subtag: kic -Description: Kickapoo -Added: 2009-07-29 -%% -Type: language -Subtag: kid -Description: Koshin -Added: 2009-07-29 -%% -Type: language -Subtag: kie -Description: Kibet -Added: 2009-07-29 -%% -Type: language -Subtag: kif -Description: Eastern Parbate Kham -Added: 2009-07-29 -%% -Type: language -Subtag: kig -Description: Kimaama -Description: Kimaghima -Added: 2009-07-29 -%% -Type: language -Subtag: kih -Description: Kilmeri -Added: 2009-07-29 -%% -Type: language -Subtag: kii -Description: Kitsai -Added: 2009-07-29 -%% -Type: language -Subtag: kij -Description: Kilivila -Added: 2009-07-29 -%% -Type: language -Subtag: kil -Description: Kariya -Added: 2009-07-29 -%% -Type: language -Subtag: kim -Description: Karagas -Added: 2009-07-29 -%% -Type: language -Subtag: kio -Description: Kiowa -Added: 2009-07-29 -%% -Type: language -Subtag: kip -Description: Sheshi Kham -Added: 2009-07-29 -%% -Type: language -Subtag: kiq -Description: Kosadle -Description: Kosare -Added: 2009-07-29 -%% -Type: language -Subtag: kis -Description: Kis -Added: 2009-07-29 -%% -Type: language -Subtag: kit -Description: Agob -Added: 2009-07-29 -%% -Type: language -Subtag: kiu -Description: Kirmanjki (individual language) -Added: 2009-07-29 -Macrolanguage: zza -%% -Type: language -Subtag: kiv -Description: Kimbu -Added: 2009-07-29 -%% -Type: language -Subtag: kiw -Description: Northeast Kiwai -Added: 2009-07-29 -%% -Type: language -Subtag: kix -Description: Khiamniungan Naga -Added: 2009-07-29 -%% -Type: language -Subtag: kiy -Description: Kirikiri -Added: 2009-07-29 -%% -Type: language -Subtag: kiz -Description: Kisi -Added: 2009-07-29 -%% -Type: language -Subtag: kja -Description: Mlap -Added: 2009-07-29 -%% -Type: language -Subtag: kjb -Description: Q'anjob'al -Description: Kanjobal -Added: 2009-07-29 -%% -Type: language -Subtag: kjc -Description: Coastal Konjo -Added: 2009-07-29 -%% -Type: language -Subtag: kjd -Description: Southern Kiwai -Added: 2009-07-29 -%% -Type: language -Subtag: kje -Description: Kisar -Added: 2009-07-29 -%% -Type: language -Subtag: kjf -Description: Khalaj [Indo-Iranian] -Added: 2009-07-29 -Deprecated: 2020-03-28 -%% -Type: language -Subtag: kjg -Description: Khmu -Added: 2009-07-29 -%% -Type: language -Subtag: kjh -Description: Khakas -Added: 2009-07-29 -%% -Type: language -Subtag: kji -Description: Zabana -Added: 2009-07-29 -%% -Type: language -Subtag: kjj -Description: Khinalugh -Added: 2009-07-29 -%% -Type: language -Subtag: kjk -Description: Highland Konjo -Added: 2009-07-29 -%% -Type: language -Subtag: kjl -Description: Western Parbate Kham -Added: 2009-07-29 -%% -Type: language -Subtag: kjm -Description: Kháng -Added: 2009-07-29 -%% -Type: language -Subtag: kjn -Description: Kunjen -Added: 2009-07-29 -%% -Type: language -Subtag: kjo -Description: Kinnauri Pahari -Added: 2009-07-29 -%% -Type: language -Subtag: kjp -Description: Pwo Eastern Karen -Added: 2009-07-29 -%% -Type: language -Subtag: kjq -Description: Western Keres -Added: 2009-07-29 -%% -Type: language -Subtag: kjr -Description: Kurudu -Added: 2009-07-29 -%% -Type: language -Subtag: kjs -Description: East Kewa -Added: 2009-07-29 -%% -Type: language -Subtag: kjt -Description: Phrae Pwo Karen -Added: 2009-07-29 -%% -Type: language -Subtag: kju -Description: Kashaya -Added: 2009-07-29 -%% -Type: language -Subtag: kjv -Description: Kaikavian Literary Language -Added: 2015-02-12 -%% -Type: language -Subtag: kjx -Description: Ramopa -Added: 2009-07-29 -%% -Type: language -Subtag: kjy -Description: Erave -Added: 2009-07-29 -%% -Type: language -Subtag: kjz -Description: Bumthangkha -Added: 2009-07-29 -%% -Type: language -Subtag: kka -Description: Kakanda -Added: 2009-07-29 -%% -Type: language -Subtag: kkb -Description: Kwerisa -Added: 2009-07-29 -%% -Type: language -Subtag: kkc -Description: Odoodee -Added: 2009-07-29 -%% -Type: language -Subtag: kkd -Description: Kinuku -Added: 2009-07-29 -%% -Type: language -Subtag: kke -Description: Kakabe -Added: 2009-07-29 -%% -Type: language -Subtag: kkf -Description: Kalaktang Monpa -Added: 2009-07-29 -%% -Type: language -Subtag: kkg -Description: Mabaka Valley Kalinga -Added: 2009-07-29 -%% -Type: language -Subtag: kkh -Description: Khün -Added: 2009-07-29 -%% -Type: language -Subtag: kki -Description: Kagulu -Added: 2009-07-29 -%% -Type: language -Subtag: kkj -Description: Kako -Added: 2009-07-29 -%% -Type: language -Subtag: kkk -Description: Kokota -Added: 2009-07-29 -%% -Type: language -Subtag: kkl -Description: Kosarek Yale -Added: 2009-07-29 -%% -Type: language -Subtag: kkm -Description: Kiong -Added: 2009-07-29 -%% -Type: language -Subtag: kkn -Description: Kon Keu -Added: 2009-07-29 -%% -Type: language -Subtag: kko -Description: Karko -Added: 2009-07-29 -%% -Type: language -Subtag: kkp -Description: Gugubera -Description: Koko-Bera -Added: 2009-07-29 -%% -Type: language -Subtag: kkq -Description: Kaeku -Added: 2009-07-29 -%% -Type: language -Subtag: kkr -Description: Kir-Balar -Added: 2009-07-29 -%% -Type: language -Subtag: kks -Description: Giiwo -Added: 2009-07-29 -%% -Type: language -Subtag: kkt -Description: Koi -Added: 2009-07-29 -%% -Type: language -Subtag: kku -Description: Tumi -Added: 2009-07-29 -%% -Type: language -Subtag: kkv -Description: Kangean -Added: 2009-07-29 -%% -Type: language -Subtag: kkw -Description: Teke-Kukuya -Added: 2009-07-29 -%% -Type: language -Subtag: kkx -Description: Kohin -Added: 2009-07-29 -%% -Type: language -Subtag: kky -Description: Guugu Yimidhirr -Description: Guguyimidjir -Added: 2009-07-29 -%% -Type: language -Subtag: kkz -Description: Kaska -Added: 2009-07-29 -%% -Type: language -Subtag: kla -Description: Klamath-Modoc -Added: 2009-07-29 -%% -Type: language -Subtag: klb -Description: Kiliwa -Added: 2009-07-29 -%% -Type: language -Subtag: klc -Description: Kolbila -Added: 2009-07-29 -%% -Type: language -Subtag: kld -Description: Gamilaraay -Added: 2009-07-29 -%% -Type: language -Subtag: kle -Description: Kulung (Nepal) -Added: 2009-07-29 -%% -Type: language -Subtag: klf -Description: Kendeje -Added: 2009-07-29 -%% -Type: language -Subtag: klg -Description: Tagakaulo -Added: 2009-07-29 -%% -Type: language -Subtag: klh -Description: Weliki -Added: 2009-07-29 -%% -Type: language -Subtag: kli -Description: Kalumpang -Added: 2009-07-29 -%% -Type: language -Subtag: klj -Description: Khalaj -Added: 2009-07-29 -%% -Type: language -Subtag: klk -Description: Kono (Nigeria) -Added: 2009-07-29 -%% -Type: language -Subtag: kll -Description: Kagan Kalagan -Added: 2009-07-29 -%% -Type: language -Subtag: klm -Description: Migum -Added: 2009-07-29 -%% -Type: language -Subtag: kln -Description: Kalenjin -Added: 2009-07-29 -Scope: macrolanguage -%% -Type: language -Subtag: klo -Description: Kapya -Added: 2009-07-29 -%% -Type: language -Subtag: klp -Description: Kamasa -Added: 2009-07-29 -%% -Type: language -Subtag: klq -Description: Rumu -Added: 2009-07-29 -%% -Type: language -Subtag: klr -Description: Khaling -Added: 2009-07-29 -%% -Type: language -Subtag: kls -Description: Kalasha -Added: 2009-07-29 -%% -Type: language -Subtag: klt -Description: Nukna -Added: 2009-07-29 -%% -Type: language -Subtag: klu -Description: Klao -Added: 2009-07-29 -%% -Type: language -Subtag: klv -Description: Maskelynes -Added: 2009-07-29 -%% -Type: language -Subtag: klw -Description: Tado -Description: Lindu -Added: 2009-07-29 -%% -Type: language -Subtag: klx -Description: Koluwawa -Added: 2009-07-29 -%% -Type: language -Subtag: kly -Description: Kalao -Added: 2009-07-29 -%% -Type: language -Subtag: klz -Description: Kabola -Added: 2009-07-29 -%% -Type: language -Subtag: kma -Description: Konni -Added: 2009-07-29 -%% -Type: language -Subtag: kmb -Description: Kimbundu -Added: 2005-10-16 -%% -Type: language -Subtag: kmc -Description: Southern Dong -Added: 2009-07-29 -%% -Type: language -Subtag: kmd -Description: Majukayang Kalinga -Added: 2009-07-29 -%% -Type: language -Subtag: kme -Description: Bakole -Added: 2009-07-29 -%% -Type: language -Subtag: kmf -Description: Kare (Papua New Guinea) -Added: 2009-07-29 -%% -Type: language -Subtag: kmg -Description: Kâte -Added: 2009-07-29 -%% -Type: language -Subtag: kmh -Description: Kalam -Added: 2009-07-29 -%% -Type: language -Subtag: kmi -Description: Kami (Nigeria) -Added: 2009-07-29 -%% -Type: language -Subtag: kmj -Description: Kumarbhag Paharia -Added: 2009-07-29 -%% -Type: language -Subtag: kmk -Description: Limos Kalinga -Added: 2009-07-29 -%% -Type: language -Subtag: kml -Description: Tanudan Kalinga -Added: 2009-07-29 -%% -Type: language -Subtag: kmm -Description: Kom (India) -Added: 2009-07-29 -%% -Type: language -Subtag: kmn -Description: Awtuw -Added: 2009-07-29 -%% -Type: language -Subtag: kmo -Description: Kwoma -Added: 2009-07-29 -%% -Type: language -Subtag: kmp -Description: Gimme -Added: 2009-07-29 -%% -Type: language -Subtag: kmq -Description: Kwama -Added: 2009-07-29 -%% -Type: language -Subtag: kmr -Description: Northern Kurdish -Added: 2009-07-29 -Macrolanguage: ku -%% -Type: language -Subtag: kms -Description: Kamasau -Added: 2009-07-29 -%% -Type: language -Subtag: kmt -Description: Kemtuik -Added: 2009-07-29 -%% -Type: language -Subtag: kmu -Description: Kanite -Added: 2009-07-29 -%% -Type: language -Subtag: kmv -Description: Karipúna Creole French -Added: 2009-07-29 -%% -Type: language -Subtag: kmw -Description: Komo (Democratic Republic of Congo) -Added: 2009-07-29 -%% -Type: language -Subtag: kmx -Description: Waboda -Added: 2009-07-29 -%% -Type: language -Subtag: kmy -Description: Koma -Added: 2009-07-29 -%% -Type: language -Subtag: kmz -Description: Khorasani Turkish -Added: 2009-07-29 -%% -Type: language -Subtag: kna -Description: Dera (Nigeria) -Added: 2009-07-29 -%% -Type: language -Subtag: knb -Description: Lubuagan Kalinga -Added: 2009-07-29 -%% -Type: language -Subtag: knc -Description: Central Kanuri -Added: 2009-07-29 -Macrolanguage: kr -%% -Type: language -Subtag: knd -Description: Konda -Added: 2009-07-29 -%% -Type: language -Subtag: kne -Description: Kankanaey -Added: 2009-07-29 -%% -Type: language -Subtag: knf -Description: Mankanya -Added: 2009-07-29 -%% -Type: language -Subtag: kng -Description: Koongo -Added: 2009-07-29 -Macrolanguage: kg -%% -Type: language -Subtag: kni -Description: Kanufi -Added: 2009-07-29 -%% -Type: language -Subtag: knj -Description: Western Kanjobal -Added: 2009-07-29 -%% -Type: language -Subtag: knk -Description: Kuranko -Added: 2009-07-29 -%% -Type: language -Subtag: knl -Description: Keninjal -Added: 2009-07-29 -%% -Type: language -Subtag: knm -Description: Kanamarí -Added: 2009-07-29 -%% -Type: language -Subtag: knn -Description: Konkani (individual language) -Added: 2009-07-29 -Macrolanguage: kok -%% -Type: language -Subtag: kno -Description: Kono (Sierra Leone) -Added: 2009-07-29 -%% -Type: language -Subtag: knp -Description: Kwanja -Added: 2009-07-29 -%% -Type: language -Subtag: knq -Description: Kintaq -Added: 2009-07-29 -%% -Type: language -Subtag: knr -Description: Kaningra -Added: 2009-07-29 -%% -Type: language -Subtag: kns -Description: Kensiu -Added: 2009-07-29 -%% -Type: language -Subtag: knt -Description: Panoan Katukína -Added: 2009-07-29 -%% -Type: language -Subtag: knu -Description: Kono (Guinea) -Added: 2009-07-29 -%% -Type: language -Subtag: knv -Description: Tabo -Added: 2009-07-29 -%% -Type: language -Subtag: knw -Description: Kung-Ekoka -Added: 2009-07-29 -%% -Type: language -Subtag: knx -Description: Kendayan -Description: Salako -Added: 2009-07-29 -%% -Type: language -Subtag: kny -Description: Kanyok -Added: 2009-07-29 -%% -Type: language -Subtag: knz -Description: Kalamsé -Added: 2009-07-29 -%% -Type: language -Subtag: koa -Description: Konomala -Added: 2009-07-29 -%% -Type: language -Subtag: koc -Description: Kpati -Added: 2009-07-29 -%% -Type: language -Subtag: kod -Description: Kodi -Added: 2009-07-29 -%% -Type: language -Subtag: koe -Description: Kacipo-Bale Suri -Added: 2009-07-29 -%% -Type: language -Subtag: kof -Description: Kubi -Added: 2009-07-29 -%% -Type: language -Subtag: kog -Description: Cogui -Description: Kogi -Added: 2009-07-29 -%% -Type: language -Subtag: koh -Description: Koyo -Added: 2009-07-29 -%% -Type: language -Subtag: koi -Description: Komi-Permyak -Added: 2009-07-29 -Macrolanguage: kv -%% -Type: language -Subtag: koj -Description: Sara Dunjo -Added: 2009-07-29 -Deprecated: 2015-02-12 -Preferred-Value: kwv -%% -Type: language -Subtag: kok -Description: Konkani (macrolanguage) -Added: 2005-10-16 -Suppress-Script: Deva -Scope: macrolanguage -%% -Type: language -Subtag: kol -Description: Kol (Papua New Guinea) -Added: 2009-07-29 -%% -Type: language -Subtag: koo -Description: Konzo -Added: 2009-07-29 -%% -Type: language -Subtag: kop -Description: Waube -Added: 2009-07-29 -%% -Type: language -Subtag: koq -Description: Kota (Gabon) -Added: 2009-07-29 -%% -Type: language -Subtag: kos -Description: Kosraean -Added: 2005-10-16 -%% -Type: language -Subtag: kot -Description: Lagwan -Added: 2009-07-29 -%% -Type: language -Subtag: kou -Description: Koke -Added: 2009-07-29 -%% -Type: language -Subtag: kov -Description: Kudu-Camo -Added: 2009-07-29 -%% -Type: language -Subtag: kow -Description: Kugama -Added: 2009-07-29 -%% -Type: language -Subtag: kox -Description: Coxima -Added: 2009-07-29 -Deprecated: 2016-05-30 -%% -Type: language -Subtag: koy -Description: Koyukon -Added: 2009-07-29 -%% -Type: language -Subtag: koz -Description: Korak -Added: 2009-07-29 -%% -Type: language -Subtag: kpa -Description: Kutto -Added: 2009-07-29 -%% -Type: language -Subtag: kpb -Description: Mullu Kurumba -Added: 2009-07-29 -%% -Type: language -Subtag: kpc -Description: Curripaco -Added: 2009-07-29 -%% -Type: language -Subtag: kpd -Description: Koba -Added: 2009-07-29 -%% -Type: language -Subtag: kpe -Description: Kpelle -Added: 2005-10-16 -Scope: macrolanguage -%% -Type: language -Subtag: kpf -Description: Komba -Added: 2009-07-29 -%% -Type: language -Subtag: kpg -Description: Kapingamarangi -Added: 2009-07-29 -%% -Type: language -Subtag: kph -Description: Kplang -Added: 2009-07-29 -%% -Type: language -Subtag: kpi -Description: Kofei -Added: 2009-07-29 -%% -Type: language -Subtag: kpj -Description: Karajá -Added: 2009-07-29 -%% -Type: language -Subtag: kpk -Description: Kpan -Added: 2009-07-29 -%% -Type: language -Subtag: kpl -Description: Kpala -Added: 2009-07-29 -%% -Type: language -Subtag: kpm -Description: Koho -Added: 2009-07-29 -%% -Type: language -Subtag: kpn -Description: Kepkiriwát -Added: 2009-07-29 -%% -Type: language -Subtag: kpo -Description: Ikposo -Added: 2009-07-29 -%% -Type: language -Subtag: kpp -Description: Paku Karen -Added: 2009-07-29 -Deprecated: 2012-08-12 -Comments: see jkm, jkp -%% -Type: language -Subtag: kpq -Description: Korupun-Sela -Added: 2009-07-29 -%% -Type: language -Subtag: kpr -Description: Korafe-Yegha -Added: 2009-07-29 -%% -Type: language -Subtag: kps -Description: Tehit -Added: 2009-07-29 -%% -Type: language -Subtag: kpt -Description: Karata -Added: 2009-07-29 -%% -Type: language -Subtag: kpu -Description: Kafoa -Added: 2009-07-29 -%% -Type: language -Subtag: kpv -Description: Komi-Zyrian -Added: 2009-07-29 -Macrolanguage: kv -%% -Type: language -Subtag: kpw -Description: Kobon -Added: 2009-07-29 -%% -Type: language -Subtag: kpx -Description: Mountain Koiali -Added: 2009-07-29 -%% -Type: language -Subtag: kpy -Description: Koryak -Added: 2009-07-29 -%% -Type: language -Subtag: kpz -Description: Kupsabiny -Added: 2009-07-29 -%% -Type: language -Subtag: kqa -Description: Mum -Added: 2009-07-29 -%% -Type: language -Subtag: kqb -Description: Kovai -Added: 2009-07-29 -%% -Type: language -Subtag: kqc -Description: Doromu-Koki -Added: 2009-07-29 -%% -Type: language -Subtag: kqd -Description: Koy Sanjaq Surat -Added: 2009-07-29 -%% -Type: language -Subtag: kqe -Description: Kalagan -Added: 2009-07-29 -%% -Type: language -Subtag: kqf -Description: Kakabai -Added: 2009-07-29 -%% -Type: language -Subtag: kqg -Description: Khe -Added: 2009-07-29 -%% -Type: language -Subtag: kqh -Description: Kisankasa -Added: 2009-07-29 -%% -Type: language -Subtag: kqi -Description: Koitabu -Added: 2009-07-29 -%% -Type: language -Subtag: kqj -Description: Koromira -Added: 2009-07-29 -%% -Type: language -Subtag: kqk -Description: Kotafon Gbe -Added: 2009-07-29 -%% -Type: language -Subtag: kql -Description: Kyenele -Added: 2009-07-29 -%% -Type: language -Subtag: kqm -Description: Khisa -Added: 2009-07-29 -%% -Type: language -Subtag: kqn -Description: Kaonde -Added: 2009-07-29 -%% -Type: language -Subtag: kqo -Description: Eastern Krahn -Added: 2009-07-29 -%% -Type: language -Subtag: kqp -Description: Kimré -Added: 2009-07-29 -%% -Type: language -Subtag: kqq -Description: Krenak -Added: 2009-07-29 -%% -Type: language -Subtag: kqr -Description: Kimaragang -Added: 2009-07-29 -%% -Type: language -Subtag: kqs -Description: Northern Kissi -Added: 2009-07-29 -%% -Type: language -Subtag: kqt -Description: Klias River Kadazan -Added: 2009-07-29 -%% -Type: language -Subtag: kqu -Description: Seroa -Added: 2009-07-29 -%% -Type: language -Subtag: kqv -Description: Okolod -Added: 2009-07-29 -%% -Type: language -Subtag: kqw -Description: Kandas -Added: 2009-07-29 -%% -Type: language -Subtag: kqx -Description: Mser -Added: 2009-07-29 -%% -Type: language -Subtag: kqy -Description: Koorete -Added: 2009-07-29 -%% -Type: language -Subtag: kqz -Description: Korana -Added: 2009-07-29 -%% -Type: language -Subtag: kra -Description: Kumhali -Added: 2009-07-29 -%% -Type: language -Subtag: krb -Description: Karkin -Added: 2009-07-29 -%% -Type: language -Subtag: krc -Description: Karachay-Balkar -Added: 2005-10-16 -%% -Type: language -Subtag: krd -Description: Kairui-Midiki -Added: 2009-07-29 -%% -Type: language -Subtag: kre -Description: Panará -Added: 2009-07-29 -%% -Type: language -Subtag: krf -Description: Koro (Vanuatu) -Added: 2009-07-29 -%% -Type: language -Subtag: krh -Description: Kurama -Added: 2009-07-29 -%% -Type: language -Subtag: kri -Description: Krio -Added: 2009-07-29 -%% -Type: language -Subtag: krj -Description: Kinaray-A -Added: 2009-07-29 -%% -Type: language -Subtag: krk -Description: Kerek -Added: 2009-07-29 -%% -Type: language -Subtag: krl -Description: Karelian -Added: 2006-03-08 -%% -Type: language -Subtag: krm -Description: Krim -Added: 2009-07-29 -Deprecated: 2017-02-23 -Preferred-Value: bmf -%% -Type: language -Subtag: krn -Description: Sapo -Added: 2009-07-29 -%% -Type: language -Subtag: kro -Description: Kru languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: krp -Description: Durop -Added: 2009-07-29 -%% -Type: language -Subtag: krr -Description: Krung -Added: 2009-07-29 -%% -Type: language -Subtag: krs -Description: Gbaya (Sudan) -Added: 2009-07-29 -%% -Type: language -Subtag: krt -Description: Tumari Kanuri -Added: 2009-07-29 -Macrolanguage: kr -%% -Type: language -Subtag: kru -Description: Kurukh -Added: 2005-10-16 -%% -Type: language -Subtag: krv -Description: Kavet -Added: 2009-07-29 -%% -Type: language -Subtag: krw -Description: Western Krahn -Added: 2009-07-29 -%% -Type: language -Subtag: krx -Description: Karon -Added: 2009-07-29 -%% -Type: language -Subtag: kry -Description: Kryts -Added: 2009-07-29 -%% -Type: language -Subtag: krz -Description: Sota Kanum -Added: 2009-07-29 -%% -Type: language -Subtag: ksa -Description: Shuwa-Zamani -Added: 2009-07-29 -Deprecated: 2023-03-17 -Comments: see izm, rsw -%% -Type: language -Subtag: ksb -Description: Shambala -Added: 2009-07-29 -%% -Type: language -Subtag: ksc -Description: Southern Kalinga -Added: 2009-07-29 -%% -Type: language -Subtag: ksd -Description: Kuanua -Added: 2009-07-29 -%% -Type: language -Subtag: kse -Description: Kuni -Added: 2009-07-29 -%% -Type: language -Subtag: ksf -Description: Bafia -Added: 2009-07-29 -%% -Type: language -Subtag: ksg -Description: Kusaghe -Added: 2009-07-29 -%% -Type: language -Subtag: ksh -Description: Kölsch -Added: 2009-07-29 -%% -Type: language -Subtag: ksi -Description: Krisa -Description: I'saka -Added: 2009-07-29 -%% -Type: language -Subtag: ksj -Description: Uare -Added: 2009-07-29 -%% -Type: language -Subtag: ksk -Description: Kansa -Added: 2009-07-29 -%% -Type: language -Subtag: ksl -Description: Kumalu -Added: 2009-07-29 -%% -Type: language -Subtag: ksm -Description: Kumba -Added: 2009-07-29 -%% -Type: language -Subtag: ksn -Description: Kasiguranin -Added: 2009-07-29 -%% -Type: language -Subtag: kso -Description: Kofa -Added: 2009-07-29 -%% -Type: language -Subtag: ksp -Description: Kaba -Added: 2009-07-29 -%% -Type: language -Subtag: ksq -Description: Kwaami -Added: 2009-07-29 -%% -Type: language -Subtag: ksr -Description: Borong -Added: 2009-07-29 -%% -Type: language -Subtag: kss -Description: Southern Kisi -Added: 2009-07-29 -%% -Type: language -Subtag: kst -Description: Winyé -Added: 2009-07-29 -%% -Type: language -Subtag: ksu -Description: Khamyang -Added: 2009-07-29 -%% -Type: language -Subtag: ksv -Description: Kusu -Added: 2009-07-29 -%% -Type: language -Subtag: ksw -Description: S'gaw Karen -Added: 2009-07-29 -%% -Type: language -Subtag: ksx -Description: Kedang -Added: 2009-07-29 -%% -Type: language -Subtag: ksy -Description: Kharia Thar -Added: 2009-07-29 -%% -Type: language -Subtag: ksz -Description: Kodaku -Added: 2009-07-29 -%% -Type: language -Subtag: kta -Description: Katua -Added: 2009-07-29 -%% -Type: language -Subtag: ktb -Description: Kambaata -Added: 2009-07-29 -%% -Type: language -Subtag: ktc -Description: Kholok -Added: 2009-07-29 -%% -Type: language -Subtag: ktd -Description: Kokata -Description: Kukatha -Added: 2009-07-29 -%% -Type: language -Subtag: kte -Description: Nubri -Added: 2009-07-29 -%% -Type: language -Subtag: ktf -Description: Kwami -Added: 2009-07-29 -%% -Type: language -Subtag: ktg -Description: Kalkutung -Added: 2009-07-29 -%% -Type: language -Subtag: kth -Description: Karanga -Added: 2009-07-29 -%% -Type: language -Subtag: kti -Description: North Muyu -Added: 2009-07-29 -%% -Type: language -Subtag: ktj -Description: Plapo Krumen -Added: 2009-07-29 -%% -Type: language -Subtag: ktk -Description: Kaniet -Added: 2009-07-29 -%% -Type: language -Subtag: ktl -Description: Koroshi -Added: 2009-07-29 -%% -Type: language -Subtag: ktm -Description: Kurti -Added: 2009-07-29 -%% -Type: language -Subtag: ktn -Description: Karitiâna -Added: 2009-07-29 -%% -Type: language -Subtag: kto -Description: Kuot -Added: 2009-07-29 -%% -Type: language -Subtag: ktp -Description: Kaduo -Added: 2009-07-29 -%% -Type: language -Subtag: ktq -Description: Katabaga -Added: 2009-07-29 -%% -Type: language -Subtag: ktr -Description: Kota Marudu Tinagas -Added: 2009-07-29 -Deprecated: 2016-05-30 -Preferred-Value: dtp -%% -Type: language -Subtag: kts -Description: South Muyu -Added: 2009-07-29 -%% -Type: language -Subtag: ktt -Description: Ketum -Added: 2009-07-29 -%% -Type: language -Subtag: ktu -Description: Kituba (Democratic Republic of Congo) -Added: 2009-07-29 -%% -Type: language -Subtag: ktv -Description: Eastern Katu -Added: 2009-07-29 -%% -Type: language -Subtag: ktw -Description: Kato -Added: 2009-07-29 -%% -Type: language -Subtag: ktx -Description: Kaxararí -Added: 2009-07-29 -%% -Type: language -Subtag: kty -Description: Kango (Bas-Uélé District) -Added: 2009-07-29 -%% -Type: language -Subtag: ktz -Description: Juǀʼhoan -Description: Juǀʼhoansi -Added: 2009-07-29 -%% -Type: language -Subtag: kub -Description: Kutep -Added: 2009-07-29 -%% -Type: language -Subtag: kuc -Description: Kwinsu -Added: 2009-07-29 -%% -Type: language -Subtag: kud -Description: 'Auhelawa -Added: 2009-07-29 -%% -Type: language -Subtag: kue -Description: Kuman (Papua New Guinea) -Added: 2009-07-29 -%% -Type: language -Subtag: kuf -Description: Western Katu -Added: 2009-07-29 -%% -Type: language -Subtag: kug -Description: Kupa -Added: 2009-07-29 -%% -Type: language -Subtag: kuh -Description: Kushi -Added: 2009-07-29 -%% -Type: language -Subtag: kui -Description: Kuikúro-Kalapálo -Description: Kalapalo -Added: 2009-07-29 -%% -Type: language -Subtag: kuj -Description: Kuria -Added: 2009-07-29 -%% -Type: language -Subtag: kuk -Description: Kepo' -Added: 2009-07-29 -%% -Type: language -Subtag: kul -Description: Kulere -Added: 2009-07-29 -%% -Type: language -Subtag: kum -Description: Kumyk -Added: 2005-10-16 -%% -Type: language -Subtag: kun -Description: Kunama -Added: 2009-07-29 -%% -Type: language -Subtag: kuo -Description: Kumukio -Added: 2009-07-29 -%% -Type: language -Subtag: kup -Description: Kunimaipa -Added: 2009-07-29 -%% -Type: language -Subtag: kuq -Description: Karipuna -Added: 2009-07-29 -%% -Type: language -Subtag: kus -Description: Kusaal -Added: 2009-07-29 -%% -Type: language -Subtag: kut -Description: Ktunaxa -Description: Ksanka -Description: Kutenai -Added: 2005-10-16 -%% -Type: language -Subtag: kuu -Description: Upper Kuskokwim -Added: 2009-07-29 -%% -Type: language -Subtag: kuv -Description: Kur -Added: 2009-07-29 -%% -Type: language -Subtag: kuw -Description: Kpagua -Added: 2009-07-29 -%% -Type: language -Subtag: kux -Description: Kukatja -Added: 2009-07-29 -%% -Type: language -Subtag: kuy -Description: Kuuku-Ya'u -Added: 2009-07-29 -%% -Type: language -Subtag: kuz -Description: Kunza -Added: 2009-07-29 -%% -Type: language -Subtag: kva -Description: Bagvalal -Added: 2009-07-29 -%% -Type: language -Subtag: kvb -Description: Kubu -Added: 2009-07-29 -Macrolanguage: ms -%% -Type: language -Subtag: kvc -Description: Kove -Added: 2009-07-29 -%% -Type: language -Subtag: kvd -Description: Kui (Indonesia) -Added: 2009-07-29 -%% -Type: language -Subtag: kve -Description: Kalabakan -Added: 2009-07-29 -%% -Type: language -Subtag: kvf -Description: Kabalai -Added: 2009-07-29 -%% -Type: language -Subtag: kvg -Description: Kuni-Boazi -Added: 2009-07-29 -%% -Type: language -Subtag: kvh -Description: Komodo -Added: 2009-07-29 -%% -Type: language -Subtag: kvi -Description: Kwang -Added: 2009-07-29 -%% -Type: language -Subtag: kvj -Description: Psikye -Added: 2009-07-29 -%% -Type: language -Subtag: kvk -Description: Korean Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: kvl -Description: Kayaw -Added: 2009-07-29 -%% -Type: language -Subtag: kvm -Description: Kendem -Added: 2009-07-29 -%% -Type: language -Subtag: kvn -Description: Border Kuna -Added: 2009-07-29 -%% -Type: language -Subtag: kvo -Description: Dobel -Added: 2009-07-29 -%% -Type: language -Subtag: kvp -Description: Kompane -Added: 2009-07-29 -%% -Type: language -Subtag: kvq -Description: Geba Karen -Added: 2009-07-29 -%% -Type: language -Subtag: kvr -Description: Kerinci -Added: 2009-07-29 -Macrolanguage: ms -%% -Type: language -Subtag: kvs -Description: Kunggara -Added: 2009-07-29 -Deprecated: 2016-05-30 -Preferred-Value: gdj -%% -Type: language -Subtag: kvt -Description: Lahta Karen -Description: Lahta -Added: 2009-07-29 -%% -Type: language -Subtag: kvu -Description: Yinbaw Karen -Added: 2009-07-29 -%% -Type: language -Subtag: kvv -Description: Kola -Added: 2009-07-29 -%% -Type: language -Subtag: kvw -Description: Wersing -Added: 2009-07-29 -%% -Type: language -Subtag: kvx -Description: Parkari Koli -Added: 2009-07-29 -%% -Type: language -Subtag: kvy -Description: Yintale Karen -Description: Yintale -Added: 2009-07-29 -%% -Type: language -Subtag: kvz -Description: Tsakwambo -Description: Tsaukambo -Added: 2009-07-29 -%% -Type: language -Subtag: kwa -Description: Dâw -Added: 2009-07-29 -%% -Type: language -Subtag: kwb -Description: Kwa -Added: 2009-07-29 -%% -Type: language -Subtag: kwc -Description: Likwala -Added: 2009-07-29 -%% -Type: language -Subtag: kwd -Description: Kwaio -Added: 2009-07-29 -%% -Type: language -Subtag: kwe -Description: Kwerba -Added: 2009-07-29 -%% -Type: language -Subtag: kwf -Description: Kwara'ae -Added: 2009-07-29 -%% -Type: language -Subtag: kwg -Description: Sara Kaba Deme -Added: 2009-07-29 -%% -Type: language -Subtag: kwh -Description: Kowiai -Added: 2009-07-29 -%% -Type: language -Subtag: kwi -Description: Awa-Cuaiquer -Added: 2009-07-29 -%% -Type: language -Subtag: kwj -Description: Kwanga -Added: 2009-07-29 -%% -Type: language -Subtag: kwk -Description: Kwak'wala -Description: Kwakiutl -Added: 2009-07-29 -%% -Type: language -Subtag: kwl -Description: Kofyar -Added: 2009-07-29 -%% -Type: language -Subtag: kwm -Description: Kwambi -Added: 2009-07-29 -%% -Type: language -Subtag: kwn -Description: Kwangali -Added: 2009-07-29 -%% -Type: language -Subtag: kwo -Description: Kwomtari -Added: 2009-07-29 -%% -Type: language -Subtag: kwp -Description: Kodia -Added: 2009-07-29 -%% -Type: language -Subtag: kwq -Description: Kwak -Added: 2009-07-29 -Deprecated: 2015-02-12 -Preferred-Value: yam -%% -Type: language -Subtag: kwr -Description: Kwer -Added: 2009-07-29 -%% -Type: language -Subtag: kws -Description: Kwese -Added: 2009-07-29 -%% -Type: language -Subtag: kwt -Description: Kwesten -Added: 2009-07-29 -%% -Type: language -Subtag: kwu -Description: Kwakum -Added: 2009-07-29 -%% -Type: language -Subtag: kwv -Description: Sara Kaba Náà -Added: 2009-07-29 -%% -Type: language -Subtag: kww -Description: Kwinti -Added: 2009-07-29 -%% -Type: language -Subtag: kwx -Description: Khirwar -Added: 2009-07-29 -%% -Type: language -Subtag: kwy -Description: San Salvador Kongo -Added: 2009-07-29 -Macrolanguage: kg -%% -Type: language -Subtag: kwz -Description: Kwadi -Added: 2009-07-29 -%% -Type: language -Subtag: kxa -Description: Kairiru -Added: 2009-07-29 -%% -Type: language -Subtag: kxb -Description: Krobu -Added: 2009-07-29 -%% -Type: language -Subtag: kxc -Description: Konso -Description: Khonso -Added: 2009-07-29 -%% -Type: language -Subtag: kxd -Description: Brunei -Added: 2009-07-29 -Macrolanguage: ms -%% -Type: language -Subtag: kxe -Description: Kakihum -Added: 2009-07-29 -Deprecated: 2015-02-12 -Preferred-Value: tvd -%% -Type: language -Subtag: kxf -Description: Manumanaw Karen -Description: Manumanaw -Added: 2009-07-29 -%% -Type: language -Subtag: kxh -Description: Karo (Ethiopia) -Added: 2009-07-29 -%% -Type: language -Subtag: kxi -Description: Keningau Murut -Added: 2009-07-29 -%% -Type: language -Subtag: kxj -Description: Kulfa -Added: 2009-07-29 -%% -Type: language -Subtag: kxk -Description: Zayein Karen -Added: 2009-07-29 -%% -Type: language -Subtag: kxl -Description: Nepali Kurux -Added: 2009-07-29 -Deprecated: 2020-03-28 -Preferred-Value: kru -%% -Type: language -Subtag: kxm -Description: Northern Khmer -Added: 2009-07-29 -%% -Type: language -Subtag: kxn -Description: Kanowit-Tanjong Melanau -Added: 2009-07-29 -%% -Type: language -Subtag: kxo -Description: Kanoé -Added: 2009-07-29 -%% -Type: language -Subtag: kxp -Description: Wadiyara Koli -Added: 2009-07-29 -%% -Type: language -Subtag: kxq -Description: Smärky Kanum -Added: 2009-07-29 -%% -Type: language -Subtag: kxr -Description: Koro (Papua New Guinea) -Added: 2009-07-29 -%% -Type: language -Subtag: kxs -Description: Kangjia -Added: 2009-07-29 -%% -Type: language -Subtag: kxt -Description: Koiwat -Added: 2009-07-29 -%% -Type: language -Subtag: kxu -Description: Kui (India) -Added: 2009-07-29 -Deprecated: 2020-03-28 -Comments: see dwk, uki -%% -Type: language -Subtag: kxv -Description: Kuvi -Added: 2009-07-29 -%% -Type: language -Subtag: kxw -Description: Konai -Added: 2009-07-29 -%% -Type: language -Subtag: kxx -Description: Likuba -Added: 2009-07-29 -%% -Type: language -Subtag: kxy -Description: Kayong -Added: 2009-07-29 -%% -Type: language -Subtag: kxz -Description: Kerewo -Added: 2009-07-29 -%% -Type: language -Subtag: kya -Description: Kwaya -Added: 2009-07-29 -%% -Type: language -Subtag: kyb -Description: Butbut Kalinga -Added: 2009-07-29 -%% -Type: language -Subtag: kyc -Description: Kyaka -Added: 2009-07-29 -%% -Type: language -Subtag: kyd -Description: Karey -Added: 2009-07-29 -%% -Type: language -Subtag: kye -Description: Krache -Added: 2009-07-29 -%% -Type: language -Subtag: kyf -Description: Kouya -Added: 2009-07-29 -%% -Type: language -Subtag: kyg -Description: Keyagana -Added: 2009-07-29 -%% -Type: language -Subtag: kyh -Description: Karok -Added: 2009-07-29 -%% -Type: language -Subtag: kyi -Description: Kiput -Added: 2009-07-29 -%% -Type: language -Subtag: kyj -Description: Karao -Added: 2009-07-29 -%% -Type: language -Subtag: kyk -Description: Kamayo -Added: 2009-07-29 -%% -Type: language -Subtag: kyl -Description: Kalapuya -Added: 2009-07-29 -%% -Type: language -Subtag: kym -Description: Kpatili -Added: 2009-07-29 -%% -Type: language -Subtag: kyn -Description: Northern Binukidnon -Added: 2009-07-29 -%% -Type: language -Subtag: kyo -Description: Kelon -Added: 2009-07-29 -%% -Type: language -Subtag: kyp -Description: Kang -Added: 2009-07-29 -%% -Type: language -Subtag: kyq -Description: Kenga -Added: 2009-07-29 -%% -Type: language -Subtag: kyr -Description: Kuruáya -Added: 2009-07-29 -%% -Type: language -Subtag: kys -Description: Baram Kayan -Added: 2009-07-29 -%% -Type: language -Subtag: kyt -Description: Kayagar -Added: 2009-07-29 -%% -Type: language -Subtag: kyu -Description: Western Kayah -Added: 2009-07-29 -%% -Type: language -Subtag: kyv -Description: Kayort -Added: 2009-07-29 -%% -Type: language -Subtag: kyw -Description: Kudmali -Added: 2009-07-29 -%% -Type: language -Subtag: kyx -Description: Rapoisi -Added: 2009-07-29 -%% -Type: language -Subtag: kyy -Description: Kambaira -Added: 2009-07-29 -%% -Type: language -Subtag: kyz -Description: Kayabí -Added: 2009-07-29 -%% -Type: language -Subtag: kza -Description: Western Karaboro -Added: 2009-07-29 -%% -Type: language -Subtag: kzb -Description: Kaibobo -Added: 2009-07-29 -%% -Type: language -Subtag: kzc -Description: Bondoukou Kulango -Added: 2009-07-29 -%% -Type: language -Subtag: kzd -Description: Kadai -Added: 2009-07-29 -%% -Type: language -Subtag: kze -Description: Kosena -Added: 2009-07-29 -%% -Type: language -Subtag: kzf -Description: Da'a Kaili -Added: 2009-07-29 -%% -Type: language -Subtag: kzg -Description: Kikai -Added: 2009-07-29 -%% -Type: language -Subtag: kzh -Description: Kenuzi-Dongola -Added: 2009-07-29 -Deprecated: 2012-08-12 -Comments: see dgl, xnz -%% -Type: language -Subtag: kzi -Description: Kelabit -Added: 2009-07-29 -%% -Type: language -Subtag: kzj -Description: Coastal Kadazan -Added: 2009-07-29 -Deprecated: 2016-05-30 -Preferred-Value: dtp -%% -Type: language -Subtag: kzk -Description: Kazukuru -Added: 2009-07-29 -%% -Type: language -Subtag: kzl -Description: Kayeli -Added: 2009-07-29 -%% -Type: language -Subtag: kzm -Description: Kais -Added: 2009-07-29 -%% -Type: language -Subtag: kzn -Description: Kokola -Added: 2009-07-29 -%% -Type: language -Subtag: kzo -Description: Kaningi -Added: 2009-07-29 -%% -Type: language -Subtag: kzp -Description: Kaidipang -Added: 2009-07-29 -%% -Type: language -Subtag: kzq -Description: Kaike -Added: 2009-07-29 -%% -Type: language -Subtag: kzr -Description: Karang -Added: 2009-07-29 -%% -Type: language -Subtag: kzs -Description: Sugut Dusun -Added: 2009-07-29 -%% -Type: language -Subtag: kzt -Description: Tambunan Dusun -Added: 2009-07-29 -Deprecated: 2016-05-30 -Preferred-Value: dtp -%% -Type: language -Subtag: kzu -Description: Kayupulau -Added: 2009-07-29 -%% -Type: language -Subtag: kzv -Description: Komyandaret -Added: 2009-07-29 -%% -Type: language -Subtag: kzw -Description: Karirí-Xocó -Added: 2009-07-29 -%% -Type: language -Subtag: kzx -Description: Kamarian -Added: 2009-07-29 -%% -Type: language -Subtag: kzy -Description: Kango (Tshopo District) -Added: 2009-07-29 -%% -Type: language -Subtag: kzz -Description: Kalabra -Added: 2009-07-29 -%% -Type: language -Subtag: laa -Description: Southern Subanen -Added: 2009-07-29 -%% -Type: language -Subtag: lab -Description: Linear A -Added: 2009-07-29 -%% -Type: language -Subtag: lac -Description: Lacandon -Added: 2009-07-29 -%% -Type: language -Subtag: lad -Description: Ladino -Added: 2005-10-16 -%% -Type: language -Subtag: lae -Description: Pattani -Added: 2009-07-29 -%% -Type: language -Subtag: laf -Description: Lafofa -Added: 2009-07-29 -%% -Type: language -Subtag: lag -Description: Rangi -Added: 2009-07-29 -%% -Type: language -Subtag: lah -Description: Lahnda -Added: 2005-10-16 -Scope: macrolanguage -%% -Type: language -Subtag: lai -Description: Lambya -Added: 2009-07-29 -%% -Type: language -Subtag: laj -Description: Lango (Uganda) -Added: 2009-07-29 -%% -Type: language -Subtag: lak -Description: Laka (Nigeria) -Added: 2009-07-29 -Deprecated: 2022-02-25 -Preferred-Value: ksp -%% -Type: language -Subtag: lal -Description: Lalia -Added: 2009-07-29 -%% -Type: language -Subtag: lam -Description: Lamba -Added: 2005-10-16 -%% -Type: language -Subtag: lan -Description: Laru -Added: 2009-07-29 -%% -Type: language -Subtag: lap -Description: Laka (Chad) -Added: 2009-07-29 -%% -Type: language -Subtag: laq -Description: Qabiao -Added: 2009-07-29 -%% -Type: language -Subtag: lar -Description: Larteh -Added: 2009-07-29 -%% -Type: language -Subtag: las -Description: Lama (Togo) -Added: 2009-07-29 -%% -Type: language -Subtag: lau -Description: Laba -Added: 2009-07-29 -%% -Type: language -Subtag: law -Description: Lauje -Added: 2009-07-29 -%% -Type: language -Subtag: lax -Description: Tiwa -Added: 2009-07-29 -%% -Type: language -Subtag: lay -Description: Lama Bai -Added: 2009-07-29 -%% -Type: language -Subtag: laz -Description: Aribwatsa -Added: 2009-07-29 -%% -Type: language -Subtag: lba -Description: Lui -Added: 2009-07-29 -Deprecated: 2019-04-16 -%% -Type: language -Subtag: lbb -Description: Label -Added: 2009-07-29 -%% -Type: language -Subtag: lbc -Description: Lakkia -Added: 2009-07-29 -%% -Type: language -Subtag: lbe -Description: Lak -Added: 2009-07-29 -%% -Type: language -Subtag: lbf -Description: Tinani -Added: 2009-07-29 -%% -Type: language -Subtag: lbg -Description: Laopang -Added: 2009-07-29 -%% -Type: language -Subtag: lbi -Description: La'bi -Added: 2009-07-29 -%% -Type: language -Subtag: lbj -Description: Ladakhi -Added: 2009-07-29 -%% -Type: language -Subtag: lbk -Description: Central Bontok -Added: 2010-03-11 -Macrolanguage: bnc -%% -Type: language -Subtag: lbl -Description: Libon Bikol -Added: 2010-03-11 -Macrolanguage: bik -%% -Type: language -Subtag: lbm -Description: Lodhi -Added: 2009-07-29 -%% -Type: language -Subtag: lbn -Description: Rmeet -Added: 2009-07-29 -%% -Type: language -Subtag: lbo -Description: Laven -Added: 2009-07-29 -%% -Type: language -Subtag: lbq -Description: Wampar -Added: 2009-07-29 -%% -Type: language -Subtag: lbr -Description: Lohorung -Added: 2009-07-29 -%% -Type: language -Subtag: lbs -Description: Libyan Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: lbt -Description: Lachi -Added: 2009-07-29 -%% -Type: language -Subtag: lbu -Description: Labu -Added: 2009-07-29 -%% -Type: language -Subtag: lbv -Description: Lavatbura-Lamusong -Added: 2009-07-29 -%% -Type: language -Subtag: lbw -Description: Tolaki -Added: 2009-07-29 -%% -Type: language -Subtag: lbx -Description: Lawangan -Added: 2009-07-29 -%% -Type: language -Subtag: lby -Description: Lamalama -Description: Lamu-Lamu -Added: 2009-07-29 -%% -Type: language -Subtag: lbz -Description: Lardil -Added: 2009-07-29 -%% -Type: language -Subtag: lcc -Description: Legenyem -Added: 2009-07-29 -%% -Type: language -Subtag: lcd -Description: Lola -Added: 2009-07-29 -%% -Type: language -Subtag: lce -Description: Loncong -Description: Sekak -Added: 2009-07-29 -Macrolanguage: ms -%% -Type: language -Subtag: lcf -Description: Lubu -Added: 2009-07-29 -Macrolanguage: ms -%% -Type: language -Subtag: lch -Description: Luchazi -Added: 2009-07-29 -%% -Type: language -Subtag: lcl -Description: Lisela -Added: 2009-07-29 -%% -Type: language -Subtag: lcm -Description: Tungag -Added: 2009-07-29 -%% -Type: language -Subtag: lcp -Description: Western Lawa -Added: 2009-07-29 -%% -Type: language -Subtag: lcq -Description: Luhu -Added: 2009-07-29 -%% -Type: language -Subtag: lcs -Description: Lisabata-Nuniali -Added: 2009-07-29 -%% -Type: language -Subtag: lda -Description: Kla-Dan -Added: 2013-09-10 -%% -Type: language -Subtag: ldb -Description: Dũya -Added: 2009-07-29 -%% -Type: language -Subtag: ldd -Description: Luri -Added: 2009-07-29 -%% -Type: language -Subtag: ldg -Description: Lenyima -Added: 2009-07-29 -%% -Type: language -Subtag: ldh -Description: Lamja-Dengsa-Tola -Added: 2009-07-29 -%% -Type: language -Subtag: ldi -Description: Laari -Added: 2009-07-29 -Macrolanguage: kg -%% -Type: language -Subtag: ldj -Description: Lemoro -Added: 2009-07-29 -%% -Type: language -Subtag: ldk -Description: Leelau -Added: 2009-07-29 -%% -Type: language -Subtag: ldl -Description: Kaan -Added: 2009-07-29 -%% -Type: language -Subtag: ldm -Description: Landoma -Added: 2009-07-29 -%% -Type: language -Subtag: ldn -Description: Láadan -Added: 2009-07-29 -%% -Type: language -Subtag: ldo -Description: Loo -Added: 2009-07-29 -%% -Type: language -Subtag: ldp -Description: Tso -Added: 2009-07-29 -%% -Type: language -Subtag: ldq -Description: Lufu -Added: 2009-07-29 -%% -Type: language -Subtag: lea -Description: Lega-Shabunda -Added: 2009-07-29 -%% -Type: language -Subtag: leb -Description: Lala-Bisa -Added: 2009-07-29 -%% -Type: language -Subtag: lec -Description: Leco -Added: 2009-07-29 -%% -Type: language -Subtag: led -Description: Lendu -Added: 2009-07-29 -%% -Type: language -Subtag: lee -Description: Lyélé -Added: 2009-07-29 -%% -Type: language -Subtag: lef -Description: Lelemi -Added: 2009-07-29 -%% -Type: language -Subtag: leg -Description: Lengua -Added: 2009-07-29 -Deprecated: 2014-02-28 -Comments: see enl, enx -%% -Type: language -Subtag: leh -Description: Lenje -Added: 2009-07-29 -%% -Type: language -Subtag: lei -Description: Lemio -Added: 2009-07-29 -%% -Type: language -Subtag: lej -Description: Lengola -Added: 2009-07-29 -%% -Type: language -Subtag: lek -Description: Leipon -Added: 2009-07-29 -%% -Type: language -Subtag: lel -Description: Lele (Democratic Republic of Congo) -Added: 2009-07-29 -%% -Type: language -Subtag: lem -Description: Nomaande -Added: 2009-07-29 -%% -Type: language -Subtag: len -Description: Lenca -Added: 2009-07-29 -%% -Type: language -Subtag: leo -Description: Leti (Cameroon) -Added: 2009-07-29 -%% -Type: language -Subtag: lep -Description: Lepcha -Added: 2009-07-29 -%% -Type: language -Subtag: leq -Description: Lembena -Added: 2009-07-29 -%% -Type: language -Subtag: ler -Description: Lenkau -Added: 2009-07-29 -%% -Type: language -Subtag: les -Description: Lese -Added: 2009-07-29 -%% -Type: language -Subtag: let -Description: Lesing-Gelimi -Description: Amio-Gelimi -Added: 2009-07-29 -%% -Type: language -Subtag: leu -Description: Kara (Papua New Guinea) -Added: 2009-07-29 -%% -Type: language -Subtag: lev -Description: Lamma -Added: 2009-07-29 -%% -Type: language -Subtag: lew -Description: Ledo Kaili -Added: 2009-07-29 -%% -Type: language -Subtag: lex -Description: Luang -Added: 2009-07-29 -%% -Type: language -Subtag: ley -Description: Lemolang -Added: 2009-07-29 -%% -Type: language -Subtag: lez -Description: Lezghian -Added: 2005-10-16 -%% -Type: language -Subtag: lfa -Description: Lefa -Added: 2009-07-29 -%% -Type: language -Subtag: lfb -Description: Buu (Cameroon) -Added: 2026-04-09 -%% -Type: language -Subtag: lfn -Description: Lingua Franca Nova -Added: 2009-07-29 -%% -Type: language -Subtag: lga -Description: Lungga -Added: 2009-07-29 -%% -Type: language -Subtag: lgb -Description: Laghu -Added: 2009-07-29 -%% -Type: language -Subtag: lgg -Description: Lugbara -Added: 2009-07-29 -%% -Type: language -Subtag: lgh -Description: Laghuu -Added: 2009-07-29 -%% -Type: language -Subtag: lgi -Description: Lengilu -Added: 2009-07-29 -%% -Type: language -Subtag: lgk -Description: Lingarak -Description: Neverver -Added: 2009-07-29 -%% -Type: language -Subtag: lgl -Description: Wala -Added: 2009-07-29 -%% -Type: language -Subtag: lgm -Description: Lega-Mwenga -Added: 2009-07-29 -%% -Type: language -Subtag: lgn -Description: T'apo -Description: Opuuo -Added: 2009-07-29 -%% -Type: language -Subtag: lgo -Description: Lango (South Sudan) -Added: 2022-02-25 -%% -Type: language -Subtag: lgq -Description: Logba -Added: 2009-07-29 -%% -Type: language -Subtag: lgr -Description: Lengo -Added: 2009-07-29 -%% -Type: language -Subtag: lgs -Description: Guinea-Bissau Sign Language -Description: Língua Gestual Guineense -Added: 2023-03-17 -%% -Type: language -Subtag: lgt -Description: Pahi -Added: 2009-07-29 -%% -Type: language -Subtag: lgu -Description: Longgu -Added: 2009-07-29 -%% -Type: language -Subtag: lgz -Description: Ligenza -Added: 2009-07-29 -%% -Type: language -Subtag: lha -Description: Laha (Viet Nam) -Added: 2009-07-29 -%% -Type: language -Subtag: lhh -Description: Laha (Indonesia) -Added: 2009-07-29 -%% -Type: language -Subtag: lhi -Description: Lahu Shi -Added: 2009-07-29 -%% -Type: language -Subtag: lhl -Description: Lahul Lohar -Added: 2009-07-29 -%% -Type: language -Subtag: lhm -Description: Lhomi -Added: 2009-07-29 -%% -Type: language -Subtag: lhn -Description: Lahanan -Added: 2009-07-29 -%% -Type: language -Subtag: lhp -Description: Lhokpu -Added: 2009-07-29 -%% -Type: language -Subtag: lhs -Description: Mlahsö -Added: 2009-07-29 -%% -Type: language -Subtag: lht -Description: Lo-Toga -Added: 2009-07-29 -%% -Type: language -Subtag: lhu -Description: Lahu -Added: 2009-07-29 -%% -Type: language -Subtag: lia -Description: West-Central Limba -Added: 2009-07-29 -%% -Type: language -Subtag: lib -Description: Likum -Added: 2009-07-29 -%% -Type: language -Subtag: lic -Description: Hlai -Added: 2009-07-29 -%% -Type: language -Subtag: lid -Description: Nyindrou -Added: 2009-07-29 -%% -Type: language -Subtag: lie -Description: Likila -Added: 2009-07-29 -%% -Type: language -Subtag: lif -Description: Limbu -Added: 2009-07-29 -%% -Type: language -Subtag: lig -Description: Ligbi -Added: 2009-07-29 -%% -Type: language -Subtag: lih -Description: Lihir -Added: 2009-07-29 -%% -Type: language -Subtag: lii -Description: Lingkhim -Added: 2009-07-29 -Deprecated: 2015-02-12 -Preferred-Value: raq -%% -Type: language -Subtag: lij -Description: Ligurian -Added: 2009-07-29 -%% -Type: language -Subtag: lik -Description: Lika -Added: 2009-07-29 -%% -Type: language -Subtag: lil -Description: Lillooet -Added: 2009-07-29 -%% -Type: language -Subtag: lio -Description: Liki -Added: 2009-07-29 -%% -Type: language -Subtag: lip -Description: Sekpele -Added: 2009-07-29 -%% -Type: language -Subtag: liq -Description: Libido -Added: 2009-07-29 -%% -Type: language -Subtag: lir -Description: Liberian English -Added: 2009-07-29 -%% -Type: language -Subtag: lis -Description: Lisu -Added: 2009-07-29 -%% -Type: language -Subtag: liu -Description: Logorik -Added: 2009-07-29 -%% -Type: language -Subtag: liv -Description: Liv -Added: 2009-07-29 -%% -Type: language -Subtag: liw -Description: Col -Added: 2009-07-29 -Macrolanguage: ms -%% -Type: language -Subtag: lix -Description: Liabuku -Added: 2009-07-29 -%% -Type: language -Subtag: liy -Description: Banda-Bambari -Added: 2009-07-29 -%% -Type: language -Subtag: liz -Description: Libinza -Added: 2009-07-29 -%% -Type: language -Subtag: lja -Description: Golpa -Added: 2013-09-10 -%% -Type: language -Subtag: lje -Description: Rampi -Added: 2009-07-29 -%% -Type: language -Subtag: lji -Description: Laiyolo -Added: 2009-07-29 -%% -Type: language -Subtag: ljl -Description: Li'o -Added: 2009-07-29 -%% -Type: language -Subtag: ljp -Description: Lampung Api -Added: 2009-07-29 -%% -Type: language -Subtag: ljw -Description: Yirandali -Added: 2013-09-10 -%% -Type: language -Subtag: ljx -Description: Yuru -Added: 2013-09-10 -%% -Type: language -Subtag: lka -Description: Lakalei -Added: 2009-07-29 -%% -Type: language -Subtag: lkb -Description: Kabras -Description: Lukabaras -Added: 2009-07-29 -Macrolanguage: luy -%% -Type: language -Subtag: lkc -Description: Kucong -Added: 2009-07-29 -%% -Type: language -Subtag: lkd -Description: Lakondê -Added: 2009-07-29 -%% -Type: language -Subtag: lke -Description: Kenyi -Added: 2009-07-29 -%% -Type: language -Subtag: lkh -Description: Lakha -Added: 2009-07-29 -%% -Type: language -Subtag: lki -Description: Laki -Added: 2009-07-29 -%% -Type: language -Subtag: lkj -Description: Remun -Added: 2009-07-29 -%% -Type: language -Subtag: lkl -Description: Laeko-Libuat -Added: 2009-07-29 -%% -Type: language -Subtag: lkm -Description: Kalaamaya -Added: 2013-09-10 -%% -Type: language -Subtag: lkn -Description: Lakon -Description: Vure -Added: 2009-07-29 -%% -Type: language -Subtag: lko -Description: Khayo -Description: Olukhayo -Added: 2009-07-29 -Macrolanguage: luy -%% -Type: language -Subtag: lkr -Description: Päri -Added: 2009-07-29 -%% -Type: language -Subtag: lks -Description: Kisa -Description: Olushisa -Added: 2009-07-29 -Macrolanguage: luy -%% -Type: language -Subtag: lkt -Description: Lakota -Added: 2009-07-29 -%% -Type: language -Subtag: lku -Description: Kungkari -Added: 2013-09-10 -%% -Type: language -Subtag: lky -Description: Lokoya -Added: 2009-07-29 -%% -Type: language -Subtag: lla -Description: Lala-Roba -Added: 2009-07-29 -%% -Type: language -Subtag: llb -Description: Lolo -Added: 2009-07-29 -%% -Type: language -Subtag: llc -Description: Lele (Guinea) -Added: 2009-07-29 -%% -Type: language -Subtag: lld -Description: Ladin -Added: 2009-07-29 -%% -Type: language -Subtag: lle -Description: Lele (Papua New Guinea) -Added: 2009-07-29 -%% -Type: language -Subtag: llf -Description: Hermit -Added: 2009-07-29 -%% -Type: language -Subtag: llg -Description: Lole -Added: 2009-07-29 -%% -Type: language -Subtag: llh -Description: Lamu -Added: 2009-07-29 -%% -Type: language -Subtag: lli -Description: Teke-Laali -Added: 2009-07-29 -%% -Type: language -Subtag: llj -Description: Ladji Ladji -Added: 2012-08-12 -%% -Type: language -Subtag: llk -Description: Lelak -Added: 2009-07-29 -%% -Type: language -Subtag: lll -Description: Lilau -Added: 2009-07-29 -%% -Type: language -Subtag: llm -Description: Lasalimu -Added: 2009-07-29 -%% -Type: language -Subtag: lln -Description: Lele (Chad) -Added: 2009-07-29 -%% -Type: language -Subtag: llo -Description: Khlor -Added: 2009-07-29 -Deprecated: 2019-04-16 -Preferred-Value: ngt -%% -Type: language -Subtag: llp -Description: North Efate -Added: 2009-07-29 -%% -Type: language -Subtag: llq -Description: Lolak -Added: 2009-07-29 -%% -Type: language -Subtag: lls -Description: Lithuanian Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: llu -Description: Lau -Added: 2009-07-29 -%% -Type: language -Subtag: llx -Description: Lauan -Added: 2009-07-29 -%% -Type: language -Subtag: lma -Description: East Limba -Added: 2009-07-29 -%% -Type: language -Subtag: lmb -Description: Merei -Added: 2009-07-29 -%% -Type: language -Subtag: lmc -Description: Limilngan -Added: 2009-07-29 -%% -Type: language -Subtag: lmd -Description: Lumun -Added: 2009-07-29 -%% -Type: language -Subtag: lme -Description: Pévé -Added: 2009-07-29 -%% -Type: language -Subtag: lmf -Description: South Lembata -Added: 2009-07-29 -%% -Type: language -Subtag: lmg -Description: Lamogai -Added: 2009-07-29 -%% -Type: language -Subtag: lmh -Description: Lambichhong -Added: 2009-07-29 -%% -Type: language -Subtag: lmi -Description: Lombi -Added: 2009-07-29 -%% -Type: language -Subtag: lmj -Description: West Lembata -Added: 2009-07-29 -%% -Type: language -Subtag: lmk -Description: Lamkang -Added: 2009-07-29 -%% -Type: language -Subtag: lml -Description: Hano -Added: 2009-07-29 -%% -Type: language -Subtag: lmm -Description: Lamam -Added: 2009-07-29 -Deprecated: 2014-02-28 -Preferred-Value: rmx -%% -Type: language -Subtag: lmn -Description: Lambadi -Added: 2009-07-29 -%% -Type: language -Subtag: lmo -Description: Lombard -Added: 2009-07-29 -%% -Type: language -Subtag: lmp -Description: Limbum -Added: 2009-07-29 -%% -Type: language -Subtag: lmq -Description: Lamatuka -Added: 2009-07-29 -%% -Type: language -Subtag: lmr -Description: Lamalera -Added: 2009-07-29 -%% -Type: language -Subtag: lmu -Description: Lamenu -Added: 2009-07-29 -%% -Type: language -Subtag: lmv -Description: Lomaiviti -Added: 2009-07-29 -%% -Type: language -Subtag: lmw -Description: Lake Miwok -Added: 2009-07-29 -%% -Type: language -Subtag: lmx -Description: Laimbue -Added: 2009-07-29 -%% -Type: language -Subtag: lmy -Description: Lamboya -Added: 2009-07-29 -%% -Type: language -Subtag: lmz -Description: Lumbee -Added: 2009-07-29 -Deprecated: 2020-03-28 -%% -Type: language -Subtag: lna -Description: Langbashe -Added: 2009-07-29 -%% -Type: language -Subtag: lnb -Description: Mbalanhu -Added: 2009-07-29 -%% -Type: language -Subtag: lnd -Description: Lundayeh -Description: Lun Bawang -Added: 2009-07-29 -%% -Type: language -Subtag: lng -Description: Langobardic -Added: 2009-07-29 -%% -Type: language -Subtag: lnh -Description: Lanoh -Added: 2009-07-29 -%% -Type: language -Subtag: lni -Description: Daantanai' -Added: 2009-07-29 -%% -Type: language -Subtag: lnj -Description: Leningitij -Added: 2009-07-29 -%% -Type: language -Subtag: lnl -Description: South Central Banda -Added: 2009-07-29 -%% -Type: language -Subtag: lnm -Description: Langam -Added: 2009-07-29 -%% -Type: language -Subtag: lnn -Description: Lorediakarkar -Added: 2009-07-29 -%% -Type: language -Subtag: lno -Description: Lango (South Sudan) -Added: 2009-07-29 -Deprecated: 2022-02-25 -Comments: see imt, lgo, lqr, oie -%% -Type: language -Subtag: lns -Description: Lamnso' -Added: 2009-07-29 -%% -Type: language -Subtag: lnu -Description: Longuda -Added: 2009-07-29 -%% -Type: language -Subtag: lnw -Description: Lanima -Added: 2013-09-10 -%% -Type: language -Subtag: lnz -Description: Lonzo -Added: 2009-07-29 -%% -Type: language -Subtag: loa -Description: Loloda -Added: 2009-07-29 -%% -Type: language -Subtag: lob -Description: Lobi -Added: 2009-07-29 -%% -Type: language -Subtag: loc -Description: Inonhan -Added: 2009-07-29 -%% -Type: language -Subtag: loe -Description: Saluan -Added: 2009-07-29 -%% -Type: language -Subtag: lof -Description: Logol -Added: 2009-07-29 -%% -Type: language -Subtag: log -Description: Logo -Added: 2009-07-29 -%% -Type: language -Subtag: loh -Description: Laarim -Description: Narim -Added: 2009-07-29 -%% -Type: language -Subtag: loi -Description: Loma (Côte d'Ivoire) -Added: 2009-07-29 -%% -Type: language -Subtag: loj -Description: Lou -Added: 2009-07-29 -%% -Type: language -Subtag: lok -Description: Loko -Added: 2009-07-29 -%% -Type: language -Subtag: lol -Description: Mongo -Added: 2005-10-16 -%% -Type: language -Subtag: lom -Description: Loma (Liberia) -Added: 2009-07-29 -%% -Type: language -Subtag: lon -Description: Malawi Lomwe -Added: 2009-07-29 -%% -Type: language -Subtag: loo -Description: Lombo -Added: 2009-07-29 -%% -Type: language -Subtag: lop -Description: Lopa -Added: 2009-07-29 -%% -Type: language -Subtag: loq -Description: Lobala -Added: 2009-07-29 -%% -Type: language -Subtag: lor -Description: Téén -Added: 2009-07-29 -%% -Type: language -Subtag: los -Description: Loniu -Added: 2009-07-29 -%% -Type: language -Subtag: lot -Description: Otuho -Added: 2009-07-29 -%% -Type: language -Subtag: lou -Description: Louisiana Creole -Added: 2009-07-29 -%% -Type: language -Subtag: lov -Description: Lopi -Added: 2009-07-29 -%% -Type: language -Subtag: low -Description: Tampias Lobu -Added: 2009-07-29 -%% -Type: language -Subtag: lox -Description: Loun -Added: 2009-07-29 -%% -Type: language -Subtag: loy -Description: Loke -Added: 2009-07-29 -%% -Type: language -Subtag: loz -Description: Lozi -Added: 2005-10-16 -%% -Type: language -Subtag: lpa -Description: Lelepa -Added: 2009-07-29 -%% -Type: language -Subtag: lpe -Description: Lepki -Added: 2009-07-29 -%% -Type: language -Subtag: lpn -Description: Long Phuri Naga -Added: 2009-07-29 -%% -Type: language -Subtag: lpo -Description: Lipo -Added: 2009-07-29 -%% -Type: language -Subtag: lpx -Description: Lopit -Added: 2009-07-29 -%% -Type: language -Subtag: lqr -Description: Logir -Added: 2022-02-25 -%% -Type: language -Subtag: lra -Description: Rara Bakati' -Added: 2009-07-29 -%% -Type: language -Subtag: lrc -Description: Northern Luri -Added: 2009-07-29 -%% -Type: language -Subtag: lre -Description: Laurentian -Added: 2009-07-29 -%% -Type: language -Subtag: lrg -Description: Laragia -Added: 2009-07-29 -%% -Type: language -Subtag: lri -Description: Marachi -Description: Olumarachi -Added: 2009-07-29 -Macrolanguage: luy -%% -Type: language -Subtag: lrk -Description: Loarki -Added: 2009-07-29 -%% -Type: language -Subtag: lrl -Description: Lari -Added: 2009-07-29 -%% -Type: language -Subtag: lrm -Description: Marama -Description: Olumarama -Added: 2009-07-29 -Macrolanguage: luy -%% -Type: language -Subtag: lrn -Description: Lorang -Added: 2009-07-29 -%% -Type: language -Subtag: lro -Description: Laro -Added: 2009-07-29 -%% -Type: language -Subtag: lrr -Description: Southern Yamphu -Added: 2009-07-29 -%% -Type: language -Subtag: lrt -Description: Larantuka Malay -Added: 2009-07-29 -%% -Type: language -Subtag: lrv -Description: Larevat -Added: 2009-07-29 -%% -Type: language -Subtag: lrz -Description: Lemerig -Added: 2009-07-29 -%% -Type: language -Subtag: lsa -Description: Lasgerdi -Added: 2009-07-29 -%% -Type: language -Subtag: lsb -Description: Burundian Sign Language -Description: Langue des Signes Burundaise -Added: 2021-02-20 -%% -Type: language -Subtag: lsc -Description: Albarradas Sign Language -Description: Lengua de señas Albarradas -Added: 2022-02-25 -%% -Type: language -Subtag: lsd -Description: Lishana Deni -Added: 2009-07-29 -%% -Type: language -Subtag: lse -Description: Lusengo -Added: 2009-07-29 -%% -Type: language -Subtag: lsg -Description: Lyons Sign Language -Added: 2009-07-29 -Deprecated: 2018-03-08 -%% -Type: language -Subtag: lsh -Description: Lish -Added: 2009-07-29 -%% -Type: language -Subtag: lsi -Description: Lashi -Added: 2009-07-29 -%% -Type: language -Subtag: lsl -Description: Latvian Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: lsm -Description: Saamia -Description: Olusamia -Added: 2009-07-29 -Macrolanguage: luy -%% -Type: language -Subtag: lsn -Description: Tibetan Sign Language -Added: 2019-04-16 -%% -Type: language -Subtag: lso -Description: Laos Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: lsp -Description: Panamanian Sign Language -Description: Lengua de Señas Panameñas -Added: 2009-07-29 -%% -Type: language -Subtag: lsr -Description: Aruop -Added: 2009-07-29 -%% -Type: language -Subtag: lss -Description: Lasi -Added: 2009-07-29 -%% -Type: language -Subtag: lst -Description: Trinidad and Tobago Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: lsv -Description: Sivia Sign Language -Added: 2019-04-16 -%% -Type: language -Subtag: lsw -Description: Seychelles Sign Language -Description: Lalang Siny Seselwa -Description: Langue des Signes Seychelloise -Added: 2022-02-25 -%% -Type: language -Subtag: lsy -Description: Mauritian Sign Language -Added: 2010-03-11 -%% -Type: language -Subtag: ltc -Description: Late Middle Chinese -Added: 2009-07-29 -%% -Type: language -Subtag: ltg -Description: Latgalian -Added: 2010-03-11 -Macrolanguage: lv -%% -Type: language -Subtag: lth -Description: Thur -Added: 2017-02-23 -%% -Type: language -Subtag: lti -Description: Leti (Indonesia) -Added: 2009-07-29 -%% -Type: language -Subtag: ltn -Description: Latundê -Added: 2009-07-29 -%% -Type: language -Subtag: lto -Description: Tsotso -Description: Olutsotso -Added: 2009-07-29 -Macrolanguage: luy -%% -Type: language -Subtag: lts -Description: Tachoni -Description: Lutachoni -Added: 2009-07-29 -Macrolanguage: luy -%% -Type: language -Subtag: ltu -Description: Latu -Added: 2009-07-29 -%% -Type: language -Subtag: lua -Description: Luba-Lulua -Added: 2005-10-16 -%% -Type: language -Subtag: luc -Description: Aringa -Added: 2009-07-29 -%% -Type: language -Subtag: lud -Description: Ludian -Added: 2009-07-29 -%% -Type: language -Subtag: lue -Description: Luvale -Added: 2009-07-29 -%% -Type: language -Subtag: luf -Description: Laua -Added: 2009-07-29 -%% -Type: language -Subtag: luh -Description: Leizhou Chinese -Added: 2024-12-12 -Macrolanguage: zh -%% -Type: language -Subtag: lui -Description: Luiseño -Added: 2005-10-16 -%% -Type: language -Subtag: luj -Description: Luna -Added: 2009-07-29 -%% -Type: language -Subtag: luk -Description: Lunanakha -Added: 2009-07-29 -%% -Type: language -Subtag: lul -Description: Olu'bo -Added: 2009-07-29 -%% -Type: language -Subtag: lum -Description: Luimbi -Added: 2009-07-29 -%% -Type: language -Subtag: lun -Description: Lunda -Added: 2005-10-16 -%% -Type: language -Subtag: luo -Description: Luo (Kenya and Tanzania) -Description: Dholuo -Added: 2005-10-16 -%% -Type: language -Subtag: lup -Description: Lumbu -Added: 2009-07-29 -%% -Type: language -Subtag: luq -Description: Lucumi -Added: 2009-07-29 -%% -Type: language -Subtag: lur -Description: Laura -Added: 2009-07-29 -%% -Type: language -Subtag: lus -Description: Lushai -Added: 2005-10-16 -%% -Type: language -Subtag: lut -Description: Lushootseed -Added: 2009-07-29 -%% -Type: language -Subtag: luu -Description: Lumba-Yakkha -Added: 2009-07-29 -%% -Type: language -Subtag: luv -Description: Luwati -Added: 2009-07-29 -%% -Type: language -Subtag: luw -Description: Luo (Cameroon) -Added: 2009-07-29 -%% -Type: language -Subtag: luy -Description: Luyia -Description: Oluluyia -Added: 2009-07-29 -Scope: macrolanguage -%% -Type: language -Subtag: luz -Description: Southern Luri -Added: 2009-07-29 -%% -Type: language -Subtag: lva -Description: Maku'a -Added: 2009-07-29 -%% -Type: language -Subtag: lvi -Description: Lavi -Added: 2019-04-16 -%% -Type: language -Subtag: lvk -Description: Lavukaleve -Added: 2009-07-29 -%% -Type: language -Subtag: lvl -Description: Lwel -Added: 2023-03-17 -%% -Type: language -Subtag: lvs -Description: Standard Latvian -Added: 2010-03-11 -Macrolanguage: lv -%% -Type: language -Subtag: lvu -Description: Levuka -Added: 2009-07-29 -%% -Type: language -Subtag: lwa -Description: Lwalu -Added: 2009-07-29 -%% -Type: language -Subtag: lwe -Description: Lewo Eleng -Added: 2009-07-29 -%% -Type: language -Subtag: lwg -Description: Wanga -Description: Oluwanga -Added: 2009-07-29 -Macrolanguage: luy -%% -Type: language -Subtag: lwh -Description: White Lachi -Added: 2009-07-29 -%% -Type: language -Subtag: lwl -Description: Eastern Lawa -Added: 2009-07-29 -%% -Type: language -Subtag: lwm -Description: Laomian -Added: 2009-07-29 -%% -Type: language -Subtag: lwo -Description: Luwo -Added: 2009-07-29 -%% -Type: language -Subtag: lws -Description: Malawian Sign Language -Added: 2018-03-08 -%% -Type: language -Subtag: lwt -Description: Lewotobi -Added: 2009-07-29 -%% -Type: language -Subtag: lwu -Description: Lawu -Added: 2013-09-10 -%% -Type: language -Subtag: lww -Description: Lewo -Added: 2009-07-29 -%% -Type: language -Subtag: lxm -Description: Lakurumau -Added: 2021-02-20 -%% -Type: language -Subtag: lya -Description: Layakha -Added: 2009-07-29 -%% -Type: language -Subtag: lyg -Description: Lyngngam -Added: 2009-07-29 -%% -Type: language -Subtag: lyn -Description: Luyana -Added: 2009-07-29 -%% -Type: language -Subtag: lzh -Description: Literary Chinese -Added: 2009-07-29 -Macrolanguage: zh -%% -Type: language -Subtag: lzl -Description: Litzlitz -Added: 2009-07-29 -%% -Type: language -Subtag: lzn -Description: Leinong Naga -Added: 2009-07-29 -%% -Type: language -Subtag: lzz -Description: Laz -Added: 2009-07-29 -%% -Type: language -Subtag: maa -Description: San Jerónimo Tecóatl Mazatec -Added: 2009-07-29 -Comments: see also pbm -%% -Type: language -Subtag: mab -Description: Yutanduchi Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: mad -Description: Madurese -Added: 2005-10-16 -%% -Type: language -Subtag: mae -Description: Bo-Rukul -Added: 2009-07-29 -%% -Type: language -Subtag: maf -Description: Mafa -Added: 2009-07-29 -%% -Type: language -Subtag: mag -Description: Magahi -Added: 2005-10-16 -%% -Type: language -Subtag: mai -Description: Maithili -Added: 2005-10-16 -Suppress-Script: Deva -%% -Type: language -Subtag: maj -Description: Jalapa De Díaz Mazatec -Added: 2009-07-29 -%% -Type: language -Subtag: mak -Description: Makasar -Added: 2005-10-16 -%% -Type: language -Subtag: mam -Description: Mam -Added: 2009-07-29 -%% -Type: language -Subtag: man -Description: Mandingo -Description: Manding -Added: 2005-10-16 -Scope: macrolanguage -%% -Type: language -Subtag: map -Description: Austronesian languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: maq -Description: Chiquihuitlán Mazatec -Added: 2009-07-29 -%% -Type: language -Subtag: mas -Description: Masai -Added: 2005-10-16 -%% -Type: language -Subtag: mat -Description: San Francisco Matlatzinca -Added: 2009-07-29 -%% -Type: language -Subtag: mau -Description: Huautla Mazatec -Added: 2009-07-29 -%% -Type: language -Subtag: mav -Description: Sateré-Mawé -Added: 2009-07-29 -%% -Type: language -Subtag: maw -Description: Mampruli -Added: 2009-07-29 -%% -Type: language -Subtag: max -Description: North Moluccan Malay -Added: 2009-07-29 -Macrolanguage: ms -%% -Type: language -Subtag: maz -Description: Central Mazahua -Added: 2009-07-29 -%% -Type: language -Subtag: mba -Description: Higaonon -Added: 2009-07-29 -%% -Type: language -Subtag: mbb -Description: Western Bukidnon Manobo -Added: 2009-07-29 -%% -Type: language -Subtag: mbc -Description: Macushi -Added: 2009-07-29 -%% -Type: language -Subtag: mbd -Description: Dibabawon Manobo -Added: 2009-07-29 -%% -Type: language -Subtag: mbe -Description: Molale -Added: 2009-07-29 -%% -Type: language -Subtag: mbf -Description: Baba Malay -Added: 2009-07-29 -%% -Type: language -Subtag: mbh -Description: Mangseng -Added: 2009-07-29 -%% -Type: language -Subtag: mbi -Description: Ilianen Manobo -Added: 2009-07-29 -%% -Type: language -Subtag: mbj -Description: Nadëb -Added: 2009-07-29 -%% -Type: language -Subtag: mbk -Description: Malol -Added: 2009-07-29 -%% -Type: language -Subtag: mbl -Description: Maxakalí -Added: 2009-07-29 -%% -Type: language -Subtag: mbm -Description: Ombamba -Added: 2009-07-29 -%% -Type: language -Subtag: mbn -Description: Macaguán -Added: 2009-07-29 -%% -Type: language -Subtag: mbo -Description: Mbo (Cameroon) -Added: 2009-07-29 -%% -Type: language -Subtag: mbp -Description: Malayo -Added: 2009-07-29 -%% -Type: language -Subtag: mbq -Description: Maisin -Added: 2009-07-29 -%% -Type: language -Subtag: mbr -Description: Nukak Makú -Added: 2009-07-29 -%% -Type: language -Subtag: mbs -Description: Sarangani Manobo -Added: 2009-07-29 -%% -Type: language -Subtag: mbt -Description: Matigsalug Manobo -Added: 2009-07-29 -%% -Type: language -Subtag: mbu -Description: Mbula-Bwazza -Added: 2009-07-29 -%% -Type: language -Subtag: mbv -Description: Mbulungish -Added: 2009-07-29 -%% -Type: language -Subtag: mbw -Description: Maring -Added: 2009-07-29 -%% -Type: language -Subtag: mbx -Description: Mari (East Sepik Province) -Added: 2009-07-29 -%% -Type: language -Subtag: mby -Description: Memoni -Added: 2009-07-29 -%% -Type: language -Subtag: mbz -Description: Amoltepec Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: mca -Description: Maca -Added: 2009-07-29 -%% -Type: language -Subtag: mcb -Description: Machiguenga -Added: 2009-07-29 -%% -Type: language -Subtag: mcc -Description: Bitur -Added: 2009-07-29 -%% -Type: language -Subtag: mcd -Description: Sharanahua -Added: 2009-07-29 -%% -Type: language -Subtag: mce -Description: Itundujia Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: mcf -Description: Matsés -Added: 2009-07-29 -%% -Type: language -Subtag: mcg -Description: Mapoyo -Added: 2009-07-29 -%% -Type: language -Subtag: mch -Description: Maquiritari -Added: 2009-07-29 -%% -Type: language -Subtag: mci -Description: Mese -Added: 2009-07-29 -%% -Type: language -Subtag: mcj -Description: Mvanip -Added: 2009-07-29 -%% -Type: language -Subtag: mck -Description: Mbunda -Added: 2009-07-29 -%% -Type: language -Subtag: mcl -Description: Macaguaje -Added: 2009-07-29 -%% -Type: language -Subtag: mcm -Description: Malaccan Creole Portuguese -Added: 2009-07-29 -%% -Type: language -Subtag: mcn -Description: Masana -Added: 2009-07-29 -%% -Type: language -Subtag: mco -Description: Coatlán Mixe -Added: 2009-07-29 -%% -Type: language -Subtag: mcp -Description: Makaa -Added: 2009-07-29 -%% -Type: language -Subtag: mcq -Description: Ese -Added: 2009-07-29 -%% -Type: language -Subtag: mcr -Description: Menya -Added: 2009-07-29 -%% -Type: language -Subtag: mcs -Description: Mambai -Added: 2009-07-29 -%% -Type: language -Subtag: mct -Description: Mengisa -Added: 2009-07-29 -%% -Type: language -Subtag: mcu -Description: Cameroon Mambila -Added: 2009-07-29 -%% -Type: language -Subtag: mcv -Description: Minanibai -Added: 2009-07-29 -%% -Type: language -Subtag: mcw -Description: Mawa (Chad) -Added: 2009-07-29 -%% -Type: language -Subtag: mcx -Description: Mpiemo -Added: 2009-07-29 -%% -Type: language -Subtag: mcy -Description: South Watut -Added: 2009-07-29 -%% -Type: language -Subtag: mcz -Description: Mawan -Added: 2009-07-29 -%% -Type: language -Subtag: mda -Description: Mada (Nigeria) -Added: 2009-07-29 -%% -Type: language -Subtag: mdb -Description: Morigi -Added: 2009-07-29 -%% -Type: language -Subtag: mdc -Description: Soq -Description: Male (Papua New Guinea) -Added: 2009-07-29 -%% -Type: language -Subtag: mdd -Description: Mbum -Added: 2009-07-29 -%% -Type: language -Subtag: mde -Description: Maba (Chad) -Added: 2009-07-29 -%% -Type: language -Subtag: mdf -Description: Moksha -Added: 2005-10-16 -%% -Type: language -Subtag: mdg -Description: Massalat -Added: 2009-07-29 -%% -Type: language -Subtag: mdh -Description: Maguindanaon -Added: 2009-07-29 -%% -Type: language -Subtag: mdi -Description: Mamvu -Added: 2009-07-29 -%% -Type: language -Subtag: mdj -Description: Mangbetu -Added: 2009-07-29 -%% -Type: language -Subtag: mdk -Description: Mangbutu -Added: 2009-07-29 -%% -Type: language -Subtag: mdl -Description: Maltese Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: mdm -Description: Mayogo -Added: 2009-07-29 -%% -Type: language -Subtag: mdn -Description: Mbati -Added: 2009-07-29 -%% -Type: language -Subtag: mdp -Description: Mbala -Added: 2009-07-29 -%% -Type: language -Subtag: mdq -Description: Mbole -Added: 2009-07-29 -%% -Type: language -Subtag: mdr -Description: Mandar -Added: 2005-10-16 -%% -Type: language -Subtag: mds -Description: Maria (Papua New Guinea) -Added: 2009-07-29 -%% -Type: language -Subtag: mdt -Description: Mbere -Added: 2009-07-29 -%% -Type: language -Subtag: mdu -Description: Mboko -Added: 2009-07-29 -%% -Type: language -Subtag: mdv -Description: Santa Lucía Monteverde Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: mdw -Description: Mbosi -Added: 2009-07-29 -%% -Type: language -Subtag: mdx -Description: Dizin -Added: 2009-07-29 -%% -Type: language -Subtag: mdy -Description: Male -Description: Male (Ethiopia) -Added: 2009-07-29 -%% -Type: language -Subtag: mdz -Description: Suruí Do Pará -Added: 2009-07-29 -%% -Type: language -Subtag: mea -Description: Menka -Added: 2009-07-29 -%% -Type: language -Subtag: meb -Description: Ikobi -Added: 2009-07-29 -%% -Type: language -Subtag: mec -Description: Marra -Added: 2009-07-29 -%% -Type: language -Subtag: med -Description: Melpa -Added: 2009-07-29 -%% -Type: language -Subtag: mee -Description: Mengen -Added: 2009-07-29 -%% -Type: language -Subtag: mef -Description: Megam -Added: 2009-07-29 -%% -Type: language -Subtag: meg -Description: Mea -Added: 2009-07-29 -Deprecated: 2013-09-10 -Preferred-Value: cir -%% -Type: language -Subtag: meh -Description: Southwestern Tlaxiaco Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: mei -Description: Midob -Added: 2009-07-29 -%% -Type: language -Subtag: mej -Description: Meyah -Added: 2009-07-29 -%% -Type: language -Subtag: mek -Description: Mekeo -Added: 2009-07-29 -%% -Type: language -Subtag: mel -Description: Central Melanau -Added: 2009-07-29 -%% -Type: language -Subtag: mem -Description: Mangala -Added: 2009-07-29 -%% -Type: language -Subtag: men -Description: Mende (Sierra Leone) -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: meo -Description: Kedah Malay -Added: 2009-07-29 -Macrolanguage: ms -%% -Type: language -Subtag: mep -Description: Miriwoong -Added: 2009-07-29 -%% -Type: language -Subtag: meq -Description: Merey -Added: 2009-07-29 -%% -Type: language -Subtag: mer -Description: Meru -Added: 2009-07-29 -%% -Type: language -Subtag: mes -Description: Masmaje -Added: 2009-07-29 -%% -Type: language -Subtag: met -Description: Mato -Added: 2009-07-29 -%% -Type: language -Subtag: meu -Description: Motu -Added: 2009-07-29 -%% -Type: language -Subtag: mev -Description: Mano -Added: 2009-07-29 -%% -Type: language -Subtag: mew -Description: Maaka -Added: 2009-07-29 -%% -Type: language -Subtag: mey -Description: Hassaniyya -Added: 2009-07-29 -%% -Type: language -Subtag: mez -Description: Menominee -Added: 2009-07-29 -%% -Type: language -Subtag: mfa -Description: Pattani Malay -Added: 2009-07-29 -Macrolanguage: ms -%% -Type: language -Subtag: mfb -Description: Bangka -Added: 2009-07-29 -Macrolanguage: ms -%% -Type: language -Subtag: mfc -Description: Mba -Added: 2009-07-29 -%% -Type: language -Subtag: mfd -Description: Mendankwe-Nkwen -Added: 2009-07-29 -%% -Type: language -Subtag: mfe -Description: Morisyen -Added: 2009-07-29 -%% -Type: language -Subtag: mff -Description: Naki -Added: 2009-07-29 -%% -Type: language -Subtag: mfg -Description: Mogofin -Added: 2009-07-29 -%% -Type: language -Subtag: mfh -Description: Matal -Added: 2009-07-29 -%% -Type: language -Subtag: mfi -Description: Wandala -Added: 2009-07-29 -%% -Type: language -Subtag: mfj -Description: Mefele -Added: 2009-07-29 -%% -Type: language -Subtag: mfk -Description: North Mofu -Added: 2009-07-29 -%% -Type: language -Subtag: mfl -Description: Putai -Added: 2009-07-29 -%% -Type: language -Subtag: mfm -Description: Marghi South -Added: 2009-07-29 -%% -Type: language -Subtag: mfn -Description: Cross River Mbembe -Added: 2009-07-29 -%% -Type: language -Subtag: mfo -Description: Mbe -Added: 2009-07-29 -%% -Type: language -Subtag: mfp -Description: Makassar Malay -Added: 2009-07-29 -%% -Type: language -Subtag: mfq -Description: Moba -Added: 2009-07-29 -%% -Type: language -Subtag: mfr -Description: Marrithiyel -Added: 2009-07-29 -%% -Type: language -Subtag: mfs -Description: Mexican Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: mft -Description: Mokerang -Added: 2009-07-29 -%% -Type: language -Subtag: mfu -Description: Mbwela -Added: 2009-07-29 -%% -Type: language -Subtag: mfv -Description: Mandjak -Added: 2009-07-29 -%% -Type: language -Subtag: mfw -Description: Mulaha -Added: 2009-07-29 -%% -Type: language -Subtag: mfx -Description: Melo -Added: 2009-07-29 -%% -Type: language -Subtag: mfy -Description: Mayo -Added: 2009-07-29 -%% -Type: language -Subtag: mfz -Description: Mabaan -Added: 2009-07-29 -%% -Type: language -Subtag: mga -Description: Middle Irish (900-1200) -Added: 2005-10-16 -%% -Type: language -Subtag: mgb -Description: Mararit -Added: 2009-07-29 -%% -Type: language -Subtag: mgc -Description: Morokodo -Added: 2009-07-29 -%% -Type: language -Subtag: mgd -Description: Moru -Added: 2009-07-29 -%% -Type: language -Subtag: mge -Description: Mango -Added: 2009-07-29 -%% -Type: language -Subtag: mgf -Description: Maklew -Added: 2009-07-29 -%% -Type: language -Subtag: mgg -Description: Mpumpong -Added: 2009-07-29 -%% -Type: language -Subtag: mgh -Description: Makhuwa-Meetto -Added: 2009-07-29 -%% -Type: language -Subtag: mgi -Description: Lijili -Added: 2009-07-29 -%% -Type: language -Subtag: mgj -Description: Abureni -Added: 2009-07-29 -%% -Type: language -Subtag: mgk -Description: Mawes -Added: 2009-07-29 -%% -Type: language -Subtag: mgl -Description: Maleu-Kilenge -Added: 2009-07-29 -%% -Type: language -Subtag: mgm -Description: Mambae -Added: 2009-07-29 -%% -Type: language -Subtag: mgn -Description: Mbangi -Added: 2009-07-29 -%% -Type: language -Subtag: mgo -Description: Meta' -Added: 2009-07-29 -%% -Type: language -Subtag: mgp -Description: Eastern Magar -Added: 2009-07-29 -%% -Type: language -Subtag: mgq -Description: Malila -Added: 2009-07-29 -%% -Type: language -Subtag: mgr -Description: Mambwe-Lungu -Added: 2009-07-29 -%% -Type: language -Subtag: mgs -Description: Manda (Tanzania) -Added: 2009-07-29 -%% -Type: language -Subtag: mgt -Description: Mongol -Added: 2009-07-29 -%% -Type: language -Subtag: mgu -Description: Mailu -Added: 2009-07-29 -%% -Type: language -Subtag: mgv -Description: Matengo -Added: 2009-07-29 -%% -Type: language -Subtag: mgw -Description: Matumbi -Added: 2009-07-29 -%% -Type: language -Subtag: mgx -Description: Omati -Added: 2009-07-29 -Deprecated: 2012-08-12 -Comments: see jbk, jmw -%% -Type: language -Subtag: mgy -Description: Mbunga -Added: 2009-07-29 -%% -Type: language -Subtag: mgz -Description: Mbugwe -Added: 2009-07-29 -%% -Type: language -Subtag: mha -Description: Manda (India) -Added: 2009-07-29 -%% -Type: language -Subtag: mhb -Description: Mahongwe -Added: 2009-07-29 -%% -Type: language -Subtag: mhc -Description: Mocho -Added: 2009-07-29 -%% -Type: language -Subtag: mhd -Description: Mbugu -Added: 2009-07-29 -%% -Type: language -Subtag: mhe -Description: Besisi -Description: Mah Meri -Added: 2009-07-29 -%% -Type: language -Subtag: mhf -Description: Mamaa -Added: 2009-07-29 -%% -Type: language -Subtag: mhg -Description: Margu -Added: 2009-07-29 -%% -Type: language -Subtag: mhh -Description: Maskoy Pidgin -Added: 2009-07-29 -Deprecated: 2014-02-28 -%% -Type: language -Subtag: mhi -Description: Ma'di -Added: 2009-07-29 -%% -Type: language -Subtag: mhj -Description: Mogholi -Added: 2009-07-29 -%% -Type: language -Subtag: mhk -Description: Mungaka -Added: 2009-07-29 -%% -Type: language -Subtag: mhl -Description: Mauwake -Added: 2009-07-29 -%% -Type: language -Subtag: mhm -Description: Makhuwa-Moniga -Added: 2009-07-29 -%% -Type: language -Subtag: mhn -Description: Mòcheno -Added: 2009-07-29 -%% -Type: language -Subtag: mho -Description: Mashi (Zambia) -Added: 2009-07-29 -%% -Type: language -Subtag: mhp -Description: Balinese Malay -Added: 2009-07-29 -%% -Type: language -Subtag: mhq -Description: Mandan -Added: 2009-07-29 -%% -Type: language -Subtag: mhr -Description: Eastern Mari -Added: 2009-07-29 -Macrolanguage: chm -%% -Type: language -Subtag: mhs -Description: Buru (Indonesia) -Added: 2009-07-29 -%% -Type: language -Subtag: mht -Description: Mandahuaca -Added: 2009-07-29 -%% -Type: language -Subtag: mhu -Description: Digaro-Mishmi -Description: Darang Deng -Added: 2009-07-29 -%% -Type: language -Subtag: mhw -Description: Mbukushu -Added: 2009-07-29 -%% -Type: language -Subtag: mhx -Description: Maru -Description: Lhaovo -Added: 2009-07-29 -%% -Type: language -Subtag: mhy -Description: Ma'anyan -Added: 2009-07-29 -%% -Type: language -Subtag: mhz -Description: Mor (Mor Islands) -Added: 2009-07-29 -%% -Type: language -Subtag: mia -Description: Miami -Added: 2009-07-29 -%% -Type: language -Subtag: mib -Description: Atatláhuca Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: mic -Description: Mi'kmaq -Description: Micmac -Added: 2005-10-16 -%% -Type: language -Subtag: mid -Description: Mandaic -Added: 2009-07-29 -%% -Type: language -Subtag: mie -Description: Ocotepec Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: mif -Description: Mofu-Gudur -Added: 2009-07-29 -%% -Type: language -Subtag: mig -Description: San Miguel El Grande Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: mih -Description: Chayuco Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: mii -Description: Chigmecatitlán Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: mij -Description: Abar -Description: Mungbam -Added: 2009-07-29 -%% -Type: language -Subtag: mik -Description: Mikasuki -Added: 2009-07-29 -%% -Type: language -Subtag: mil -Description: Peñoles Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: mim -Description: Alacatlatzala Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: min -Description: Minangkabau -Added: 2005-10-16 -Macrolanguage: ms -%% -Type: language -Subtag: mio -Description: Pinotepa Nacional Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: mip -Description: Apasco-Apoala Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: miq -Description: Mískito -Added: 2009-07-29 -%% -Type: language -Subtag: mir -Description: Isthmus Mixe -Added: 2009-07-29 -%% -Type: language -Subtag: mis -Description: Uncoded languages -Added: 2005-10-16 -Scope: special -%% -Type: language -Subtag: mit -Description: Southern Puebla Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: miu -Description: Cacaloxtepec Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: miw -Description: Akoye -Added: 2009-07-29 -%% -Type: language -Subtag: mix -Description: Mixtepec Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: miy -Description: Ayutla Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: miz -Description: Coatzospan Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: mja -Description: Mahei -Added: 2009-07-29 -Deprecated: 2011-08-16 -%% -Type: language -Subtag: mjb -Description: Makalero -Added: 2016-05-30 -%% -Type: language -Subtag: mjc -Description: San Juan Colorado Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: mjd -Description: Northwest Maidu -Added: 2009-07-29 -%% -Type: language -Subtag: mje -Description: Muskum -Added: 2009-07-29 -%% -Type: language -Subtag: mjg -Description: Tu -Added: 2009-07-29 -%% -Type: language -Subtag: mjh -Description: Mwera (Nyasa) -Added: 2009-07-29 -%% -Type: language -Subtag: mji -Description: Kim Mun -Added: 2009-07-29 -%% -Type: language -Subtag: mjj -Description: Mawak -Added: 2009-07-29 -%% -Type: language -Subtag: mjk -Description: Matukar -Added: 2009-07-29 -%% -Type: language -Subtag: mjl -Description: Mandeali -Added: 2009-07-29 -%% -Type: language -Subtag: mjm -Description: Medebur -Added: 2009-07-29 -%% -Type: language -Subtag: mjn -Description: Ma (Papua New Guinea) -Added: 2009-07-29 -%% -Type: language -Subtag: mjo -Description: Malankuravan -Added: 2009-07-29 -%% -Type: language -Subtag: mjp -Description: Malapandaram -Added: 2009-07-29 -%% -Type: language -Subtag: mjq -Description: Malaryan -Added: 2009-07-29 -%% -Type: language -Subtag: mjr -Description: Malavedan -Added: 2009-07-29 -%% -Type: language -Subtag: mjs -Description: Miship -Added: 2009-07-29 -%% -Type: language -Subtag: mjt -Description: Sauria Paharia -Added: 2009-07-29 -%% -Type: language -Subtag: mju -Description: Manna-Dora -Added: 2009-07-29 -%% -Type: language -Subtag: mjv -Description: Mannan -Added: 2009-07-29 -%% -Type: language -Subtag: mjw -Description: Karbi -Added: 2009-07-29 -%% -Type: language -Subtag: mjx -Description: Mahali -Added: 2009-07-29 -%% -Type: language -Subtag: mjy -Description: Mahican -Added: 2009-07-29 -%% -Type: language -Subtag: mjz -Description: Majhi -Added: 2009-07-29 -%% -Type: language -Subtag: mka -Description: Mbre -Added: 2009-07-29 -%% -Type: language -Subtag: mkb -Description: Mal Paharia -Added: 2009-07-29 -%% -Type: language -Subtag: mkc -Description: Siliput -Added: 2009-07-29 -%% -Type: language -Subtag: mke -Description: Mawchi -Added: 2009-07-29 -%% -Type: language -Subtag: mkf -Description: Miya -Added: 2009-07-29 -%% -Type: language -Subtag: mkg -Description: Mak (China) -Added: 2009-07-29 -%% -Type: language -Subtag: mkh -Description: Mon-Khmer languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: mki -Description: Dhatki -Added: 2009-07-29 -%% -Type: language -Subtag: mkj -Description: Mokilese -Added: 2009-07-29 -%% -Type: language -Subtag: mkk -Description: Byep -Added: 2009-07-29 -%% -Type: language -Subtag: mkl -Description: Mokole -Added: 2009-07-29 -%% -Type: language -Subtag: mkm -Description: Moklen -Added: 2009-07-29 -%% -Type: language -Subtag: mkn -Description: Kupang Malay -Added: 2009-07-29 -%% -Type: language -Subtag: mko -Description: Mingang Doso -Added: 2009-07-29 -%% -Type: language -Subtag: mkp -Description: Moikodi -Added: 2009-07-29 -%% -Type: language -Subtag: mkq -Description: Bay Miwok -Added: 2009-07-29 -%% -Type: language -Subtag: mkr -Description: Malas -Added: 2009-07-29 -%% -Type: language -Subtag: mks -Description: Silacayoapan Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: mkt -Description: Vamale -Added: 2009-07-29 -%% -Type: language -Subtag: mku -Description: Konyanka Maninka -Added: 2009-07-29 -Macrolanguage: man -%% -Type: language -Subtag: mkv -Description: Mafea -Added: 2009-07-29 -%% -Type: language -Subtag: mkw -Description: Kituba (Congo) -Added: 2009-07-29 -%% -Type: language -Subtag: mkx -Description: Kinamiging Manobo -Added: 2009-07-29 -%% -Type: language -Subtag: mky -Description: East Makian -Added: 2009-07-29 -%% -Type: language -Subtag: mkz -Description: Makasae -Added: 2009-07-29 -%% -Type: language -Subtag: mla -Description: Malo -Added: 2009-07-29 -%% -Type: language -Subtag: mlb -Description: Mbule -Added: 2009-07-29 -%% -Type: language -Subtag: mlc -Description: Cao Lan -Added: 2009-07-29 -%% -Type: language -Subtag: mld -Description: Malakhel -Added: 2009-07-29 -Deprecated: 2013-09-10 -%% -Type: language -Subtag: mle -Description: Manambu -Added: 2009-07-29 -%% -Type: language -Subtag: mlf -Description: Mal -Added: 2009-07-29 -%% -Type: language -Subtag: mlh -Description: Mape -Added: 2009-07-29 -%% -Type: language -Subtag: mli -Description: Malimpung -Added: 2009-07-29 -%% -Type: language -Subtag: mlj -Description: Miltu -Added: 2009-07-29 -%% -Type: language -Subtag: mlk -Description: Ilwana -Description: Kiwilwana -Added: 2009-07-29 -%% -Type: language -Subtag: mll -Description: Malua Bay -Added: 2009-07-29 -%% -Type: language -Subtag: mlm -Description: Mulam -Added: 2009-07-29 -%% -Type: language -Subtag: mln -Description: Malango -Added: 2009-07-29 -%% -Type: language -Subtag: mlo -Description: Mlomp -Added: 2009-07-29 -%% -Type: language -Subtag: mlp -Description: Bargam -Added: 2009-07-29 -%% -Type: language -Subtag: mlq -Description: Western Maninkakan -Added: 2009-07-29 -Macrolanguage: man -%% -Type: language -Subtag: mlr -Description: Vame -Added: 2009-07-29 -%% -Type: language -Subtag: mls -Description: Masalit -Added: 2009-07-29 -%% -Type: language -Subtag: mlu -Description: To'abaita -Added: 2009-07-29 -%% -Type: language -Subtag: mlv -Description: Motlav -Description: Mwotlap -Added: 2009-07-29 -%% -Type: language -Subtag: mlw -Description: Moloko -Added: 2009-07-29 -%% -Type: language -Subtag: mlx -Description: Malfaxal -Description: Naha'ai -Added: 2009-07-29 -%% -Type: language -Subtag: mlz -Description: Malaynon -Added: 2009-07-29 -%% -Type: language -Subtag: mma -Description: Mama -Added: 2009-07-29 -%% -Type: language -Subtag: mmb -Description: Momina -Added: 2009-07-29 -%% -Type: language -Subtag: mmc -Description: Michoacán Mazahua -Added: 2009-07-29 -%% -Type: language -Subtag: mmd -Description: Maonan -Added: 2009-07-29 -%% -Type: language -Subtag: mme -Description: Mae -Added: 2009-07-29 -%% -Type: language -Subtag: mmf -Description: Mundat -Added: 2009-07-29 -%% -Type: language -Subtag: mmg -Description: North Ambrym -Added: 2009-07-29 -%% -Type: language -Subtag: mmh -Description: Mehináku -Added: 2009-07-29 -%% -Type: language -Subtag: mmi -Description: Hember Avu -Description: Amben -Description: Musar -Added: 2009-07-29 -%% -Type: language -Subtag: mmj -Description: Majhwar -Added: 2009-07-29 -%% -Type: language -Subtag: mmk -Description: Mukha-Dora -Added: 2009-07-29 -%% -Type: language -Subtag: mml -Description: Man Met -Added: 2009-07-29 -%% -Type: language -Subtag: mmm -Description: Maii -Added: 2009-07-29 -%% -Type: language -Subtag: mmn -Description: Mamanwa -Added: 2009-07-29 -%% -Type: language -Subtag: mmo -Description: Mangga Buang -Added: 2009-07-29 -%% -Type: language -Subtag: mmp -Description: Siawi -Added: 2009-07-29 -%% -Type: language -Subtag: mmq -Description: Musak -Added: 2009-07-29 -%% -Type: language -Subtag: mmr -Description: Western Xiangxi Miao -Added: 2009-07-29 -Macrolanguage: hmn -%% -Type: language -Subtag: mmt -Description: Malalamai -Added: 2009-07-29 -%% -Type: language -Subtag: mmu -Description: Mmaala -Added: 2009-07-29 -%% -Type: language -Subtag: mmv -Description: Miriti -Added: 2009-07-29 -%% -Type: language -Subtag: mmw -Description: Emae -Added: 2009-07-29 -%% -Type: language -Subtag: mmx -Description: Madak -Added: 2009-07-29 -%% -Type: language -Subtag: mmy -Description: Migaama -Added: 2009-07-29 -%% -Type: language -Subtag: mmz -Description: Mabaale -Added: 2009-07-29 -%% -Type: language -Subtag: mna -Description: Mbula -Added: 2009-07-29 -%% -Type: language -Subtag: mnb -Description: Muna -Added: 2009-07-29 -%% -Type: language -Subtag: mnc -Description: Manchu -Added: 2005-10-16 -%% -Type: language -Subtag: mnd -Description: Mondé -Added: 2009-07-29 -%% -Type: language -Subtag: mne -Description: Naba -Added: 2009-07-29 -%% -Type: language -Subtag: mnf -Description: Mundani -Added: 2009-07-29 -%% -Type: language -Subtag: mng -Description: Eastern Mnong -Added: 2009-07-29 -%% -Type: language -Subtag: mnh -Description: Mono (Democratic Republic of Congo) -Added: 2009-07-29 -%% -Type: language -Subtag: mni -Description: Manipuri -Added: 2005-10-16 -%% -Type: language -Subtag: mnj -Description: Munji -Added: 2009-07-29 -%% -Type: language -Subtag: mnk -Description: Mandinka -Added: 2009-07-29 -Macrolanguage: man -%% -Type: language -Subtag: mnl -Description: Tiale -Added: 2009-07-29 -%% -Type: language -Subtag: mnm -Description: Mapena -Added: 2009-07-29 -%% -Type: language -Subtag: mnn -Description: Southern Mnong -Added: 2009-07-29 -%% -Type: language -Subtag: mno -Description: Manobo languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: mnp -Description: Min Bei Chinese -Added: 2009-07-29 -Macrolanguage: zh -%% -Type: language -Subtag: mnq -Description: Minriq -Added: 2009-07-29 -%% -Type: language -Subtag: mnr -Description: Mono (USA) -Added: 2009-07-29 -%% -Type: language -Subtag: mns -Description: Mansi -Added: 2009-07-29 -%% -Type: language -Subtag: mnt -Description: Maykulan -Added: 2009-07-29 -Deprecated: 2013-09-10 -Comments: see wnn, xyj, xyk, xyt -%% -Type: language -Subtag: mnu -Description: Mer -Added: 2009-07-29 -%% -Type: language -Subtag: mnv -Description: Rennell-Bellona -Added: 2009-07-29 -%% -Type: language -Subtag: mnw -Description: Mon -Added: 2009-07-29 -%% -Type: language -Subtag: mnx -Description: Manikion -Added: 2009-07-29 -%% -Type: language -Subtag: mny -Description: Manyawa -Added: 2009-07-29 -%% -Type: language -Subtag: mnz -Description: Moni -Added: 2009-07-29 -%% -Type: language -Subtag: moa -Description: Mwan -Added: 2009-07-29 -%% -Type: language -Subtag: moc -Description: Mocoví -Added: 2009-07-29 -%% -Type: language -Subtag: mod -Description: Mobilian -Added: 2009-07-29 -%% -Type: language -Subtag: moe -Description: Innu -Description: Montagnais -Added: 2009-07-29 -%% -Type: language -Subtag: mof -Description: Mohegan-Montauk-Narragansett -Added: 2009-07-29 -Deprecated: 2010-03-11 -Comments: see xnt, xpq -%% -Type: language -Subtag: mog -Description: Mongondow -Added: 2009-07-29 -%% -Type: language -Subtag: moh -Description: Mohawk -Description: Kanien'kéha -Added: 2005-10-16 -%% -Type: language -Subtag: moi -Description: Mboi -Added: 2009-07-29 -%% -Type: language -Subtag: moj -Description: Monzombo -Added: 2009-07-29 -%% -Type: language -Subtag: mok -Description: Morori -Added: 2009-07-29 -%% -Type: language -Subtag: mom -Description: Mangue -Added: 2009-07-29 -%% -Type: language -Subtag: moo -Description: Monom -Added: 2009-07-29 -%% -Type: language -Subtag: mop -Description: Mopán Maya -Added: 2009-07-29 -%% -Type: language -Subtag: moq -Description: Mor (Bomberai Peninsula) -Added: 2009-07-29 -%% -Type: language -Subtag: mor -Description: Moro -Added: 2009-07-29 -%% -Type: language -Subtag: mos -Description: Mossi -Added: 2005-10-16 -%% -Type: language -Subtag: mot -Description: Barí -Added: 2009-07-29 -%% -Type: language -Subtag: mou -Description: Mogum -Added: 2009-07-29 -%% -Type: language -Subtag: mov -Description: Mohave -Added: 2009-07-29 -%% -Type: language -Subtag: mow -Description: Moi (Congo) -Added: 2009-07-29 -%% -Type: language -Subtag: mox -Description: Molima -Added: 2009-07-29 -%% -Type: language -Subtag: moy -Description: Shekkacho -Added: 2009-07-29 -%% -Type: language -Subtag: moz -Description: Mukulu -Description: Gergiko -Added: 2009-07-29 -%% -Type: language -Subtag: mpa -Description: Mpoto -Added: 2009-07-29 -%% -Type: language -Subtag: mpb -Description: Malak Malak -Description: Mullukmulluk -Added: 2009-07-29 -%% -Type: language -Subtag: mpc -Description: Mangarrayi -Added: 2009-07-29 -%% -Type: language -Subtag: mpd -Description: Machinere -Added: 2009-07-29 -%% -Type: language -Subtag: mpe -Description: Majang -Added: 2009-07-29 -%% -Type: language -Subtag: mpg -Description: Marba -Added: 2009-07-29 -%% -Type: language -Subtag: mph -Description: Maung -Added: 2009-07-29 -%% -Type: language -Subtag: mpi -Description: Mpade -Added: 2009-07-29 -%% -Type: language -Subtag: mpj -Description: Martu Wangka -Description: Wangkajunga -Added: 2009-07-29 -%% -Type: language -Subtag: mpk -Description: Mbara (Chad) -Added: 2009-07-29 -%% -Type: language -Subtag: mpl -Description: Middle Watut -Added: 2009-07-29 -%% -Type: language -Subtag: mpm -Description: Yosondúa Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: mpn -Description: Mindiri -Added: 2009-07-29 -%% -Type: language -Subtag: mpo -Description: Miu -Added: 2009-07-29 -%% -Type: language -Subtag: mpp -Description: Migabac -Added: 2009-07-29 -%% -Type: language -Subtag: mpq -Description: Matís -Added: 2009-07-29 -%% -Type: language -Subtag: mpr -Description: Vangunu -Added: 2009-07-29 -%% -Type: language -Subtag: mps -Description: Dadibi -Added: 2009-07-29 -%% -Type: language -Subtag: mpt -Description: Mian -Added: 2009-07-29 -%% -Type: language -Subtag: mpu -Description: Makuráp -Added: 2009-07-29 -%% -Type: language -Subtag: mpv -Description: Mungkip -Added: 2009-07-29 -%% -Type: language -Subtag: mpw -Description: Mapidian -Added: 2009-07-29 -%% -Type: language -Subtag: mpx -Description: Misima-Panaeati -Added: 2009-07-29 -%% -Type: language -Subtag: mpy -Description: Mapia -Added: 2009-07-29 -%% -Type: language -Subtag: mpz -Description: Mpi -Added: 2009-07-29 -%% -Type: language -Subtag: mqa -Description: Maba (Indonesia) -Added: 2009-07-29 -%% -Type: language -Subtag: mqb -Description: Mbuko -Added: 2009-07-29 -%% -Type: language -Subtag: mqc -Description: Mangole -Added: 2009-07-29 -%% -Type: language -Subtag: mqe -Description: Matepi -Added: 2009-07-29 -%% -Type: language -Subtag: mqf -Description: Momuna -Added: 2009-07-29 -%% -Type: language -Subtag: mqg -Description: Kota Bangun Kutai Malay -Added: 2009-07-29 -Macrolanguage: ms -%% -Type: language -Subtag: mqh -Description: Tlazoyaltepec Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: mqi -Description: Mariri -Added: 2009-07-29 -%% -Type: language -Subtag: mqj -Description: Mamasa -Added: 2009-07-29 -%% -Type: language -Subtag: mqk -Description: Rajah Kabunsuwan Manobo -Added: 2009-07-29 -%% -Type: language -Subtag: mql -Description: Mbelime -Added: 2009-07-29 -%% -Type: language -Subtag: mqm -Description: South Marquesan -Added: 2009-07-29 -%% -Type: language -Subtag: mqn -Description: Moronene -Added: 2009-07-29 -%% -Type: language -Subtag: mqo -Description: Modole -Added: 2009-07-29 -%% -Type: language -Subtag: mqp -Description: Manipa -Added: 2009-07-29 -%% -Type: language -Subtag: mqq -Description: Minokok -Added: 2009-07-29 -%% -Type: language -Subtag: mqr -Description: Mander -Added: 2009-07-29 -%% -Type: language -Subtag: mqs -Description: West Makian -Added: 2009-07-29 -%% -Type: language -Subtag: mqt -Description: Mok -Added: 2009-07-29 -%% -Type: language -Subtag: mqu -Description: Mandari -Added: 2009-07-29 -%% -Type: language -Subtag: mqv -Description: Mosimo -Added: 2009-07-29 -%% -Type: language -Subtag: mqw -Description: Murupi -Added: 2009-07-29 -%% -Type: language -Subtag: mqx -Description: Mamuju -Added: 2009-07-29 -%% -Type: language -Subtag: mqy -Description: Manggarai -Added: 2009-07-29 -%% -Type: language -Subtag: mqz -Description: Pano -Added: 2009-07-29 -%% -Type: language -Subtag: mra -Description: Mlabri -Added: 2009-07-29 -%% -Type: language -Subtag: mrb -Description: Marino -Added: 2009-07-29 -%% -Type: language -Subtag: mrc -Description: Maricopa -Added: 2009-07-29 -%% -Type: language -Subtag: mrd -Description: Western Magar -Added: 2009-07-29 -%% -Type: language -Subtag: mre -Description: Martha's Vineyard Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: mrf -Description: Elseng -Added: 2009-07-29 -%% -Type: language -Subtag: mrg -Description: Mising -Added: 2009-07-29 -%% -Type: language -Subtag: mrh -Description: Mara Chin -Added: 2009-07-29 -%% -Type: language -Subtag: mrj -Description: Western Mari -Added: 2009-07-29 -Macrolanguage: chm -%% -Type: language -Subtag: mrk -Description: Hmwaveke -Added: 2009-07-29 -%% -Type: language -Subtag: mrl -Description: Mortlockese -Added: 2009-07-29 -%% -Type: language -Subtag: mrm -Description: Merlav -Description: Mwerlap -Added: 2009-07-29 -%% -Type: language -Subtag: mrn -Description: Cheke Holo -Added: 2009-07-29 -%% -Type: language -Subtag: mro -Description: Mru -Added: 2009-07-29 -%% -Type: language -Subtag: mrp -Description: Morouas -Added: 2009-07-29 -%% -Type: language -Subtag: mrq -Description: North Marquesan -Added: 2009-07-29 -%% -Type: language -Subtag: mrr -Description: Maria (India) -Added: 2009-07-29 -%% -Type: language -Subtag: mrs -Description: Maragus -Added: 2009-07-29 -%% -Type: language -Subtag: mrt -Description: Marghi Central -Added: 2009-07-29 -%% -Type: language -Subtag: mru -Description: Mono (Cameroon) -Added: 2009-07-29 -%% -Type: language -Subtag: mrv -Description: Mangareva -Added: 2009-07-29 -%% -Type: language -Subtag: mrw -Description: Maranao -Added: 2009-07-29 -%% -Type: language -Subtag: mrx -Description: Maremgi -Description: Dineor -Added: 2009-07-29 -%% -Type: language -Subtag: mry -Description: Mandaya -Added: 2009-07-29 -%% -Type: language -Subtag: mrz -Description: Marind -Added: 2009-07-29 -%% -Type: language -Subtag: msb -Description: Masbatenyo -Added: 2009-07-29 -%% -Type: language -Subtag: msc -Description: Sankaran Maninka -Added: 2009-07-29 -Macrolanguage: man -%% -Type: language -Subtag: msd -Description: Yucatec Maya Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: mse -Description: Musey -Added: 2009-07-29 -%% -Type: language -Subtag: msf -Description: Mekwei -Added: 2009-07-29 -%% -Type: language -Subtag: msg -Description: Moraid -Added: 2009-07-29 -%% -Type: language -Subtag: msh -Description: Masikoro Malagasy -Added: 2009-07-29 -Macrolanguage: mg -%% -Type: language -Subtag: msi -Description: Sabah Malay -Added: 2009-07-29 -Macrolanguage: ms -%% -Type: language -Subtag: msj -Description: Ma (Democratic Republic of Congo) -Added: 2009-07-29 -%% -Type: language -Subtag: msk -Description: Mansaka -Added: 2009-07-29 -%% -Type: language -Subtag: msl -Description: Molof -Description: Poule -Added: 2009-07-29 -%% -Type: language -Subtag: msm -Description: Agusan Manobo -Added: 2009-07-29 -%% -Type: language -Subtag: msn -Description: Vurës -Added: 2009-07-29 -%% -Type: language -Subtag: mso -Description: Mombum -Added: 2009-07-29 -%% -Type: language -Subtag: msp -Description: Maritsauá -Added: 2009-07-29 -%% -Type: language -Subtag: msq -Description: Caac -Added: 2009-07-29 -%% -Type: language -Subtag: msr -Description: Mongolian Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: mss -Description: West Masela -Added: 2009-07-29 -%% -Type: language -Subtag: mst -Description: Cataelano Mandaya -Added: 2009-07-29 -Deprecated: 2010-03-11 -Preferred-Value: mry -%% -Type: language -Subtag: msu -Description: Musom -Added: 2009-07-29 -%% -Type: language -Subtag: msv -Description: Maslam -Added: 2009-07-29 -%% -Type: language -Subtag: msw -Description: Mansoanka -Added: 2009-07-29 -%% -Type: language -Subtag: msx -Description: Moresada -Added: 2009-07-29 -%% -Type: language -Subtag: msy -Description: Aruamu -Added: 2009-07-29 -%% -Type: language -Subtag: msz -Description: Momare -Added: 2009-07-29 -%% -Type: language -Subtag: mta -Description: Cotabato Manobo -Added: 2009-07-29 -%% -Type: language -Subtag: mtb -Description: Anyin Morofo -Added: 2009-07-29 -%% -Type: language -Subtag: mtc -Description: Munit -Added: 2009-07-29 -%% -Type: language -Subtag: mtd -Description: Mualang -Added: 2009-07-29 -%% -Type: language -Subtag: mte -Description: Mono (Solomon Islands) -Added: 2009-07-29 -%% -Type: language -Subtag: mtf -Description: Murik (Papua New Guinea) -Added: 2009-07-29 -%% -Type: language -Subtag: mtg -Description: Una -Added: 2009-07-29 -%% -Type: language -Subtag: mth -Description: Munggui -Added: 2009-07-29 -%% -Type: language -Subtag: mti -Description: Maiwa (Papua New Guinea) -Added: 2009-07-29 -%% -Type: language -Subtag: mtj -Description: Moskona -Added: 2009-07-29 -%% -Type: language -Subtag: mtk -Description: Mbe' -Added: 2009-07-29 -%% -Type: language -Subtag: mtl -Description: Montol -Added: 2009-07-29 -%% -Type: language -Subtag: mtm -Description: Mator -Added: 2009-07-29 -%% -Type: language -Subtag: mtn -Description: Matagalpa -Added: 2009-07-29 -%% -Type: language -Subtag: mto -Description: Totontepec Mixe -Added: 2009-07-29 -%% -Type: language -Subtag: mtp -Description: Wichí Lhamtés Nocten -Added: 2009-07-29 -%% -Type: language -Subtag: mtq -Description: Muong -Added: 2009-07-29 -%% -Type: language -Subtag: mtr -Description: Mewari -Added: 2009-07-29 -Macrolanguage: mwr -%% -Type: language -Subtag: mts -Description: Yora -Added: 2009-07-29 -%% -Type: language -Subtag: mtt -Description: Mota -Added: 2009-07-29 -%% -Type: language -Subtag: mtu -Description: Tututepec Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: mtv -Description: Asaro'o -Added: 2009-07-29 -%% -Type: language -Subtag: mtw -Description: Southern Binukidnon -Added: 2009-07-29 -%% -Type: language -Subtag: mtx -Description: Tidaá Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: mty -Description: Nabi -Added: 2009-07-29 -%% -Type: language -Subtag: mua -Description: Mundang -Added: 2009-07-29 -%% -Type: language -Subtag: mub -Description: Mubi -Added: 2009-07-29 -%% -Type: language -Subtag: muc -Description: Ajumbu -Added: 2009-07-29 -%% -Type: language -Subtag: mud -Description: Mednyj Aleut -Added: 2009-07-29 -%% -Type: language -Subtag: mue -Description: Media Lengua -Added: 2009-07-29 -%% -Type: language -Subtag: mug -Description: Musgu -Added: 2009-07-29 -%% -Type: language -Subtag: muh -Description: Mündü -Added: 2009-07-29 -%% -Type: language -Subtag: mui -Description: Musi -Added: 2009-07-29 -Macrolanguage: ms -%% -Type: language -Subtag: muj -Description: Mabire -Added: 2009-07-29 -%% -Type: language -Subtag: muk -Description: Mugom -Added: 2009-07-29 -%% -Type: language -Subtag: mul -Description: Multiple languages -Added: 2005-10-16 -Scope: special -%% -Type: language -Subtag: mum -Description: Maiwala -Added: 2009-07-29 -%% -Type: language -Subtag: mun -Description: Munda languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: muo -Description: Nyong -Added: 2009-07-29 -%% -Type: language -Subtag: mup -Description: Malvi -Added: 2009-07-29 -Macrolanguage: raj -%% -Type: language -Subtag: muq -Description: Eastern Xiangxi Miao -Added: 2009-07-29 -Macrolanguage: hmn -%% -Type: language -Subtag: mur -Description: Murle -Added: 2009-07-29 -%% -Type: language -Subtag: mus -Description: Creek -Added: 2005-10-16 -%% -Type: language -Subtag: mut -Description: Western Muria -Added: 2009-07-29 -%% -Type: language -Subtag: muu -Description: Yaaku -Added: 2009-07-29 -%% -Type: language -Subtag: muv -Description: Muthuvan -Added: 2009-07-29 -%% -Type: language -Subtag: mux -Description: Bo-Ung -Added: 2009-07-29 -%% -Type: language -Subtag: muy -Description: Muyang -Added: 2009-07-29 -%% -Type: language -Subtag: muz -Description: Mursi -Added: 2009-07-29 -%% -Type: language -Subtag: mva -Description: Manam -Added: 2009-07-29 -%% -Type: language -Subtag: mvb -Description: Mattole -Added: 2009-07-29 -%% -Type: language -Subtag: mvd -Description: Mamboru -Added: 2009-07-29 -%% -Type: language -Subtag: mve -Description: Marwari (Pakistan) -Added: 2009-07-29 -Macrolanguage: mwr -%% -Type: language -Subtag: mvf -Description: Peripheral Mongolian -Added: 2009-07-29 -Macrolanguage: mn -%% -Type: language -Subtag: mvg -Description: Yucuañe Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: mvh -Description: Mulgi -Added: 2009-07-29 -%% -Type: language -Subtag: mvi -Description: Miyako -Added: 2009-07-29 -%% -Type: language -Subtag: mvk -Description: Mekmek -Added: 2009-07-29 -%% -Type: language -Subtag: mvl -Description: Mbara (Australia) -Added: 2009-07-29 -%% -Type: language -Subtag: mvm -Description: Muya -Added: 2009-07-29 -Deprecated: 2021-02-20 -Comments: see emq, wmg -%% -Type: language -Subtag: mvn -Description: Minaveha -Added: 2009-07-29 -%% -Type: language -Subtag: mvo -Description: Marovo -Added: 2009-07-29 -%% -Type: language -Subtag: mvp -Description: Duri -Added: 2009-07-29 -%% -Type: language -Subtag: mvq -Description: Moere -Added: 2009-07-29 -%% -Type: language -Subtag: mvr -Description: Marau -Added: 2009-07-29 -%% -Type: language -Subtag: mvs -Description: Massep -Added: 2009-07-29 -%% -Type: language -Subtag: mvt -Description: Mpotovoro -Added: 2009-07-29 -%% -Type: language -Subtag: mvu -Description: Marfa -Added: 2009-07-29 -%% -Type: language -Subtag: mvv -Description: Tagal Murut -Added: 2009-07-29 -%% -Type: language -Subtag: mvw -Description: Machinga -Added: 2009-07-29 -%% -Type: language -Subtag: mvx -Description: Meoswar -Added: 2009-07-29 -%% -Type: language -Subtag: mvy -Description: Indus Kohistani -Added: 2009-07-29 -%% -Type: language -Subtag: mvz -Description: Mesqan -Added: 2009-07-29 -%% -Type: language -Subtag: mwa -Description: Mwatebu -Added: 2009-07-29 -%% -Type: language -Subtag: mwb -Description: Juwal -Added: 2009-07-29 -%% -Type: language -Subtag: mwc -Description: Are -Added: 2009-07-29 -%% -Type: language -Subtag: mwd -Description: Mudbura -Added: 2009-07-29 -Deprecated: 2013-09-10 -Comments: see dmw, xrq -%% -Type: language -Subtag: mwe -Description: Mwera (Chimwera) -Added: 2009-07-29 -%% -Type: language -Subtag: mwf -Description: Murrinh-Patha -Added: 2009-07-29 -%% -Type: language -Subtag: mwg -Description: Aiklep -Added: 2009-07-29 -%% -Type: language -Subtag: mwh -Description: Mouk-Aria -Added: 2009-07-29 -%% -Type: language -Subtag: mwi -Description: Labo -Description: Ninde -Added: 2009-07-29 -%% -Type: language -Subtag: mwj -Description: Maligo -Added: 2009-07-29 -Deprecated: 2015-02-12 -Preferred-Value: vaj -%% -Type: language -Subtag: mwk -Description: Kita Maninkakan -Added: 2009-07-29 -Macrolanguage: man -%% -Type: language -Subtag: mwl -Description: Mirandese -Added: 2005-10-16 -%% -Type: language -Subtag: mwm -Description: Sar -Added: 2009-07-29 -%% -Type: language -Subtag: mwn -Description: Nyamwanga -Added: 2009-07-29 -%% -Type: language -Subtag: mwo -Description: Central Maewo -Added: 2009-07-29 -%% -Type: language -Subtag: mwp -Description: Kala Lagaw Ya -Added: 2009-07-29 -%% -Type: language -Subtag: mwq -Description: Mün Chin -Added: 2009-07-29 -%% -Type: language -Subtag: mwr -Description: Marwari -Added: 2005-10-16 -Scope: macrolanguage -%% -Type: language -Subtag: mws -Description: Mwimbi-Muthambi -Added: 2009-07-29 -%% -Type: language -Subtag: mwt -Description: Moken -Added: 2009-07-29 -%% -Type: language -Subtag: mwu -Description: Mittu -Added: 2009-07-29 -%% -Type: language -Subtag: mwv -Description: Mentawai -Added: 2009-07-29 -%% -Type: language -Subtag: mww -Description: Hmong Daw -Added: 2009-07-29 -Macrolanguage: hmn -%% -Type: language -Subtag: mwx -Description: Mediak -Added: 2009-07-29 -Deprecated: 2018-03-08 -%% -Type: language -Subtag: mwy -Description: Mosiro -Added: 2009-07-29 -Deprecated: 2018-03-08 -%% -Type: language -Subtag: mwz -Description: Moingi -Added: 2009-07-29 -%% -Type: language -Subtag: mxa -Description: Northwest Oaxaca Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: mxb -Description: Tezoatlán Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: mxc -Description: Manyika -Added: 2009-07-29 -%% -Type: language -Subtag: mxd -Description: Modang -Added: 2009-07-29 -%% -Type: language -Subtag: mxe -Description: Mele-Fila -Added: 2009-07-29 -%% -Type: language -Subtag: mxf -Description: Malgbe -Added: 2009-07-29 -%% -Type: language -Subtag: mxg -Description: Mbangala -Added: 2009-07-29 -%% -Type: language -Subtag: mxh -Description: Mvuba -Added: 2009-07-29 -%% -Type: language -Subtag: mxi -Description: Mozarabic -Added: 2009-07-29 -%% -Type: language -Subtag: mxj -Description: Miju-Mishmi -Description: Geman Deng -Added: 2009-07-29 -%% -Type: language -Subtag: mxk -Description: Monumbo -Added: 2009-07-29 -%% -Type: language -Subtag: mxl -Description: Maxi Gbe -Added: 2009-07-29 -%% -Type: language -Subtag: mxm -Description: Meramera -Added: 2009-07-29 -%% -Type: language -Subtag: mxn -Description: Moi (Indonesia) -Added: 2009-07-29 -%% -Type: language -Subtag: mxo -Description: Mbowe -Added: 2009-07-29 -%% -Type: language -Subtag: mxp -Description: Tlahuitoltepec Mixe -Added: 2009-07-29 -%% -Type: language -Subtag: mxq -Description: Juquila Mixe -Added: 2009-07-29 -%% -Type: language -Subtag: mxr -Description: Murik (Malaysia) -Added: 2009-07-29 -%% -Type: language -Subtag: mxs -Description: Huitepec Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: mxt -Description: Jamiltepec Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: mxu -Description: Mada (Cameroon) -Added: 2009-07-29 -%% -Type: language -Subtag: mxv -Description: Metlatónoc Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: mxw -Description: Namo -Added: 2009-07-29 -%% -Type: language -Subtag: mxx -Description: Mahou -Description: Mawukakan -Added: 2009-07-29 -%% -Type: language -Subtag: mxy -Description: Southeastern Nochixtlán Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: mxz -Description: Central Masela -Added: 2009-07-29 -%% -Type: language -Subtag: myb -Description: Mbay -Added: 2009-07-29 -%% -Type: language -Subtag: myc -Description: Mayeka -Added: 2009-07-29 -%% -Type: language -Subtag: myd -Description: Maramba -Added: 2009-07-29 -Deprecated: 2019-04-16 -Preferred-Value: aog -%% -Type: language -Subtag: mye -Description: Myene -Added: 2009-07-29 -%% -Type: language -Subtag: myf -Description: Bambassi -Added: 2009-07-29 -%% -Type: language -Subtag: myg -Description: Manta -Added: 2009-07-29 -%% -Type: language -Subtag: myh -Description: Makah -Added: 2009-07-29 -%% -Type: language -Subtag: myi -Description: Mina (India) -Added: 2009-07-29 -Deprecated: 2019-04-16 -%% -Type: language -Subtag: myj -Description: Mangayat -Added: 2009-07-29 -%% -Type: language -Subtag: myk -Description: Mamara Senoufo -Added: 2009-07-29 -%% -Type: language -Subtag: myl -Description: Moma -Added: 2009-07-29 -%% -Type: language -Subtag: mym -Description: Me'en -Added: 2009-07-29 -%% -Type: language -Subtag: myn -Description: Mayan languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: myo -Description: Anfillo -Added: 2009-07-29 -%% -Type: language -Subtag: myp -Description: Pirahã -Added: 2009-07-29 -%% -Type: language -Subtag: myq -Description: Forest Maninka -Added: 2009-07-29 -Deprecated: 2013-09-10 -Macrolanguage: man -%% -Type: language -Subtag: myr -Description: Muniche -Added: 2009-07-29 -%% -Type: language -Subtag: mys -Description: Mesmes -Added: 2009-07-29 -%% -Type: language -Subtag: myt -Description: Sangab Mandaya -Added: 2009-07-29 -Deprecated: 2010-03-11 -Preferred-Value: mry -%% -Type: language -Subtag: myu -Description: Mundurukú -Added: 2009-07-29 -%% -Type: language -Subtag: myv -Description: Erzya -Added: 2005-10-16 -%% -Type: language -Subtag: myw -Description: Muyuw -Added: 2009-07-29 -%% -Type: language -Subtag: myx -Description: Masaaba -Added: 2009-07-29 -%% -Type: language -Subtag: myy -Description: Macuna -Added: 2009-07-29 -%% -Type: language -Subtag: myz -Description: Classical Mandaic -Added: 2009-07-29 -%% -Type: language -Subtag: mza -Description: Santa María Zacatepec Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: mzb -Description: Tumzabt -Added: 2009-07-29 -%% -Type: language -Subtag: mzc -Description: Madagascar Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: mzd -Description: Malimba -Added: 2009-07-29 -%% -Type: language -Subtag: mze -Description: Morawa -Added: 2009-07-29 -%% -Type: language -Subtag: mzg -Description: Monastic Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: mzh -Description: Wichí Lhamtés Güisnay -Added: 2009-07-29 -%% -Type: language -Subtag: mzi -Description: Ixcatlán Mazatec -Added: 2009-07-29 -%% -Type: language -Subtag: mzj -Description: Manya -Added: 2009-07-29 -%% -Type: language -Subtag: mzk -Description: Nigeria Mambila -Added: 2009-07-29 -%% -Type: language -Subtag: mzl -Description: Mazatlán Mixe -Added: 2009-07-29 -%% -Type: language -Subtag: mzm -Description: Mumuye -Added: 2009-07-29 -%% -Type: language -Subtag: mzn -Description: Mazanderani -Added: 2009-07-29 -%% -Type: language -Subtag: mzo -Description: Matipuhy -Added: 2009-07-29 -%% -Type: language -Subtag: mzp -Description: Movima -Added: 2009-07-29 -%% -Type: language -Subtag: mzq -Description: Mori Atas -Added: 2009-07-29 -%% -Type: language -Subtag: mzr -Description: Marúbo -Added: 2009-07-29 -%% -Type: language -Subtag: mzs -Description: Macanese -Added: 2009-07-29 -%% -Type: language -Subtag: mzt -Description: Mintil -Added: 2009-07-29 -%% -Type: language -Subtag: mzu -Description: Inapang -Added: 2009-07-29 -%% -Type: language -Subtag: mzv -Description: Manza -Added: 2009-07-29 -%% -Type: language -Subtag: mzw -Description: Deg -Added: 2009-07-29 -%% -Type: language -Subtag: mzx -Description: Mawayana -Added: 2009-07-29 -%% -Type: language -Subtag: mzy -Description: Mozambican Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: mzz -Description: Maiadomu -Added: 2009-07-29 -%% -Type: language -Subtag: naa -Description: Namla -Added: 2009-07-29 -%% -Type: language -Subtag: nab -Description: Southern Nambikuára -Added: 2009-07-29 -%% -Type: language -Subtag: nac -Description: Narak -Added: 2009-07-29 -%% -Type: language -Subtag: nad -Description: Nijadali -Added: 2009-07-29 -Deprecated: 2016-05-30 -Preferred-Value: xny -%% -Type: language -Subtag: nae -Description: Naka'ela -Added: 2009-07-29 -%% -Type: language -Subtag: naf -Description: Nabak -Added: 2009-07-29 -%% -Type: language -Subtag: nag -Description: Naga Pidgin -Added: 2009-07-29 -%% -Type: language -Subtag: nah -Description: Nahuatl languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: nai -Description: North American Indian languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: naj -Description: Nalu -Added: 2009-07-29 -%% -Type: language -Subtag: nak -Description: Nakanai -Added: 2009-07-29 -%% -Type: language -Subtag: nal -Description: Nalik -Added: 2009-07-29 -%% -Type: language -Subtag: nam -Description: Ngan'gityemerri -Added: 2009-07-29 -%% -Type: language -Subtag: nan -Description: Min Nan Chinese -Added: 2009-07-29 -Macrolanguage: zh -%% -Type: language -Subtag: nao -Description: Naaba -Added: 2009-07-29 -%% -Type: language -Subtag: nap -Description: Neapolitan -Added: 2005-10-16 -%% -Type: language -Subtag: naq -Description: Khoekhoe -Description: Nama (Namibia) -Added: 2009-07-29 -%% -Type: language -Subtag: nar -Description: Iguta -Added: 2009-07-29 -%% -Type: language -Subtag: nas -Description: Naasioi -Added: 2009-07-29 -%% -Type: language -Subtag: nat -Description: Ca̱hungwa̱rya̱ -Description: Hungworo -Added: 2009-07-29 -%% -Type: language -Subtag: naw -Description: Nawuri -Added: 2009-07-29 -%% -Type: language -Subtag: nax -Description: Nakwi -Added: 2009-07-29 -%% -Type: language -Subtag: nay -Description: Ngarrindjeri -Added: 2009-07-29 -%% -Type: language -Subtag: naz -Description: Coatepec Nahuatl -Added: 2009-07-29 -%% -Type: language -Subtag: nba -Description: Nyemba -Added: 2009-07-29 -%% -Type: language -Subtag: nbb -Description: Ndoe -Added: 2009-07-29 -%% -Type: language -Subtag: nbc -Description: Chang Naga -Added: 2009-07-29 -%% -Type: language -Subtag: nbd -Description: Ngbinda -Added: 2009-07-29 -%% -Type: language -Subtag: nbe -Description: Konyak Naga -Added: 2009-07-29 -%% -Type: language -Subtag: nbf -Description: Naxi -Added: 2009-07-29 -Deprecated: 2011-08-16 -Comments: see nru, nxq -%% -Type: language -Subtag: nbg -Description: Nagarchal -Added: 2009-07-29 -%% -Type: language -Subtag: nbh -Description: Ngamo -Added: 2009-07-29 -%% -Type: language -Subtag: nbi -Description: Mao Naga -Added: 2009-07-29 -%% -Type: language -Subtag: nbj -Description: Ngarinyman -Added: 2009-07-29 -%% -Type: language -Subtag: nbk -Description: Nake -Added: 2009-07-29 -%% -Type: language -Subtag: nbm -Description: Ngbaka Ma'bo -Added: 2009-07-29 -%% -Type: language -Subtag: nbn -Description: Kuri -Added: 2009-07-29 -%% -Type: language -Subtag: nbo -Description: Nkukoli -Added: 2009-07-29 -%% -Type: language -Subtag: nbp -Description: Nnam -Added: 2009-07-29 -%% -Type: language -Subtag: nbq -Description: Nggem -Added: 2009-07-29 -%% -Type: language -Subtag: nbr -Description: Numana -Added: 2009-07-29 -%% -Type: language -Subtag: nbs -Description: Namibian Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: nbt -Description: Na -Added: 2009-07-29 -%% -Type: language -Subtag: nbu -Description: Rongmei Naga -Added: 2009-07-29 -%% -Type: language -Subtag: nbv -Description: Ngamambo -Added: 2009-07-29 -%% -Type: language -Subtag: nbw -Description: Southern Ngbandi -Added: 2009-07-29 -%% -Type: language -Subtag: nbx -Description: Ngura -Added: 2009-07-29 -Deprecated: 2013-09-10 -Comments: see ekc, gll, jbi, xpt, xwk -%% -Type: language -Subtag: nby -Description: Ningera -Added: 2009-07-29 -%% -Type: language -Subtag: nca -Description: Iyo -Added: 2009-07-29 -%% -Type: language -Subtag: ncb -Description: Central Nicobarese -Added: 2009-07-29 -%% -Type: language -Subtag: ncc -Description: Ponam -Added: 2009-07-29 -%% -Type: language -Subtag: ncd -Description: Nachering -Added: 2009-07-29 -%% -Type: language -Subtag: nce -Description: Yale -Added: 2009-07-29 -%% -Type: language -Subtag: ncf -Description: Notsi -Added: 2009-07-29 -%% -Type: language -Subtag: ncg -Description: Nisga'a -Added: 2009-07-29 -%% -Type: language -Subtag: nch -Description: Central Huasteca Nahuatl -Added: 2009-07-29 -%% -Type: language -Subtag: nci -Description: Classical Nahuatl -Added: 2009-07-29 -%% -Type: language -Subtag: ncj -Description: Northern Puebla Nahuatl -Added: 2009-07-29 -%% -Type: language -Subtag: nck -Description: Na-kara -Added: 2009-07-29 -%% -Type: language -Subtag: ncl -Description: Michoacán Nahuatl -Added: 2009-07-29 -%% -Type: language -Subtag: ncm -Description: Nambo -Added: 2009-07-29 -%% -Type: language -Subtag: ncn -Description: Nauna -Added: 2009-07-29 -%% -Type: language -Subtag: nco -Description: Sibe -Added: 2009-07-29 -%% -Type: language -Subtag: ncp -Description: Ndaktup -Added: 2009-07-29 -Deprecated: 2018-03-08 -Preferred-Value: kdz -%% -Type: language -Subtag: ncq -Description: Northern Katang -Added: 2017-02-23 -%% -Type: language -Subtag: ncr -Description: Ncane -Added: 2009-07-29 -%% -Type: language -Subtag: ncs -Description: Nicaraguan Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: nct -Description: Chothe Naga -Added: 2009-07-29 -%% -Type: language -Subtag: ncu -Description: Chumburung -Added: 2009-07-29 -%% -Type: language -Subtag: ncx -Description: Central Puebla Nahuatl -Added: 2009-07-29 -%% -Type: language -Subtag: ncz -Description: Natchez -Added: 2009-07-29 -%% -Type: language -Subtag: nda -Description: Ndasa -Added: 2009-07-29 -%% -Type: language -Subtag: ndb -Description: Kenswei Nsei -Added: 2009-07-29 -%% -Type: language -Subtag: ndc -Description: Ndau -Added: 2009-07-29 -%% -Type: language -Subtag: ndd -Description: Nde-Nsele-Nta -Added: 2009-07-29 -%% -Type: language -Subtag: ndf -Description: Nadruvian -Added: 2009-07-29 -%% -Type: language -Subtag: ndg -Description: Ndengereko -Added: 2009-07-29 -%% -Type: language -Subtag: ndh -Description: Ndali -Added: 2009-07-29 -%% -Type: language -Subtag: ndi -Description: Samba Leko -Added: 2009-07-29 -%% -Type: language -Subtag: ndj -Description: Ndamba -Added: 2009-07-29 -%% -Type: language -Subtag: ndk -Description: Ndaka -Added: 2009-07-29 -%% -Type: language -Subtag: ndl -Description: Ndolo -Added: 2009-07-29 -%% -Type: language -Subtag: ndm -Description: Ndam -Added: 2009-07-29 -%% -Type: language -Subtag: ndn -Description: Ngundi -Added: 2009-07-29 -%% -Type: language -Subtag: ndp -Description: Ndo -Added: 2009-07-29 -%% -Type: language -Subtag: ndq -Description: Ndombe -Added: 2009-07-29 -%% -Type: language -Subtag: ndr -Description: Ndoola -Added: 2009-07-29 -%% -Type: language -Subtag: nds -Description: Low German -Description: Low Saxon -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: ndt -Description: Ndunga -Added: 2009-07-29 -%% -Type: language -Subtag: ndu -Description: Dugun -Added: 2009-07-29 -%% -Type: language -Subtag: ndv -Description: Ndut -Added: 2009-07-29 -%% -Type: language -Subtag: ndw -Description: Ndobo -Added: 2009-07-29 -%% -Type: language -Subtag: ndx -Description: Nduga -Added: 2009-07-29 -%% -Type: language -Subtag: ndy -Description: Lutos -Added: 2009-07-29 -%% -Type: language -Subtag: ndz -Description: Ndogo -Added: 2009-07-29 -%% -Type: language -Subtag: nea -Description: Eastern Ngad'a -Added: 2009-07-29 -%% -Type: language -Subtag: neb -Description: Toura (Côte d'Ivoire) -Added: 2009-07-29 -%% -Type: language -Subtag: nec -Description: Nedebang -Added: 2009-07-29 -%% -Type: language -Subtag: ned -Description: Nde-Gbite -Added: 2009-07-29 -%% -Type: language -Subtag: nee -Description: Nêlêmwa-Nixumwak -Added: 2009-07-29 -%% -Type: language -Subtag: nef -Description: Nefamese -Added: 2009-07-29 -%% -Type: language -Subtag: neg -Description: Negidal -Added: 2009-07-29 -%% -Type: language -Subtag: neh -Description: Nyenkha -Added: 2009-07-29 -%% -Type: language -Subtag: nei -Description: Neo-Hittite -Added: 2009-07-29 -%% -Type: language -Subtag: nej -Description: Neko -Added: 2009-07-29 -%% -Type: language -Subtag: nek -Description: Neku -Added: 2009-07-29 -%% -Type: language -Subtag: nem -Description: Nemi -Added: 2009-07-29 -%% -Type: language -Subtag: nen -Description: Nengone -Added: 2009-07-29 -%% -Type: language -Subtag: neo -Description: Ná-Meo -Added: 2009-07-29 -%% -Type: language -Subtag: neq -Description: North Central Mixe -Added: 2009-07-29 -%% -Type: language -Subtag: ner -Description: Yahadian -Added: 2009-07-29 -%% -Type: language -Subtag: nes -Description: Bhoti Kinnauri -Added: 2009-07-29 -%% -Type: language -Subtag: net -Description: Nete -Added: 2009-07-29 -%% -Type: language -Subtag: neu -Description: Neo -Added: 2012-08-12 -%% -Type: language -Subtag: nev -Description: Nyaheun -Added: 2009-07-29 -%% -Type: language -Subtag: new -Description: Nepal Bhasa -Description: Newar -Description: Newari -Added: 2005-10-16 -%% -Type: language -Subtag: nex -Description: Neme -Added: 2009-07-29 -%% -Type: language -Subtag: ney -Description: Neyo -Added: 2009-07-29 -%% -Type: language -Subtag: nez -Description: Nez Perce -Added: 2009-07-29 -%% -Type: language -Subtag: nfa -Description: Dhao -Added: 2009-07-29 -%% -Type: language -Subtag: nfd -Description: Ahwai -Added: 2009-07-29 -%% -Type: language -Subtag: nfl -Description: Ayiwo -Description: Äiwoo -Added: 2009-07-29 -%% -Type: language -Subtag: nfr -Description: Nafaanra -Added: 2009-07-29 -%% -Type: language -Subtag: nfu -Description: Mfumte -Added: 2009-07-29 -%% -Type: language -Subtag: nga -Description: Ngbaka -Added: 2009-07-29 -%% -Type: language -Subtag: ngb -Description: Northern Ngbandi -Added: 2009-07-29 -%% -Type: language -Subtag: ngc -Description: Ngombe (Democratic Republic of Congo) -Added: 2009-07-29 -%% -Type: language -Subtag: ngd -Description: Ngando (Central African Republic) -Added: 2009-07-29 -%% -Type: language -Subtag: nge -Description: Ngemba -Added: 2009-07-29 -%% -Type: language -Subtag: ngf -Description: Trans-New Guinea languages -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: ngg -Description: Ngbaka Manza -Added: 2009-07-29 -%% -Type: language -Subtag: ngh -Description: Nǁng -Added: 2009-07-29 -%% -Type: language -Subtag: ngi -Description: Ngizim -Added: 2009-07-29 -%% -Type: language -Subtag: ngj -Description: Ngie -Added: 2009-07-29 -%% -Type: language -Subtag: ngk -Description: Dalabon -Added: 2009-07-29 -%% -Type: language -Subtag: ngl -Description: Lomwe -Added: 2009-07-29 -%% -Type: language -Subtag: ngm -Description: Ngatik Men's Creole -Added: 2009-07-29 -%% -Type: language -Subtag: ngn -Description: Ngwo -Added: 2009-07-29 -%% -Type: language -Subtag: ngo -Description: Ngoni -Added: 2009-07-29 -Deprecated: 2021-02-20 -Comments: see xnj, xnq -%% -Type: language -Subtag: ngp -Description: Ngulu -Added: 2009-07-29 -%% -Type: language -Subtag: ngq -Description: Ngurimi -Description: Ngoreme -Added: 2009-07-29 -%% -Type: language -Subtag: ngr -Description: Engdewu -Added: 2009-07-29 -%% -Type: language -Subtag: ngs -Description: Gvoko -Added: 2009-07-29 -%% -Type: language -Subtag: ngt -Description: Kriang -Description: Ngeq -Added: 2009-07-29 -%% -Type: language -Subtag: ngu -Description: Guerrero Nahuatl -Added: 2009-07-29 -%% -Type: language -Subtag: ngv -Description: Nagumi -Added: 2009-07-29 -%% -Type: language -Subtag: ngw -Description: Ngwaba -Added: 2009-07-29 -%% -Type: language -Subtag: ngx -Description: Nggwahyi -Added: 2009-07-29 -%% -Type: language -Subtag: ngy -Description: Tibea -Added: 2009-07-29 -%% -Type: language -Subtag: ngz -Description: Ngungwel -Added: 2009-07-29 -%% -Type: language -Subtag: nha -Description: Nhanda -Added: 2009-07-29 -%% -Type: language -Subtag: nhb -Description: Beng -Added: 2009-07-29 -%% -Type: language -Subtag: nhc -Description: Tabasco Nahuatl -Added: 2009-07-29 -%% -Type: language -Subtag: nhd -Description: Chiripá -Description: Ava Guaraní -Added: 2009-07-29 -Macrolanguage: gn -%% -Type: language -Subtag: nhe -Description: Eastern Huasteca Nahuatl -Added: 2009-07-29 -%% -Type: language -Subtag: nhf -Description: Nhuwala -Added: 2009-07-29 -%% -Type: language -Subtag: nhg -Description: Tetelcingo Nahuatl -Added: 2009-07-29 -%% -Type: language -Subtag: nhh -Description: Nahari -Added: 2009-07-29 -%% -Type: language -Subtag: nhi -Description: Zacatlán-Ahuacatlán-Tepetzintla Nahuatl -Added: 2009-07-29 -%% -Type: language -Subtag: nhk -Description: Isthmus-Cosoleacaque Nahuatl -Added: 2009-07-29 -%% -Type: language -Subtag: nhm -Description: Morelos Nahuatl -Added: 2009-07-29 -%% -Type: language -Subtag: nhn -Description: Central Nahuatl -Added: 2009-07-29 -%% -Type: language -Subtag: nho -Description: Takuu -Added: 2009-07-29 -%% -Type: language -Subtag: nhp -Description: Isthmus-Pajapan Nahuatl -Added: 2009-07-29 -%% -Type: language -Subtag: nhq -Description: Huaxcaleca Nahuatl -Added: 2009-07-29 -%% -Type: language -Subtag: nhr -Description: Naro -Added: 2009-07-29 -%% -Type: language -Subtag: nht -Description: Ometepec Nahuatl -Added: 2009-07-29 -%% -Type: language -Subtag: nhu -Description: Noone -Added: 2009-07-29 -%% -Type: language -Subtag: nhv -Description: Temascaltepec Nahuatl -Added: 2009-07-29 -%% -Type: language -Subtag: nhw -Description: Western Huasteca Nahuatl -Added: 2009-07-29 -%% -Type: language -Subtag: nhx -Description: Isthmus-Mecayapan Nahuatl -Added: 2009-07-29 -%% -Type: language -Subtag: nhy -Description: Northern Oaxaca Nahuatl -Added: 2009-07-29 -%% -Type: language -Subtag: nhz -Description: Santa María La Alta Nahuatl -Added: 2009-07-29 -%% -Type: language -Subtag: nia -Description: Nias -Added: 2005-10-16 -%% -Type: language -Subtag: nib -Description: Nakame -Added: 2009-07-29 -%% -Type: language -Subtag: nic -Description: Niger-Kordofanian languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: nid -Description: Ngandi -Added: 2009-07-29 -%% -Type: language -Subtag: nie -Description: Niellim -Added: 2009-07-29 -%% -Type: language -Subtag: nif -Description: Nek -Added: 2009-07-29 -%% -Type: language -Subtag: nig -Description: Ngalakgan -Added: 2009-07-29 -%% -Type: language -Subtag: nih -Description: Nyiha (Tanzania) -Added: 2009-07-29 -%% -Type: language -Subtag: nii -Description: Nii -Added: 2009-07-29 -%% -Type: language -Subtag: nij -Description: Ngaju -Added: 2009-07-29 -%% -Type: language -Subtag: nik -Description: Southern Nicobarese -Added: 2009-07-29 -%% -Type: language -Subtag: nil -Description: Nila -Added: 2009-07-29 -%% -Type: language -Subtag: nim -Description: Nilamba -Added: 2009-07-29 -%% -Type: language -Subtag: nin -Description: Ninzo -Added: 2009-07-29 -%% -Type: language -Subtag: nio -Description: Nganasan -Added: 2009-07-29 -%% -Type: language -Subtag: niq -Description: Nandi -Added: 2009-07-29 -Macrolanguage: kln -%% -Type: language -Subtag: nir -Description: Nimboran -Added: 2009-07-29 -%% -Type: language -Subtag: nis -Description: Nimi -Added: 2009-07-29 -%% -Type: language -Subtag: nit -Description: Southeastern Kolami -Added: 2009-07-29 -%% -Type: language -Subtag: niu -Description: Niuean -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: niv -Description: Gilyak -Added: 2009-07-29 -%% -Type: language -Subtag: niw -Description: Nimo -Added: 2009-07-29 -%% -Type: language -Subtag: nix -Description: Hema -Added: 2009-07-29 -%% -Type: language -Subtag: niy -Description: Ngiti -Added: 2009-07-29 -%% -Type: language -Subtag: niz -Description: Ningil -Added: 2009-07-29 -%% -Type: language -Subtag: nja -Description: Nzanyi -Added: 2009-07-29 -%% -Type: language -Subtag: njb -Description: Nocte Naga -Added: 2009-07-29 -%% -Type: language -Subtag: njd -Description: Ndonde Hamba -Added: 2009-07-29 -%% -Type: language -Subtag: njh -Description: Lotha Naga -Added: 2009-07-29 -%% -Type: language -Subtag: nji -Description: Gudanji -Added: 2009-07-29 -%% -Type: language -Subtag: njj -Description: Njen -Added: 2009-07-29 -%% -Type: language -Subtag: njl -Description: Njalgulgule -Added: 2009-07-29 -%% -Type: language -Subtag: njm -Description: Angami Naga -Added: 2009-07-29 -%% -Type: language -Subtag: njn -Description: Liangmai Naga -Added: 2009-07-29 -%% -Type: language -Subtag: njo -Description: Ao Naga -Added: 2009-07-29 -%% -Type: language -Subtag: njr -Description: Njerep -Added: 2009-07-29 -%% -Type: language -Subtag: njs -Description: Nisa -Added: 2009-07-29 -%% -Type: language -Subtag: njt -Description: Ndyuka-Trio Pidgin -Added: 2009-07-29 -%% -Type: language -Subtag: nju -Description: Ngadjunmaya -Added: 2009-07-29 -%% -Type: language -Subtag: njx -Description: Kunyi -Added: 2009-07-29 -%% -Type: language -Subtag: njy -Description: Njyem -Added: 2009-07-29 -%% -Type: language -Subtag: njz -Description: Nyishi -Added: 2012-08-12 -%% -Type: language -Subtag: nka -Description: Nkoya -Added: 2009-07-29 -%% -Type: language -Subtag: nkb -Description: Khoibu Naga -Added: 2009-07-29 -%% -Type: language -Subtag: nkc -Description: Nkongho -Added: 2009-07-29 -%% -Type: language -Subtag: nkd -Description: Koireng -Added: 2009-07-29 -%% -Type: language -Subtag: nke -Description: Duke -Added: 2009-07-29 -%% -Type: language -Subtag: nkf -Description: Inpui Naga -Added: 2009-07-29 -%% -Type: language -Subtag: nkg -Description: Nekgini -Added: 2009-07-29 -%% -Type: language -Subtag: nkh -Description: Khezha Naga -Added: 2009-07-29 -%% -Type: language -Subtag: nki -Description: Thangal Naga -Added: 2009-07-29 -%% -Type: language -Subtag: nkj -Description: Nakai -Added: 2009-07-29 -%% -Type: language -Subtag: nkk -Description: Nokuku -Added: 2009-07-29 -%% -Type: language -Subtag: nkm -Description: Namat -Added: 2009-07-29 -%% -Type: language -Subtag: nkn -Description: Nkangala -Added: 2009-07-29 -%% -Type: language -Subtag: nko -Description: Nkonya -Added: 2009-07-29 -%% -Type: language -Subtag: nkp -Description: Niuatoputapu -Added: 2009-07-29 -%% -Type: language -Subtag: nkq -Description: Nkami -Added: 2010-04-16 -%% -Type: language -Subtag: nkr -Description: Nukuoro -Added: 2009-07-29 -%% -Type: language -Subtag: nks -Description: North Asmat -Added: 2009-07-29 -%% -Type: language -Subtag: nkt -Description: Nyika (Tanzania) -Added: 2009-07-29 -%% -Type: language -Subtag: nku -Description: Bouna Kulango -Added: 2009-07-29 -%% -Type: language -Subtag: nkv -Description: Nyika (Malawi and Zambia) -Added: 2009-07-29 -%% -Type: language -Subtag: nkw -Description: Nkutu -Added: 2009-07-29 -%% -Type: language -Subtag: nkx -Description: Nkoroo -Added: 2009-07-29 -%% -Type: language -Subtag: nkz -Description: Nkari -Added: 2009-07-29 -%% -Type: language -Subtag: nla -Description: Ngombale -Added: 2009-07-29 -%% -Type: language -Subtag: nlc -Description: Nalca -Added: 2009-07-29 -%% -Type: language -Subtag: nle -Description: East Nyala -Added: 2009-07-29 -Macrolanguage: luy -%% -Type: language -Subtag: nlg -Description: Gela -Added: 2009-07-29 -%% -Type: language -Subtag: nli -Description: Grangali -Added: 2009-07-29 -%% -Type: language -Subtag: nlj -Description: Nyali -Added: 2009-07-29 -%% -Type: language -Subtag: nlk -Description: Ninia Yali -Added: 2009-07-29 -%% -Type: language -Subtag: nll -Description: Nihali -Added: 2009-07-29 -%% -Type: language -Subtag: nlm -Description: Mankiyali -Added: 2018-03-08 -%% -Type: language -Subtag: nln -Description: Durango Nahuatl -Added: 2009-07-29 -Deprecated: 2012-08-12 -Comments: see azd, azn -%% -Type: language -Subtag: nlo -Description: Ngul -Added: 2009-07-29 -%% -Type: language -Subtag: nlq -Description: Lao Naga -Added: 2013-09-10 -%% -Type: language -Subtag: nlr -Description: Ngarla -Added: 2009-07-29 -Deprecated: 2013-09-10 -Comments: see nrk, ywg -%% -Type: language -Subtag: nlu -Description: Nchumbulu -Added: 2009-07-29 -%% -Type: language -Subtag: nlv -Description: Orizaba Nahuatl -Added: 2009-07-29 -%% -Type: language -Subtag: nlw -Description: Walangama -Added: 2013-09-10 -%% -Type: language -Subtag: nlx -Description: Nahali -Added: 2009-07-29 -%% -Type: language -Subtag: nly -Description: Nyamal -Added: 2009-07-29 -%% -Type: language -Subtag: nlz -Description: Nalögo -Added: 2009-07-29 -%% -Type: language -Subtag: nma -Description: Maram Naga -Added: 2009-07-29 -%% -Type: language -Subtag: nmb -Description: Big Nambas -Description: V'ënen Taut -Added: 2009-07-29 -%% -Type: language -Subtag: nmc -Description: Ngam -Added: 2009-07-29 -%% -Type: language -Subtag: nmd -Description: Ndumu -Added: 2009-07-29 -%% -Type: language -Subtag: nme -Description: Mzieme Naga -Added: 2009-07-29 -%% -Type: language -Subtag: nmf -Description: Tangkhul Naga (India) -Added: 2009-07-29 -Comments: see ntx -%% -Type: language -Subtag: nmg -Description: Kwasio -Added: 2009-07-29 -%% -Type: language -Subtag: nmh -Description: Monsang Naga -Added: 2009-07-29 -%% -Type: language -Subtag: nmi -Description: Nyam -Added: 2009-07-29 -%% -Type: language -Subtag: nmj -Description: Ngombe (Central African Republic) -Added: 2009-07-29 -%% -Type: language -Subtag: nmk -Description: Namakura -Added: 2009-07-29 -%% -Type: language -Subtag: nml -Description: Ndemli -Added: 2009-07-29 -%% -Type: language -Subtag: nmm -Description: Manangba -Added: 2009-07-29 -%% -Type: language -Subtag: nmn -Description: ǃXóõ -Added: 2009-07-29 -%% -Type: language -Subtag: nmo -Description: Moyon Naga -Added: 2009-07-29 -%% -Type: language -Subtag: nmp -Description: Nimanbur -Added: 2009-07-29 -%% -Type: language -Subtag: nmq -Description: Nambya -Added: 2009-07-29 -%% -Type: language -Subtag: nmr -Description: Nimbari -Added: 2009-07-29 -%% -Type: language -Subtag: nms -Description: Letemboi -Added: 2009-07-29 -%% -Type: language -Subtag: nmt -Description: Namonuito -Added: 2009-07-29 -%% -Type: language -Subtag: nmu -Description: Northeast Maidu -Added: 2009-07-29 -%% -Type: language -Subtag: nmv -Description: Ngamini -Added: 2009-07-29 -%% -Type: language -Subtag: nmw -Description: Nimoa -Description: Rifao -Added: 2009-07-29 -%% -Type: language -Subtag: nmx -Description: Nama (Papua New Guinea) -Added: 2009-07-29 -%% -Type: language -Subtag: nmy -Description: Namuyi -Added: 2009-07-29 -%% -Type: language -Subtag: nmz -Description: Nawdm -Added: 2009-07-29 -%% -Type: language -Subtag: nna -Description: Nyangumarta -Added: 2009-07-29 -%% -Type: language -Subtag: nnb -Description: Nande -Added: 2009-07-29 -%% -Type: language -Subtag: nnc -Description: Nancere -Added: 2009-07-29 -%% -Type: language -Subtag: nnd -Description: West Ambae -Added: 2009-07-29 -%% -Type: language -Subtag: nne -Description: Ngandyera -Added: 2009-07-29 -%% -Type: language -Subtag: nnf -Description: Ngaing -Added: 2009-07-29 -%% -Type: language -Subtag: nng -Description: Maring Naga -Added: 2009-07-29 -%% -Type: language -Subtag: nnh -Description: Ngiemboon -Added: 2009-07-29 -%% -Type: language -Subtag: nni -Description: North Nuaulu -Added: 2009-07-29 -%% -Type: language -Subtag: nnj -Description: Nyangatom -Added: 2009-07-29 -%% -Type: language -Subtag: nnk -Description: Nankina -Added: 2009-07-29 -%% -Type: language -Subtag: nnl -Description: Northern Rengma Naga -Added: 2009-07-29 -%% -Type: language -Subtag: nnm -Description: Namia -Added: 2009-07-29 -%% -Type: language -Subtag: nnn -Description: Ngete -Added: 2009-07-29 -%% -Type: language -Subtag: nnp -Description: Wancho Naga -Added: 2009-07-29 -%% -Type: language -Subtag: nnq -Description: Ngindo -Added: 2009-07-29 -%% -Type: language -Subtag: nnr -Description: Narungga -Added: 2009-07-29 -%% -Type: language -Subtag: nns -Description: Ningye -Added: 2009-07-29 -Deprecated: 2019-04-16 -Preferred-Value: nbr -%% -Type: language -Subtag: nnt -Description: Nanticoke -Added: 2009-07-29 -%% -Type: language -Subtag: nnu -Description: Dwang -Added: 2009-07-29 -%% -Type: language -Subtag: nnv -Description: Nugunu (Australia) -Added: 2009-07-29 -%% -Type: language -Subtag: nnw -Description: Southern Nuni -Added: 2009-07-29 -%% -Type: language -Subtag: nnx -Description: Ngong -Added: 2009-07-29 -Deprecated: 2015-02-12 -Preferred-Value: ngv -%% -Type: language -Subtag: nny -Description: Nyangga -Added: 2009-07-29 -%% -Type: language -Subtag: nnz -Description: Nda'nda' -Added: 2009-07-29 -%% -Type: language -Subtag: noa -Description: Woun Meu -Added: 2009-07-29 -%% -Type: language -Subtag: noc -Description: Nuk -Added: 2009-07-29 -%% -Type: language -Subtag: nod -Description: Northern Thai -Added: 2009-07-29 -%% -Type: language -Subtag: noe -Description: Nimadi -Added: 2009-07-29 -%% -Type: language -Subtag: nof -Description: Nomane -Added: 2009-07-29 -%% -Type: language -Subtag: nog -Description: Nogai -Added: 2005-10-16 -%% -Type: language -Subtag: noh -Description: Nomu -Added: 2009-07-29 -%% -Type: language -Subtag: noi -Description: Noiri -Added: 2009-07-29 -%% -Type: language -Subtag: noj -Description: Nonuya -Added: 2010-03-11 -%% -Type: language -Subtag: nok -Description: Nooksack -Description: Lhéchelesem -Added: 2009-07-29 -%% -Type: language -Subtag: nol -Description: Nomlaki -Added: 2013-09-10 -%% -Type: language -Subtag: nom -Description: Nocamán -Added: 2009-07-29 -Deprecated: 2023-03-17 -Preferred-Value: cbr -%% -Type: language -Subtag: non -Description: Old Norse -Added: 2005-10-16 -%% -Type: language -Subtag: noo -Description: Nootka -Added: 2009-07-29 -Deprecated: 2011-08-16 -Comments: see dtd, nuk -%% -Type: language -Subtag: nop -Description: Numanggang -Added: 2009-07-29 -%% -Type: language -Subtag: noq -Description: Ngongo -Added: 2009-07-29 -%% -Type: language -Subtag: nos -Description: Eastern Nisu -Added: 2009-07-29 -%% -Type: language -Subtag: not -Description: Nomatsiguenga -Added: 2009-07-29 -%% -Type: language -Subtag: nou -Description: Ewage-Notu -Added: 2009-07-29 -%% -Type: language -Subtag: nov -Description: Novial -Added: 2009-07-29 -%% -Type: language -Subtag: now -Description: Nyambo -Added: 2009-07-29 -%% -Type: language -Subtag: noy -Description: Noy -Added: 2009-07-29 -%% -Type: language -Subtag: noz -Description: Nayi -Added: 2009-07-29 -%% -Type: language -Subtag: npa -Description: Nar Phu -Added: 2009-07-29 -%% -Type: language -Subtag: npb -Description: Nupbikha -Added: 2009-07-29 -%% -Type: language -Subtag: npg -Description: Ponyo-Gongwang Naga -Added: 2012-08-12 -%% -Type: language -Subtag: nph -Description: Phom Naga -Added: 2009-07-29 -%% -Type: language -Subtag: npi -Description: Nepali (individual language) -Added: 2012-08-12 -Macrolanguage: ne -%% -Type: language -Subtag: npl -Description: Southeastern Puebla Nahuatl -Added: 2009-07-29 -%% -Type: language -Subtag: npn -Description: Mondropolon -Added: 2009-07-29 -%% -Type: language -Subtag: npo -Description: Pochuri Naga -Added: 2009-07-29 -%% -Type: language -Subtag: nps -Description: Nipsan -Added: 2009-07-29 -%% -Type: language -Subtag: npu -Description: Puimei Naga -Added: 2009-07-29 -%% -Type: language -Subtag: npx -Description: Noipx -Added: 2017-02-23 -%% -Type: language -Subtag: npy -Description: Napu -Added: 2009-07-29 -%% -Type: language -Subtag: nqg -Description: Southern Nago -Added: 2009-07-29 -%% -Type: language -Subtag: nqk -Description: Kura Ede Nago -Added: 2009-07-29 -%% -Type: language -Subtag: nql -Description: Ngendelengo -Added: 2017-02-23 -%% -Type: language -Subtag: nqm -Description: Ndom -Added: 2009-07-29 -%% -Type: language -Subtag: nqn -Description: Nen -Added: 2009-07-29 -%% -Type: language -Subtag: nqo -Description: N'Ko -Description: N’Ko -Added: 2006-06-05 -Suppress-Script: Nkoo -%% -Type: language -Subtag: nqq -Description: Kyan-Karyaw Naga -Added: 2013-09-10 -%% -Type: language -Subtag: nqt -Description: Nteng -Added: 2021-02-20 -%% -Type: language -Subtag: nqy -Description: Akyaung Ari Naga -Added: 2012-08-12 -%% -Type: language -Subtag: nra -Description: Ngom -Added: 2009-07-29 -%% -Type: language -Subtag: nrb -Description: Nara -Added: 2009-07-29 -%% -Type: language -Subtag: nrc -Description: Noric -Added: 2009-07-29 -%% -Type: language -Subtag: nre -Description: Southern Rengma Naga -Added: 2009-07-29 -%% -Type: language -Subtag: nrf -Description: Jèrriais -Description: Guernésiais -Description: Sercquiais -Added: 2015-02-12 -%% -Type: language -Subtag: nrg -Description: Narango -Added: 2009-07-29 -%% -Type: language -Subtag: nri -Description: Chokri Naga -Added: 2009-07-29 -%% -Type: language -Subtag: nrk -Description: Ngarla -Added: 2013-09-10 -%% -Type: language -Subtag: nrl -Description: Ngarluma -Added: 2009-07-29 -%% -Type: language -Subtag: nrm -Description: Narom -Added: 2009-07-29 -%% -Type: language -Subtag: nrn -Description: Norn -Added: 2009-07-29 -%% -Type: language -Subtag: nrp -Description: North Picene -Added: 2009-07-29 -%% -Type: language -Subtag: nrr -Description: Norra -Description: Nora -Added: 2009-07-29 -%% -Type: language -Subtag: nrt -Description: Northern Kalapuya -Added: 2009-07-29 -%% -Type: language -Subtag: nru -Description: Narua -Added: 2011-08-16 -%% -Type: language -Subtag: nrx -Description: Ngurmbur -Added: 2009-07-29 -%% -Type: language -Subtag: nrz -Description: Lala -Added: 2009-07-29 -%% -Type: language -Subtag: nsa -Description: Sangtam Naga -Added: 2009-07-29 -%% -Type: language -Subtag: nsb -Description: Lower Nossob -Added: 2020-03-28 -%% -Type: language -Subtag: nsc -Description: Nshi -Added: 2009-07-29 -%% -Type: language -Subtag: nsd -Description: Southern Nisu -Added: 2009-07-29 -%% -Type: language -Subtag: nse -Description: Nsenga -Added: 2009-07-29 -%% -Type: language -Subtag: nsf -Description: Northwestern Nisu -Added: 2012-08-12 -%% -Type: language -Subtag: nsg -Description: Ngasa -Added: 2009-07-29 -%% -Type: language -Subtag: nsh -Description: Ngoshie -Added: 2009-07-29 -%% -Type: language -Subtag: nsi -Description: Nigerian Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: nsk -Description: Naskapi -Added: 2009-07-29 -%% -Type: language -Subtag: nsl -Description: Norwegian Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: nsm -Description: Sumi Naga -Added: 2009-07-29 -%% -Type: language -Subtag: nsn -Description: Nehan -Added: 2009-07-29 -%% -Type: language -Subtag: nso -Description: Pedi -Description: Northern Sotho -Description: Sepedi -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: nsp -Description: Nepalese Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: nsq -Description: Northern Sierra Miwok -Added: 2009-07-29 -%% -Type: language -Subtag: nsr -Description: Maritime Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: nss -Description: Nali -Added: 2009-07-29 -%% -Type: language -Subtag: nst -Description: Tase Naga -Added: 2009-07-29 -%% -Type: language -Subtag: nsu -Description: Sierra Negra Nahuatl -Added: 2009-07-29 -%% -Type: language -Subtag: nsv -Description: Southwestern Nisu -Added: 2009-07-29 -%% -Type: language -Subtag: nsw -Description: Navut -Added: 2009-07-29 -%% -Type: language -Subtag: nsx -Description: Nsongo -Added: 2009-07-29 -%% -Type: language -Subtag: nsy -Description: Nasal -Added: 2009-07-29 -%% -Type: language -Subtag: nsz -Description: Nisenan -Added: 2009-07-29 -%% -Type: language -Subtag: ntd -Description: Northern Tidung -Added: 2016-05-30 -%% -Type: language -Subtag: nte -Description: Nathembo -Added: 2009-07-29 -Deprecated: 2024-12-12 -Preferred-Value: eko -%% -Type: language -Subtag: ntg -Description: Ngantangarra -Added: 2013-09-10 -%% -Type: language -Subtag: nti -Description: Natioro -Added: 2009-07-29 -%% -Type: language -Subtag: ntj -Description: Ngaanyatjarra -Added: 2009-07-29 -%% -Type: language -Subtag: ntk -Description: Ikoma-Nata-Isenye -Added: 2009-07-29 -%% -Type: language -Subtag: ntm -Description: Nateni -Added: 2009-07-29 -%% -Type: language -Subtag: nto -Description: Ntomba -Added: 2009-07-29 -%% -Type: language -Subtag: ntp -Description: Northern Tepehuan -Added: 2009-07-29 -%% -Type: language -Subtag: ntr -Description: Delo -Added: 2009-07-29 -%% -Type: language -Subtag: nts -Description: Natagaimas -Added: 2009-07-29 -Deprecated: 2016-05-30 -Preferred-Value: pij -%% -Type: language -Subtag: ntu -Description: Natügu -Added: 2009-07-29 -%% -Type: language -Subtag: ntw -Description: Nottoway -Added: 2009-07-29 -%% -Type: language -Subtag: ntx -Description: Tangkhul Naga (Myanmar) -Added: 2012-08-12 -Comments: see nmf -%% -Type: language -Subtag: nty -Description: Mantsi -Added: 2009-07-29 -%% -Type: language -Subtag: ntz -Description: Natanzi -Added: 2009-07-29 -%% -Type: language -Subtag: nua -Description: Yuanga -Added: 2009-07-29 -%% -Type: language -Subtag: nub -Description: Nubian languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: nuc -Description: Nukuini -Added: 2009-07-29 -%% -Type: language -Subtag: nud -Description: Ngala -Added: 2009-07-29 -%% -Type: language -Subtag: nue -Description: Ngundu -Added: 2009-07-29 -%% -Type: language -Subtag: nuf -Description: Nusu -Added: 2009-07-29 -%% -Type: language -Subtag: nug -Description: Nungali -Added: 2009-07-29 -%% -Type: language -Subtag: nuh -Description: Ndunda -Added: 2009-07-29 -%% -Type: language -Subtag: nui -Description: Ngumbi -Added: 2009-07-29 -%% -Type: language -Subtag: nuj -Description: Nyole -Added: 2009-07-29 -%% -Type: language -Subtag: nuk -Description: Nuu-chah-nulth -Description: Nuuchahnulth -Added: 2011-08-16 -%% -Type: language -Subtag: nul -Description: Nusa Laut -Added: 2009-07-29 -%% -Type: language -Subtag: num -Description: Niuafo'ou -Added: 2009-07-29 -%% -Type: language -Subtag: nun -Description: Anong -Added: 2009-07-29 -%% -Type: language -Subtag: nuo -Description: Nguôn -Added: 2009-07-29 -%% -Type: language -Subtag: nup -Description: Nupe-Nupe-Tako -Added: 2009-07-29 -%% -Type: language -Subtag: nuq -Description: Nukumanu -Added: 2009-07-29 -%% -Type: language -Subtag: nur -Description: Nukuria -Added: 2009-07-29 -%% -Type: language -Subtag: nus -Description: Nuer -Added: 2009-07-29 -%% -Type: language -Subtag: nut -Description: Nung (Viet Nam) -Added: 2009-07-29 -%% -Type: language -Subtag: nuu -Description: Ngbundu -Added: 2009-07-29 -%% -Type: language -Subtag: nuv -Description: Northern Nuni -Added: 2009-07-29 -%% -Type: language -Subtag: nuw -Description: Nguluwan -Added: 2009-07-29 -%% -Type: language -Subtag: nux -Description: Mehek -Added: 2009-07-29 -%% -Type: language -Subtag: nuy -Description: Nunggubuyu -Added: 2009-07-29 -%% -Type: language -Subtag: nuz -Description: Tlamacazapa Nahuatl -Added: 2009-07-29 -%% -Type: language -Subtag: nvh -Description: Nasarian -Added: 2009-07-29 -%% -Type: language -Subtag: nvm -Description: Namiae -Added: 2009-07-29 -%% -Type: language -Subtag: nvo -Description: Nyokon -Added: 2012-08-12 -%% -Type: language -Subtag: nwa -Description: Nawathinehena -Added: 2009-07-29 -%% -Type: language -Subtag: nwb -Description: Nyabwa -Added: 2009-07-29 -%% -Type: language -Subtag: nwc -Description: Classical Newari -Description: Classical Nepal Bhasa -Description: Old Newari -Added: 2005-10-16 -%% -Type: language -Subtag: nwe -Description: Ngwe -Added: 2009-07-29 -%% -Type: language -Subtag: nwg -Description: Ngayawung -Added: 2012-08-12 -%% -Type: language -Subtag: nwi -Description: Southwest Tanna -Added: 2009-07-29 -%% -Type: language -Subtag: nwm -Description: Nyamusa-Molo -Added: 2009-07-29 -%% -Type: language -Subtag: nwo -Description: Nauo -Added: 2012-08-12 -%% -Type: language -Subtag: nwr -Description: Nawaru -Added: 2009-07-29 -%% -Type: language -Subtag: nww -Description: Ndwewe -Added: 2022-02-25 -%% -Type: language -Subtag: nwx -Description: Middle Newar -Added: 2009-07-29 -%% -Type: language -Subtag: nwy -Description: Nottoway-Meherrin -Added: 2009-07-29 -%% -Type: language -Subtag: nxa -Description: Nauete -Added: 2009-07-29 -%% -Type: language -Subtag: nxd -Description: Ngando (Democratic Republic of Congo) -Added: 2009-07-29 -%% -Type: language -Subtag: nxe -Description: Nage -Added: 2009-07-29 -%% -Type: language -Subtag: nxg -Description: Ngad'a -Added: 2009-07-29 -%% -Type: language -Subtag: nxi -Description: Nindi -Added: 2009-07-29 -%% -Type: language -Subtag: nxk -Description: Koki Naga -Added: 2012-08-12 -%% -Type: language -Subtag: nxl -Description: South Nuaulu -Added: 2009-07-29 -%% -Type: language -Subtag: nxm -Description: Numidian -Added: 2009-07-29 -%% -Type: language -Subtag: nxn -Description: Ngawun -Added: 2009-07-29 -%% -Type: language -Subtag: nxo -Description: Ndambomo -Added: 2015-02-12 -%% -Type: language -Subtag: nxq -Description: Naxi -Added: 2011-08-16 -%% -Type: language -Subtag: nxr -Description: Ninggerum -Added: 2009-07-29 -%% -Type: language -Subtag: nxu -Description: Narau -Added: 2009-07-29 -Deprecated: 2020-03-28 -Preferred-Value: bpp -%% -Type: language -Subtag: nxx -Description: Nafri -Added: 2009-07-29 -%% -Type: language -Subtag: nyb -Description: Nyangbo -Added: 2009-07-29 -%% -Type: language -Subtag: nyc -Description: Nyanga-li -Added: 2009-07-29 -%% -Type: language -Subtag: nyd -Description: Nyore -Description: Olunyole -Added: 2009-07-29 -Macrolanguage: luy -%% -Type: language -Subtag: nye -Description: Nyengo -Added: 2009-07-29 -%% -Type: language -Subtag: nyf -Description: Giryama -Description: Kigiryama -Added: 2009-07-29 -%% -Type: language -Subtag: nyg -Description: Nyindu -Added: 2009-07-29 -%% -Type: language -Subtag: nyh -Description: Nyikina -Added: 2009-07-29 -%% -Type: language -Subtag: nyi -Description: Ama (Sudan) -Added: 2009-07-29 -%% -Type: language -Subtag: nyj -Description: Nyanga -Added: 2009-07-29 -%% -Type: language -Subtag: nyk -Description: Nyaneka -Added: 2009-07-29 -%% -Type: language -Subtag: nyl -Description: Nyeu -Added: 2009-07-29 -%% -Type: language -Subtag: nym -Description: Nyamwezi -Added: 2005-10-16 -%% -Type: language -Subtag: nyn -Description: Nyankole -Added: 2005-10-16 -%% -Type: language -Subtag: nyo -Description: Nyoro -Added: 2005-10-16 -%% -Type: language -Subtag: nyp -Description: Nyang'i -Added: 2009-07-29 -%% -Type: language -Subtag: nyq -Description: Nayini -Added: 2009-07-29 -%% -Type: language -Subtag: nyr -Description: Nyiha (Malawi) -Added: 2009-07-29 -%% -Type: language -Subtag: nys -Description: Nyungar -Added: 2009-07-29 -%% -Type: language -Subtag: nyt -Description: Nyawaygi -Added: 2009-07-29 -%% -Type: language -Subtag: nyu -Description: Nyungwe -Added: 2009-07-29 -%% -Type: language -Subtag: nyv -Description: Nyulnyul -Added: 2009-07-29 -%% -Type: language -Subtag: nyw -Description: Nyaw -Added: 2009-07-29 -%% -Type: language -Subtag: nyx -Description: Nganyaywana -Added: 2009-07-29 -%% -Type: language -Subtag: nyy -Description: Nyakyusa-Ngonde -Added: 2009-07-29 -%% -Type: language -Subtag: nza -Description: Tigon Mbembe -Added: 2009-07-29 -%% -Type: language -Subtag: nzb -Description: Njebi -Added: 2009-07-29 -%% -Type: language -Subtag: nzd -Description: Nzadi -Added: 2018-03-08 -%% -Type: language -Subtag: nzi -Description: Nzima -Added: 2005-10-16 -%% -Type: language -Subtag: nzk -Description: Nzakara -Added: 2009-07-29 -%% -Type: language -Subtag: nzm -Description: Zeme Naga -Added: 2009-07-29 -%% -Type: language -Subtag: nzr -Description: Dir-Nyamzak-Mbarimi -Added: 2023-03-17 -%% -Type: language -Subtag: nzs -Description: New Zealand Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: nzu -Description: Teke-Nzikou -Added: 2009-07-29 -%% -Type: language -Subtag: nzy -Description: Nzakambay -Added: 2009-07-29 -%% -Type: language -Subtag: nzz -Description: Nanga Dama Dogon -Added: 2010-03-11 -%% -Type: language -Subtag: oaa -Description: Orok -Added: 2009-07-29 -%% -Type: language -Subtag: oac -Description: Oroch -Added: 2009-07-29 -%% -Type: language -Subtag: oak -Description: Noakhali -Description: Noakhailla -Added: 2025-05-14 -%% -Type: language -Subtag: oar -Description: Old Aramaic (up to 700 BCE) -Description: Ancient Aramaic (up to 700 BCE) -Added: 2009-07-29 -%% -Type: language -Subtag: oav -Description: Old Avar -Added: 2009-07-29 -%% -Type: language -Subtag: obi -Description: Obispeño -Added: 2009-07-29 -%% -Type: language -Subtag: obk -Description: Southern Bontok -Added: 2010-03-11 -Macrolanguage: bnc -%% -Type: language -Subtag: obl -Description: Oblo -Added: 2009-07-29 -%% -Type: language -Subtag: obm -Description: Moabite -Added: 2009-07-29 -%% -Type: language -Subtag: obo -Description: Obo Manobo -Added: 2009-07-29 -%% -Type: language -Subtag: obr -Description: Old Burmese -Added: 2009-07-29 -%% -Type: language -Subtag: obt -Description: Old Breton -Added: 2009-07-29 -%% -Type: language -Subtag: obu -Description: Obulom -Added: 2009-07-29 -%% -Type: language -Subtag: oca -Description: Ocaina -Added: 2009-07-29 -%% -Type: language -Subtag: och -Description: Old Chinese -Added: 2009-07-29 -%% -Type: language -Subtag: ocm -Description: Old Cham -Added: 2021-02-20 -%% -Type: language -Subtag: oco -Description: Old Cornish -Added: 2009-07-29 -%% -Type: language -Subtag: ocu -Description: Atzingo Matlatzinca -Added: 2009-07-29 -%% -Type: language -Subtag: oda -Description: Odut -Added: 2009-07-29 -%% -Type: language -Subtag: odk -Description: Od -Added: 2009-07-29 -%% -Type: language -Subtag: odt -Description: Old Dutch -Added: 2009-07-29 -%% -Type: language -Subtag: odu -Description: Odual -Added: 2009-07-29 -%% -Type: language -Subtag: ofo -Description: Ofo -Added: 2009-07-29 -%% -Type: language -Subtag: ofs -Description: Old Frisian -Added: 2009-07-29 -%% -Type: language -Subtag: ofu -Description: Efutop -Added: 2009-07-29 -%% -Type: language -Subtag: ogb -Description: Ogbia -Added: 2009-07-29 -%% -Type: language -Subtag: ogc -Description: Ogbah -Added: 2009-07-29 -%% -Type: language -Subtag: oge -Description: Old Georgian -Added: 2009-07-29 -%% -Type: language -Subtag: ogg -Description: Ogbogolo -Added: 2009-07-29 -%% -Type: language -Subtag: ogo -Description: Khana -Added: 2009-07-29 -%% -Type: language -Subtag: ogu -Description: Ogbronuagum -Added: 2009-07-29 -%% -Type: language -Subtag: oht -Description: Old Hittite -Added: 2009-07-29 -%% -Type: language -Subtag: ohu -Description: Old Hungarian -Added: 2009-07-29 -%% -Type: language -Subtag: oia -Description: Oirata -Added: 2009-07-29 -%% -Type: language -Subtag: oie -Description: Okolie -Added: 2022-02-25 -%% -Type: language -Subtag: oin -Description: Inebu One -Added: 2009-07-29 -%% -Type: language -Subtag: ojb -Description: Northwestern Ojibwa -Added: 2009-07-29 -Macrolanguage: oj -%% -Type: language -Subtag: ojc -Description: Central Ojibwa -Added: 2009-07-29 -Macrolanguage: oj -%% -Type: language -Subtag: ojg -Description: Eastern Ojibwa -Added: 2009-07-29 -Macrolanguage: oj -%% -Type: language -Subtag: ojp -Description: Old Japanese -Added: 2009-07-29 -%% -Type: language -Subtag: ojs -Description: Severn Ojibwa -Added: 2009-07-29 -Macrolanguage: oj -%% -Type: language -Subtag: ojv -Description: Ontong Java -Added: 2009-07-29 -%% -Type: language -Subtag: ojw -Description: Western Ojibwa -Added: 2009-07-29 -Macrolanguage: oj -%% -Type: language -Subtag: oka -Description: Okanagan -Added: 2009-07-29 -%% -Type: language -Subtag: okb -Description: Okobo -Added: 2009-07-29 -%% -Type: language -Subtag: okc -Description: Kobo -Added: 2021-02-20 -%% -Type: language -Subtag: okd -Description: Okodia -Added: 2009-07-29 -%% -Type: language -Subtag: oke -Description: Okpe (Southwestern Edo) -Added: 2009-07-29 -%% -Type: language -Subtag: okg -Description: Koko Babangk -Added: 2012-08-12 -%% -Type: language -Subtag: okh -Description: Koresh-e Rostam -Added: 2009-07-29 -%% -Type: language -Subtag: oki -Description: Okiek -Added: 2009-07-29 -Macrolanguage: kln -%% -Type: language -Subtag: okj -Description: Oko-Juwoi -Added: 2009-07-29 -%% -Type: language -Subtag: okk -Description: Kwamtim One -Added: 2009-07-29 -%% -Type: language -Subtag: okl -Description: Old Kentish Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: okm -Description: Middle Korean (10th-16th cent.) -Added: 2009-07-29 -%% -Type: language -Subtag: okn -Description: Oki-No-Erabu -Added: 2009-07-29 -%% -Type: language -Subtag: oko -Description: Old Korean (3rd-9th cent.) -Added: 2009-07-29 -%% -Type: language -Subtag: okr -Description: Kirike -Added: 2009-07-29 -%% -Type: language -Subtag: oks -Description: Oko-Eni-Osayen -Added: 2009-07-29 -%% -Type: language -Subtag: oku -Description: Oku -Added: 2009-07-29 -%% -Type: language -Subtag: okv -Description: Orokaiva -Added: 2009-07-29 -%% -Type: language -Subtag: okx -Description: Okpe (Northwestern Edo) -Added: 2009-07-29 -%% -Type: language -Subtag: okz -Description: Old Khmer -Added: 2021-02-20 -%% -Type: language -Subtag: ola -Description: Walungge -Added: 2009-07-29 -%% -Type: language -Subtag: olb -Description: Oli-Bodiman -Added: 2026-04-09 -%% -Type: language -Subtag: old -Description: Mochi -Added: 2009-07-29 -%% -Type: language -Subtag: ole -Description: Olekha -Added: 2009-07-29 -%% -Type: language -Subtag: olk -Description: Olkol -Added: 2013-09-10 -%% -Type: language -Subtag: olm -Description: Oloma -Added: 2009-07-29 -%% -Type: language -Subtag: olo -Description: Livvi -Added: 2009-07-29 -%% -Type: language -Subtag: olr -Description: Olrat -Added: 2009-07-29 -%% -Type: language -Subtag: olt -Description: Old Lithuanian -Added: 2014-02-28 -%% -Type: language -Subtag: olu -Description: Kuvale -Added: 2016-05-30 -%% -Type: language -Subtag: oma -Description: Omaha-Ponca -Added: 2009-07-29 -%% -Type: language -Subtag: omb -Description: East Ambae -Added: 2009-07-29 -%% -Type: language -Subtag: omc -Description: Mochica -Added: 2009-07-29 -%% -Type: language -Subtag: ome -Description: Omejes -Added: 2009-07-29 -Deprecated: 2016-05-30 -%% -Type: language -Subtag: omg -Description: Omagua -Added: 2009-07-29 -%% -Type: language -Subtag: omi -Description: Omi -Added: 2009-07-29 -%% -Type: language -Subtag: omk -Description: Omok -Added: 2009-07-29 -%% -Type: language -Subtag: oml -Description: Ombo -Added: 2009-07-29 -%% -Type: language -Subtag: omn -Description: Minoan -Added: 2009-07-29 -%% -Type: language -Subtag: omo -Description: Utarmbung -Added: 2009-07-29 -%% -Type: language -Subtag: omp -Description: Old Manipuri -Added: 2009-07-29 -%% -Type: language -Subtag: omq -Description: Oto-Manguean languages -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: omr -Description: Old Marathi -Added: 2009-07-29 -%% -Type: language -Subtag: omt -Description: Omotik -Added: 2009-07-29 -%% -Type: language -Subtag: omu -Description: Omurano -Added: 2009-07-29 -%% -Type: language -Subtag: omv -Description: Omotic languages -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: omw -Description: South Tairora -Added: 2009-07-29 -%% -Type: language -Subtag: omx -Description: Old Mon -Added: 2009-07-29 -%% -Type: language -Subtag: omy -Description: Old Malay -Added: 2021-02-20 -%% -Type: language -Subtag: ona -Description: Ona -Added: 2009-07-29 -%% -Type: language -Subtag: onb -Description: Lingao -Added: 2009-07-29 -%% -Type: language -Subtag: one -Description: Oneida -Added: 2009-07-29 -%% -Type: language -Subtag: ong -Description: Olo -Added: 2009-07-29 -%% -Type: language -Subtag: oni -Description: Onin -Added: 2009-07-29 -%% -Type: language -Subtag: onj -Description: Onjob -Added: 2009-07-29 -%% -Type: language -Subtag: onk -Description: Kabore One -Added: 2009-07-29 -%% -Type: language -Subtag: onn -Description: Onobasulu -Added: 2009-07-29 -%% -Type: language -Subtag: ono -Description: Onondaga -Added: 2009-07-29 -%% -Type: language -Subtag: onp -Description: Sartang -Added: 2009-07-29 -%% -Type: language -Subtag: onr -Description: Northern One -Added: 2009-07-29 -%% -Type: language -Subtag: ons -Description: Ono -Added: 2009-07-29 -%% -Type: language -Subtag: ont -Description: Ontenu -Added: 2009-07-29 -%% -Type: language -Subtag: onu -Description: Unua -Added: 2009-07-29 -%% -Type: language -Subtag: onw -Description: Old Nubian -Added: 2009-07-29 -%% -Type: language -Subtag: onx -Description: Onin Based Pidgin -Added: 2009-07-29 -%% -Type: language -Subtag: ood -Description: Tohono O'odham -Added: 2009-07-29 -%% -Type: language -Subtag: oog -Description: Ong -Added: 2009-07-29 -%% -Type: language -Subtag: oon -Description: Önge -Added: 2009-07-29 -%% -Type: language -Subtag: oor -Description: Oorlams -Added: 2009-07-29 -%% -Type: language -Subtag: oos -Description: Old Ossetic -Added: 2009-07-29 -%% -Type: language -Subtag: opa -Description: Okpamheri -Added: 2009-07-29 -%% -Type: language -Subtag: opk -Description: Kopkaka -Added: 2009-07-29 -%% -Type: language -Subtag: opm -Description: Oksapmin -Added: 2009-07-29 -%% -Type: language -Subtag: opo -Description: Opao -Added: 2009-07-29 -%% -Type: language -Subtag: opt -Description: Opata -Added: 2009-07-29 -%% -Type: language -Subtag: opy -Description: Ofayé -Added: 2009-07-29 -%% -Type: language -Subtag: ora -Description: Oroha -Added: 2009-07-29 -%% -Type: language -Subtag: orc -Description: Orma -Added: 2009-07-29 -Macrolanguage: om -%% -Type: language -Subtag: ore -Description: Orejón -Added: 2009-07-29 -%% -Type: language -Subtag: org -Description: Oring -Added: 2009-07-29 -%% -Type: language -Subtag: orh -Description: Oroqen -Added: 2009-07-29 -%% -Type: language -Subtag: orn -Description: Orang Kanaq -Added: 2009-07-29 -Macrolanguage: ms -%% -Type: language -Subtag: oro -Description: Orokolo -Added: 2009-07-29 -%% -Type: language -Subtag: orr -Description: Oruma -Added: 2009-07-29 -%% -Type: language -Subtag: ors -Description: Orang Seletar -Added: 2009-07-29 -Macrolanguage: ms -%% -Type: language -Subtag: ort -Description: Adivasi Oriya -Added: 2009-07-29 -%% -Type: language -Subtag: oru -Description: Ormuri -Added: 2009-07-29 -%% -Type: language -Subtag: orv -Description: Old Russian -Added: 2009-07-29 -%% -Type: language -Subtag: orw -Description: Oro Win -Added: 2009-07-29 -%% -Type: language -Subtag: orx -Description: Oro -Added: 2009-07-29 -%% -Type: language -Subtag: ory -Description: Odia (individual language) -Description: Oriya (individual language) -Added: 2012-08-12 -Macrolanguage: or -%% -Type: language -Subtag: orz -Description: Ormu -Added: 2009-07-29 -%% -Type: language -Subtag: osa -Description: Osage -Added: 2005-10-16 -%% -Type: language -Subtag: osc -Description: Oscan -Added: 2009-07-29 -%% -Type: language -Subtag: osd -Description: Digor Ossetic -Description: Digor -Description: Digor Ossetian -Added: 2026-04-09 -%% -Type: language -Subtag: osi -Description: Osing -Added: 2009-07-29 -%% -Type: language -Subtag: osn -Description: Old Sundanese -Added: 2021-02-20 -%% -Type: language -Subtag: oso -Description: Ososo -Added: 2009-07-29 -%% -Type: language -Subtag: osp -Description: Old Spanish -Added: 2009-07-29 -%% -Type: language -Subtag: ost -Description: Osatu -Added: 2009-07-29 -%% -Type: language -Subtag: osu -Description: Southern One -Added: 2009-07-29 -%% -Type: language -Subtag: osx -Description: Old Saxon -Added: 2009-07-29 -%% -Type: language -Subtag: ota -Description: Ottoman Turkish (1500-1928) -Added: 2005-10-16 -%% -Type: language -Subtag: otb -Description: Old Tibetan -Added: 2009-07-29 -%% -Type: language -Subtag: otd -Description: Ot Danum -Added: 2009-07-29 -%% -Type: language -Subtag: ote -Description: Mezquital Otomi -Added: 2009-07-29 -%% -Type: language -Subtag: oti -Description: Oti -Added: 2009-07-29 -%% -Type: language -Subtag: otk -Description: Old Turkish -Added: 2009-07-29 -%% -Type: language -Subtag: otl -Description: Tilapa Otomi -Added: 2009-07-29 -%% -Type: language -Subtag: otm -Description: Eastern Highland Otomi -Added: 2009-07-29 -%% -Type: language -Subtag: otn -Description: Tenango Otomi -Added: 2009-07-29 -%% -Type: language -Subtag: oto -Description: Otomian languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: otq -Description: Querétaro Otomi -Added: 2009-07-29 -%% -Type: language -Subtag: otr -Description: Otoro -Added: 2009-07-29 -%% -Type: language -Subtag: ots -Description: Estado de México Otomi -Added: 2009-07-29 -%% -Type: language -Subtag: ott -Description: Temoaya Otomi -Added: 2009-07-29 -%% -Type: language -Subtag: otu -Description: Otuke -Added: 2009-07-29 -%% -Type: language -Subtag: otw -Description: Ottawa -Added: 2009-07-29 -Macrolanguage: oj -%% -Type: language -Subtag: otx -Description: Texcatepec Otomi -Added: 2009-07-29 -%% -Type: language -Subtag: oty -Description: Old Tamil -Added: 2009-07-29 -%% -Type: language -Subtag: otz -Description: Ixtenco Otomi -Added: 2009-07-29 -%% -Type: language -Subtag: oua -Description: Tagargrent -Added: 2009-07-29 -%% -Type: language -Subtag: oub -Description: Glio-Oubi -Added: 2009-07-29 -%% -Type: language -Subtag: oue -Description: Oune -Added: 2009-07-29 -%% -Type: language -Subtag: oui -Description: Old Uighur -Added: 2009-07-29 -%% -Type: language -Subtag: oum -Description: Ouma -Added: 2009-07-29 -%% -Type: language -Subtag: oun -Description: ǃOǃung -Added: 2009-07-29 -Deprecated: 2015-02-12 -Preferred-Value: vaj -%% -Type: language -Subtag: ovd -Description: Elfdalian -Description: Övdalian -Added: 2016-06-16 -%% -Type: language -Subtag: owi -Description: Owiniga -Added: 2009-07-29 -%% -Type: language -Subtag: owl -Description: Old Welsh -Added: 2009-07-29 -%% -Type: language -Subtag: oyb -Description: Oy -Added: 2009-07-29 -%% -Type: language -Subtag: oyd -Description: Oyda -Added: 2009-07-29 -%% -Type: language -Subtag: oym -Description: Wayampi -Added: 2009-07-29 -%% -Type: language -Subtag: oyy -Description: Oya'oya -Added: 2009-07-29 -%% -Type: language -Subtag: ozm -Description: Koonzime -Added: 2009-07-29 -%% -Type: language -Subtag: paa -Description: Papuan languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: pab -Description: Parecís -Added: 2009-07-29 -%% -Type: language -Subtag: pac -Description: Pacoh -Added: 2009-07-29 -%% -Type: language -Subtag: pad -Description: Paumarí -Added: 2009-07-29 -%% -Type: language -Subtag: pae -Description: Pagibete -Added: 2009-07-29 -%% -Type: language -Subtag: paf -Description: Paranawát -Added: 2009-07-29 -%% -Type: language -Subtag: pag -Description: Pangasinan -Added: 2005-10-16 -%% -Type: language -Subtag: pah -Description: Tenharim -Added: 2009-07-29 -%% -Type: language -Subtag: pai -Description: Pe -Added: 2009-07-29 -%% -Type: language -Subtag: pak -Description: Parakanã -Added: 2009-07-29 -%% -Type: language -Subtag: pal -Description: Pahlavi -Added: 2005-10-16 -%% -Type: language -Subtag: pam -Description: Pampanga -Description: Kapampangan -Added: 2005-10-16 -%% -Type: language -Subtag: pao -Description: Northern Paiute -Added: 2009-07-29 -%% -Type: language -Subtag: pap -Description: Papiamento -Added: 2005-10-16 -%% -Type: language -Subtag: paq -Description: Parya -Added: 2009-07-29 -%% -Type: language -Subtag: par -Description: Panamint -Description: Timbisha -Added: 2009-07-29 -%% -Type: language -Subtag: pas -Description: Papasena -Added: 2009-07-29 -%% -Type: language -Subtag: pat -Description: Papitalai -Added: 2009-07-29 -Deprecated: 2021-02-20 -Preferred-Value: kxr -%% -Type: language -Subtag: pau -Description: Palauan -Added: 2005-10-16 -%% -Type: language -Subtag: pav -Description: Pakaásnovos -Added: 2009-07-29 -%% -Type: language -Subtag: paw -Description: Pawnee -Added: 2009-07-29 -%% -Type: language -Subtag: pax -Description: Pankararé -Added: 2009-07-29 -%% -Type: language -Subtag: pay -Description: Pech -Added: 2009-07-29 -%% -Type: language -Subtag: paz -Description: Pankararú -Added: 2009-07-29 -%% -Type: language -Subtag: pbb -Description: Páez -Added: 2009-07-29 -%% -Type: language -Subtag: pbc -Description: Patamona -Added: 2009-07-29 -%% -Type: language -Subtag: pbe -Description: Mezontla Popoloca -Added: 2009-07-29 -%% -Type: language -Subtag: pbf -Description: Coyotepec Popoloca -Added: 2009-07-29 -%% -Type: language -Subtag: pbg -Description: Paraujano -Added: 2009-07-29 -%% -Type: language -Subtag: pbh -Description: E'ñapa Woromaipu -Added: 2009-07-29 -%% -Type: language -Subtag: pbi -Description: Parkwa -Added: 2009-07-29 -%% -Type: language -Subtag: pbl -Description: Mak (Nigeria) -Added: 2009-07-29 -%% -Type: language -Subtag: pbm -Description: Puebla Mazatec -Added: 2018-03-08 -Comments: see also maa -%% -Type: language -Subtag: pbn -Description: Kpasam -Added: 2009-07-29 -%% -Type: language -Subtag: pbo -Description: Papel -Added: 2009-07-29 -%% -Type: language -Subtag: pbp -Description: Badyara -Added: 2009-07-29 -%% -Type: language -Subtag: pbr -Description: Pangwa -Added: 2009-07-29 -%% -Type: language -Subtag: pbs -Description: Central Pame -Added: 2009-07-29 -%% -Type: language -Subtag: pbt -Description: Southern Pashto -Added: 2009-07-29 -Macrolanguage: ps -%% -Type: language -Subtag: pbu -Description: Northern Pashto -Added: 2009-07-29 -Macrolanguage: ps -%% -Type: language -Subtag: pbv -Description: Pnar -Added: 2009-07-29 -%% -Type: language -Subtag: pby -Description: Pyu (Papua New Guinea) -Added: 2009-07-29 -%% -Type: language -Subtag: pbz -Description: Palu -Added: 2009-07-29 -Deprecated: 2012-08-12 -%% -Type: language -Subtag: pca -Description: Santa Inés Ahuatempan Popoloca -Added: 2009-07-29 -%% -Type: language -Subtag: pcb -Description: Pear -Added: 2009-07-29 -%% -Type: language -Subtag: pcc -Description: Bouyei -Added: 2009-07-29 -%% -Type: language -Subtag: pcd -Description: Picard -Added: 2009-07-29 -%% -Type: language -Subtag: pce -Description: Ruching Palaung -Added: 2009-07-29 -%% -Type: language -Subtag: pcf -Description: Paliyan -Added: 2009-07-29 -%% -Type: language -Subtag: pcg -Description: Paniya -Added: 2009-07-29 -%% -Type: language -Subtag: pch -Description: Pardhan -Added: 2009-07-29 -%% -Type: language -Subtag: pci -Description: Duruwa -Added: 2009-07-29 -%% -Type: language -Subtag: pcj -Description: Parenga -Added: 2009-07-29 -%% -Type: language -Subtag: pck -Description: Paite Chin -Added: 2009-07-29 -%% -Type: language -Subtag: pcl -Description: Pardhi -Added: 2009-07-29 -%% -Type: language -Subtag: pcm -Description: Nigerian Pidgin -Added: 2009-07-29 -%% -Type: language -Subtag: pcn -Description: Piti -Added: 2009-07-29 -%% -Type: language -Subtag: pcp -Description: Pacahuara -Added: 2009-07-29 -%% -Type: language -Subtag: pcr -Description: Panang -Added: 2009-07-29 -Deprecated: 2013-09-10 -Preferred-Value: adx -%% -Type: language -Subtag: pcw -Description: Pyapun -Added: 2009-07-29 -%% -Type: language -Subtag: pda -Description: Anam -Added: 2009-07-29 -%% -Type: language -Subtag: pdc -Description: Pennsylvania German -Added: 2009-07-29 -%% -Type: language -Subtag: pdi -Description: Pa Di -Added: 2009-07-29 -%% -Type: language -Subtag: pdn -Description: Podena -Description: Fedan -Added: 2009-07-29 -%% -Type: language -Subtag: pdo -Description: Padoe -Added: 2009-07-29 -%% -Type: language -Subtag: pdt -Description: Plautdietsch -Added: 2009-07-29 -%% -Type: language -Subtag: pdu -Description: Kayan -Added: 2009-07-29 -%% -Type: language -Subtag: pea -Description: Peranakan Indonesian -Added: 2009-07-29 -%% -Type: language -Subtag: peb -Description: Eastern Pomo -Added: 2009-07-29 -%% -Type: language -Subtag: ped -Description: Mala (Papua New Guinea) -Added: 2009-07-29 -%% -Type: language -Subtag: pee -Description: Taje -Added: 2009-07-29 -%% -Type: language -Subtag: pef -Description: Northeastern Pomo -Added: 2009-07-29 -%% -Type: language -Subtag: peg -Description: Pengo -Added: 2009-07-29 -%% -Type: language -Subtag: peh -Description: Bonan -Added: 2009-07-29 -%% -Type: language -Subtag: pei -Description: Chichimeca-Jonaz -Added: 2009-07-29 -%% -Type: language -Subtag: pej -Description: Northern Pomo -Added: 2009-07-29 -%% -Type: language -Subtag: pek -Description: Penchal -Added: 2009-07-29 -%% -Type: language -Subtag: pel -Description: Pekal -Added: 2009-07-29 -Macrolanguage: ms -%% -Type: language -Subtag: pem -Description: Phende -Added: 2009-07-29 -%% -Type: language -Subtag: peo -Description: Old Persian (ca. 600-400 B.C.) -Added: 2005-10-16 -%% -Type: language -Subtag: pep -Description: Kunja -Added: 2009-07-29 -%% -Type: language -Subtag: peq -Description: Southern Pomo -Added: 2009-07-29 -%% -Type: language -Subtag: pes -Description: Iranian Persian -Added: 2009-07-29 -Macrolanguage: fa -%% -Type: language -Subtag: pev -Description: Pémono -Added: 2009-07-29 -%% -Type: language -Subtag: pex -Description: Petats -Added: 2009-07-29 -%% -Type: language -Subtag: pey -Description: Petjo -Added: 2009-07-29 -%% -Type: language -Subtag: pez -Description: Eastern Penan -Added: 2009-07-29 -%% -Type: language -Subtag: pfa -Description: Pááfang -Added: 2009-07-29 -%% -Type: language -Subtag: pfe -Description: Pere -Added: 2009-07-29 -%% -Type: language -Subtag: pfl -Description: Pfaelzisch -Added: 2009-07-29 -%% -Type: language -Subtag: pga -Description: Sudanese Creole Arabic -Added: 2009-07-29 -Macrolanguage: ar -%% -Type: language -Subtag: pgd -Description: Gāndhārī -Added: 2015-02-12 -%% -Type: language -Subtag: pgg -Description: Pangwali -Added: 2009-07-29 -%% -Type: language -Subtag: pgi -Description: Pagi -Added: 2009-07-29 -%% -Type: language -Subtag: pgk -Description: Rerep -Added: 2009-07-29 -%% -Type: language -Subtag: pgl -Description: Primitive Irish -Added: 2011-08-16 -%% -Type: language -Subtag: pgn -Description: Paelignian -Added: 2009-07-29 -%% -Type: language -Subtag: pgs -Description: Pangseng -Added: 2009-07-29 -%% -Type: language -Subtag: pgu -Description: Pagu -Added: 2009-07-29 -%% -Type: language -Subtag: pgy -Description: Pongyong -Added: 2009-07-29 -Deprecated: 2012-08-12 -%% -Type: language -Subtag: pgz -Description: Papua New Guinean Sign Language -Added: 2016-05-30 -%% -Type: language -Subtag: pha -Description: Pa-Hng -Added: 2009-07-29 -%% -Type: language -Subtag: phd -Description: Phudagi -Added: 2009-07-29 -%% -Type: language -Subtag: phg -Description: Phuong -Added: 2009-07-29 -%% -Type: language -Subtag: phh -Description: Phukha -Added: 2009-07-29 -%% -Type: language -Subtag: phi -Description: Philippine languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: phj -Description: Pahari -Added: 2022-02-25 -%% -Type: language -Subtag: phk -Description: Phake -Added: 2009-07-29 -%% -Type: language -Subtag: phl -Description: Phalura -Description: Palula -Added: 2009-07-29 -%% -Type: language -Subtag: phm -Description: Phimbi -Added: 2009-07-29 -%% -Type: language -Subtag: phn -Description: Phoenician -Added: 2005-10-16 -%% -Type: language -Subtag: pho -Description: Phunoi -Added: 2009-07-29 -%% -Type: language -Subtag: phq -Description: Phana' -Added: 2009-07-29 -%% -Type: language -Subtag: phr -Description: Pahari-Potwari -Added: 2009-07-29 -Macrolanguage: lah -%% -Type: language -Subtag: pht -Description: Phu Thai -Added: 2009-07-29 -%% -Type: language -Subtag: phu -Description: Phuan -Added: 2009-07-29 -%% -Type: language -Subtag: phv -Description: Pahlavani -Added: 2009-07-29 -%% -Type: language -Subtag: phw -Description: Phangduwali -Added: 2009-07-29 -%% -Type: language -Subtag: pia -Description: Pima Bajo -Added: 2009-07-29 -%% -Type: language -Subtag: pib -Description: Yine -Added: 2009-07-29 -%% -Type: language -Subtag: pic -Description: Pinji -Added: 2009-07-29 -%% -Type: language -Subtag: pid -Description: Piaroa -Added: 2009-07-29 -%% -Type: language -Subtag: pie -Description: Piro -Added: 2009-07-29 -%% -Type: language -Subtag: pif -Description: Pingelapese -Added: 2009-07-29 -%% -Type: language -Subtag: pig -Description: Pisabo -Added: 2009-07-29 -%% -Type: language -Subtag: pih -Description: Pitcairn-Norfolk -Added: 2009-07-29 -%% -Type: language -Subtag: pii -Description: Pini -Added: 2009-07-29 -Deprecated: 2022-02-25 -%% -Type: language -Subtag: pij -Description: Pijao -Added: 2009-07-29 -%% -Type: language -Subtag: pil -Description: Yom -Added: 2009-07-29 -%% -Type: language -Subtag: pim -Description: Powhatan -Added: 2009-07-29 -%% -Type: language -Subtag: pin -Description: Piame -Added: 2009-07-29 -%% -Type: language -Subtag: pio -Description: Piapoco -Added: 2009-07-29 -%% -Type: language -Subtag: pip -Description: Pero -Added: 2009-07-29 -%% -Type: language -Subtag: pir -Description: Piratapuyo -Added: 2009-07-29 -%% -Type: language -Subtag: pis -Description: Pijin -Added: 2009-07-29 -%% -Type: language -Subtag: pit -Description: Pitta Pitta -Added: 2009-07-29 -%% -Type: language -Subtag: piu -Description: Pintupi-Luritja -Added: 2009-07-29 -%% -Type: language -Subtag: piv -Description: Pileni -Description: Vaeakau-Taumako -Added: 2009-07-29 -%% -Type: language -Subtag: piw -Description: Pimbwe -Added: 2009-07-29 -%% -Type: language -Subtag: pix -Description: Piu -Added: 2009-07-29 -%% -Type: language -Subtag: piy -Description: Piya-Kwonci -Added: 2009-07-29 -%% -Type: language -Subtag: piz -Description: Pije -Added: 2009-07-29 -%% -Type: language -Subtag: pjt -Description: Pitjantjatjara -Added: 2009-07-29 -%% -Type: language -Subtag: pka -Description: Ardhamāgadhī Prākrit -Added: 2009-07-29 -%% -Type: language -Subtag: pkb -Description: Pokomo -Description: Kipfokomo -Added: 2009-07-29 -%% -Type: language -Subtag: pkc -Description: Paekche -Added: 2009-07-29 -%% -Type: language -Subtag: pkg -Description: Pak-Tong -Added: 2009-07-29 -%% -Type: language -Subtag: pkh -Description: Pankhu -Added: 2009-07-29 -%% -Type: language -Subtag: pkn -Description: Pakanha -Added: 2009-07-29 -%% -Type: language -Subtag: pko -Description: Pökoot -Added: 2009-07-29 -Macrolanguage: kln -%% -Type: language -Subtag: pkp -Description: Pukapuka -Added: 2009-07-29 -%% -Type: language -Subtag: pkr -Description: Attapady Kurumba -Added: 2009-07-29 -%% -Type: language -Subtag: pks -Description: Pakistan Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: pkt -Description: Maleng -Added: 2009-07-29 -%% -Type: language -Subtag: pku -Description: Paku -Added: 2009-07-29 -%% -Type: language -Subtag: pla -Description: Miani -Added: 2009-07-29 -%% -Type: language -Subtag: plb -Description: Polonombauk -Added: 2009-07-29 -%% -Type: language -Subtag: plc -Description: Central Palawano -Added: 2009-07-29 -%% -Type: language -Subtag: pld -Description: Polari -Added: 2009-07-29 -%% -Type: language -Subtag: ple -Description: Palu'e -Added: 2009-07-29 -%% -Type: language -Subtag: plf -Description: Central Malayo-Polynesian languages -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: plg -Description: Pilagá -Added: 2009-07-29 -%% -Type: language -Subtag: plh -Description: Paulohi -Added: 2009-07-29 -%% -Type: language -Subtag: plj -Description: Polci -Added: 2009-07-29 -Deprecated: 2023-03-17 -Comments: see nzr, pze, uly, zlu -%% -Type: language -Subtag: plk -Description: Kohistani Shina -Added: 2009-07-29 -%% -Type: language -Subtag: pll -Description: Shwe Palaung -Added: 2009-07-29 -%% -Type: language -Subtag: pln -Description: Palenquero -Added: 2009-07-29 -%% -Type: language -Subtag: plo -Description: Oluta Popoluca -Added: 2009-07-29 -%% -Type: language -Subtag: plp -Description: Palpa -Added: 2009-07-29 -Deprecated: 2020-03-28 -%% -Type: language -Subtag: plq -Description: Palaic -Added: 2009-07-29 -%% -Type: language -Subtag: plr -Description: Palaka Senoufo -Added: 2009-07-29 -%% -Type: language -Subtag: pls -Description: San Marcos Tlacoyalco Popoloca -Description: San Marcos Tlalcoyalco Popoloca -Added: 2009-07-29 -%% -Type: language -Subtag: plt -Description: Plateau Malagasy -Added: 2009-07-29 -Macrolanguage: mg -%% -Type: language -Subtag: plu -Description: Palikúr -Added: 2009-07-29 -%% -Type: language -Subtag: plv -Description: Southwest Palawano -Added: 2009-07-29 -%% -Type: language -Subtag: plw -Description: Brooke's Point Palawano -Added: 2009-07-29 -%% -Type: language -Subtag: ply -Description: Bolyu -Added: 2009-07-29 -%% -Type: language -Subtag: plz -Description: Paluan -Added: 2009-07-29 -%% -Type: language -Subtag: pma -Description: Paama -Added: 2009-07-29 -%% -Type: language -Subtag: pmb -Description: Pambia -Added: 2009-07-29 -%% -Type: language -Subtag: pmc -Description: Palumata -Added: 2009-07-29 -Deprecated: 2016-05-30 -Preferred-Value: huw -%% -Type: language -Subtag: pmd -Description: Pallanganmiddang -Added: 2012-08-12 -%% -Type: language -Subtag: pme -Description: Pwaamei -Added: 2009-07-29 -%% -Type: language -Subtag: pmf -Description: Pamona -Added: 2009-07-29 -%% -Type: language -Subtag: pmh -Description: Māhārāṣṭri Prākrit -Added: 2009-07-29 -%% -Type: language -Subtag: pmi -Description: Northern Pumi -Added: 2009-07-29 -%% -Type: language -Subtag: pmj -Description: Southern Pumi -Added: 2009-07-29 -%% -Type: language -Subtag: pmk -Description: Pamlico -Added: 2009-07-29 -Deprecated: 2023-03-17 -Preferred-Value: crr -%% -Type: language -Subtag: pml -Description: Lingua Franca -Added: 2009-07-29 -%% -Type: language -Subtag: pmm -Description: Pomo -Added: 2009-07-29 -%% -Type: language -Subtag: pmn -Description: Pam -Added: 2009-07-29 -%% -Type: language -Subtag: pmo -Description: Pom -Added: 2009-07-29 -%% -Type: language -Subtag: pmq -Description: Northern Pame -Added: 2009-07-29 -%% -Type: language -Subtag: pmr -Description: Paynamar -Added: 2009-07-29 -%% -Type: language -Subtag: pms -Description: Piemontese -Added: 2009-07-29 -%% -Type: language -Subtag: pmt -Description: Tuamotuan -Added: 2009-07-29 -%% -Type: language -Subtag: pmu -Description: Mirpur Panjabi -Added: 2009-07-29 -Deprecated: 2015-02-12 -Preferred-Value: phr -Macrolanguage: lah -%% -Type: language -Subtag: pmw -Description: Plains Miwok -Added: 2009-07-29 -%% -Type: language -Subtag: pmx -Description: Poumei Naga -Added: 2009-07-29 -%% -Type: language -Subtag: pmy -Description: Papuan Malay -Added: 2009-07-29 -%% -Type: language -Subtag: pmz -Description: Southern Pame -Added: 2009-07-29 -%% -Type: language -Subtag: pna -Description: Punan Bah-Biau -Added: 2009-07-29 -%% -Type: language -Subtag: pnb -Description: Western Panjabi -Added: 2009-07-29 -Macrolanguage: lah -%% -Type: language -Subtag: pnc -Description: Pannei -Added: 2009-07-29 -%% -Type: language -Subtag: pnd -Description: Mpinda -Added: 2019-04-16 -%% -Type: language -Subtag: pne -Description: Western Penan -Added: 2009-07-29 -%% -Type: language -Subtag: png -Description: Pangu -Description: Pongu -Added: 2009-07-29 -%% -Type: language -Subtag: pnh -Description: Penrhyn -Added: 2009-07-29 -%% -Type: language -Subtag: pni -Description: Aoheng -Added: 2009-07-29 -%% -Type: language -Subtag: pnj -Description: Pinjarup -Added: 2013-09-10 -%% -Type: language -Subtag: pnk -Description: Paunaka -Added: 2012-08-12 -%% -Type: language -Subtag: pnl -Description: Paleni -Added: 2013-09-10 -Comments: see also wbf -%% -Type: language -Subtag: pnm -Description: Punan Batu 1 -Added: 2009-07-29 -%% -Type: language -Subtag: pnn -Description: Pinai-Hagahai -Added: 2009-07-29 -%% -Type: language -Subtag: pno -Description: Panobo -Added: 2009-07-29 -%% -Type: language -Subtag: pnp -Description: Pancana -Added: 2009-07-29 -%% -Type: language -Subtag: pnq -Description: Pana (Burkina Faso) -Added: 2009-07-29 -%% -Type: language -Subtag: pnr -Description: Panim -Added: 2009-07-29 -%% -Type: language -Subtag: pns -Description: Ponosakan -Added: 2009-07-29 -%% -Type: language -Subtag: pnt -Description: Pontic -Added: 2009-07-29 -%% -Type: language -Subtag: pnu -Description: Jiongnai Bunu -Added: 2009-07-29 -%% -Type: language -Subtag: pnv -Description: Pinigura -Added: 2009-07-29 -%% -Type: language -Subtag: pnw -Description: Banyjima -Description: Panytyima -Added: 2009-07-29 -%% -Type: language -Subtag: pnx -Description: Phong-Kniang -Added: 2009-07-29 -%% -Type: language -Subtag: pny -Description: Pinyin -Added: 2009-07-29 -Comments: a Niger-Congo language spoken in Cameroon; not to be confused - with the Pinyin romanization systems used for Chinese and Tibetan -%% -Type: language -Subtag: pnz -Description: Pana (Central African Republic) -Added: 2009-07-29 -%% -Type: language -Subtag: poc -Description: Poqomam -Added: 2009-07-29 -%% -Type: language -Subtag: pod -Description: Ponares -Added: 2009-07-29 -Deprecated: 2016-05-30 -%% -Type: language -Subtag: poe -Description: San Juan Atzingo Popoloca -Added: 2009-07-29 -%% -Type: language -Subtag: pof -Description: Poke -Added: 2009-07-29 -%% -Type: language -Subtag: pog -Description: Potiguára -Added: 2009-07-29 -%% -Type: language -Subtag: poh -Description: Poqomchi' -Added: 2009-07-29 -%% -Type: language -Subtag: poi -Description: Highland Popoluca -Added: 2009-07-29 -%% -Type: language -Subtag: pok -Description: Pokangá -Added: 2009-07-29 -%% -Type: language -Subtag: pom -Description: Southeastern Pomo -Added: 2009-07-29 -%% -Type: language -Subtag: pon -Description: Pohnpeian -Added: 2005-10-16 -%% -Type: language -Subtag: poo -Description: Central Pomo -Added: 2009-07-29 -%% -Type: language -Subtag: pop -Description: Pwapwâ -Added: 2009-07-29 -%% -Type: language -Subtag: poq -Description: Texistepec Popoluca -Added: 2009-07-29 -%% -Type: language -Subtag: pos -Description: Sayula Popoluca -Added: 2009-07-29 -%% -Type: language -Subtag: pot -Description: Potawatomi -Added: 2009-07-29 -%% -Type: language -Subtag: pov -Description: Upper Guinea Crioulo -Added: 2009-07-29 -%% -Type: language -Subtag: pow -Description: San Felipe Otlaltepec Popoloca -Added: 2009-07-29 -%% -Type: language -Subtag: pox -Description: Polabian -Added: 2009-07-29 -%% -Type: language -Subtag: poy -Description: Pogolo -Added: 2009-07-29 -%% -Type: language -Subtag: poz -Description: Malayo-Polynesian languages -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: ppa -Description: Pao -Added: 2009-07-29 -Deprecated: 2016-05-30 -Preferred-Value: bfy -%% -Type: language -Subtag: ppe -Description: Papi -Added: 2009-07-29 -%% -Type: language -Subtag: ppi -Description: Paipai -Added: 2009-07-29 -%% -Type: language -Subtag: ppk -Description: Uma -Added: 2009-07-29 -%% -Type: language -Subtag: ppl -Description: Pipil -Description: Nicarao -Added: 2009-07-29 -%% -Type: language -Subtag: ppm -Description: Papuma -Added: 2009-07-29 -%% -Type: language -Subtag: ppn -Description: Papapana -Added: 2009-07-29 -%% -Type: language -Subtag: ppo -Description: Folopa -Added: 2009-07-29 -%% -Type: language -Subtag: ppp -Description: Pelende -Added: 2009-07-29 -%% -Type: language -Subtag: ppq -Description: Pei -Added: 2009-07-29 -%% -Type: language -Subtag: ppr -Description: Piru -Added: 2009-07-29 -Deprecated: 2013-09-10 -Preferred-Value: lcq -%% -Type: language -Subtag: pps -Description: San Luís Temalacayuca Popoloca -Added: 2009-07-29 -%% -Type: language -Subtag: ppt -Description: Pare -Added: 2009-07-29 -%% -Type: language -Subtag: ppu -Description: Papora -Added: 2009-07-29 -%% -Type: language -Subtag: pqa -Description: Pa'a -Added: 2009-07-29 -%% -Type: language -Subtag: pqe -Description: Eastern Malayo-Polynesian languages -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: pqm -Description: Malecite-Passamaquoddy -Added: 2009-07-29 -%% -Type: language -Subtag: pqw -Description: Western Malayo-Polynesian languages -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: pra -Description: Prakrit languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: prb -Description: Lua' -Added: 2009-07-29 -Deprecated: 2017-02-23 -%% -Type: language -Subtag: prc -Description: Parachi -Added: 2009-07-29 -%% -Type: language -Subtag: prd -Description: Parsi-Dari -Added: 2009-07-29 -%% -Type: language -Subtag: pre -Description: Principense -Added: 2009-07-29 -%% -Type: language -Subtag: prf -Description: Paranan -Added: 2010-03-11 -%% -Type: language -Subtag: prg -Description: Prussian -Added: 2009-07-29 -%% -Type: language -Subtag: prh -Description: Porohanon -Added: 2009-07-29 -%% -Type: language -Subtag: pri -Description: Paicî -Added: 2009-07-29 -%% -Type: language -Subtag: prk -Description: Parauk -Added: 2009-07-29 -%% -Type: language -Subtag: prl -Description: Peruvian Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: prm -Description: Kibiri -Added: 2009-07-29 -%% -Type: language -Subtag: prn -Description: Prasuni -Added: 2009-07-29 -%% -Type: language -Subtag: pro -Description: Old Provençal (to 1500) -Description: Old Occitan (to 1500) -Added: 2005-10-16 -%% -Type: language -Subtag: prp -Description: Parsi -Added: 2009-07-29 -Deprecated: 2023-03-17 -Preferred-Value: gu -%% -Type: language -Subtag: prq -Description: Ashéninka Perené -Added: 2009-07-29 -%% -Type: language -Subtag: prr -Description: Puri -Added: 2009-07-29 -%% -Type: language -Subtag: prs -Description: Dari -Description: Afghan Persian -Added: 2009-07-29 -Macrolanguage: fa -%% -Type: language -Subtag: prt -Description: Phai -Added: 2009-07-29 -%% -Type: language -Subtag: pru -Description: Puragi -Added: 2009-07-29 -%% -Type: language -Subtag: prw -Description: Parawen -Added: 2009-07-29 -%% -Type: language -Subtag: prx -Description: Purik -Added: 2009-07-29 -%% -Type: language -Subtag: pry -Description: Pray 3 -Added: 2009-07-29 -Deprecated: 2016-05-30 -Preferred-Value: prt -%% -Type: language -Subtag: prz -Description: Providencia Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: psa -Description: Asue Awyu -Added: 2009-07-29 -%% -Type: language -Subtag: psc -Description: Iranian Sign Language -Description: Persian Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: psd -Description: Plains Indian Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: pse -Description: Central Malay -Added: 2009-07-29 -Macrolanguage: ms -%% -Type: language -Subtag: psg -Description: Penang Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: psh -Description: Southwest Pashai -Description: Southwest Pashayi -Added: 2009-07-29 -%% -Type: language -Subtag: psi -Description: Southeast Pashai -Description: Southeast Pashayi -Added: 2009-07-29 -%% -Type: language -Subtag: psl -Description: Puerto Rican Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: psm -Description: Pauserna -Added: 2009-07-29 -%% -Type: language -Subtag: psn -Description: Panasuan -Added: 2009-07-29 -%% -Type: language -Subtag: pso -Description: Polish Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: psp -Description: Philippine Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: psq -Description: Pasi -Added: 2009-07-29 -%% -Type: language -Subtag: psr -Description: Portuguese Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: pss -Description: Kaulong -Added: 2009-07-29 -%% -Type: language -Subtag: pst -Description: Central Pashto -Added: 2009-07-29 -Macrolanguage: ps -%% -Type: language -Subtag: psu -Description: Sauraseni Prākrit -Added: 2009-07-29 -%% -Type: language -Subtag: psw -Description: Port Sandwich -Added: 2009-07-29 -%% -Type: language -Subtag: psy -Description: Piscataway -Added: 2009-07-29 -%% -Type: language -Subtag: pta -Description: Pai Tavytera -Added: 2009-07-29 -%% -Type: language -Subtag: pth -Description: Pataxó Hã-Ha-Hãe -Added: 2009-07-29 -%% -Type: language -Subtag: pti -Description: Pindiini -Description: Wangkatha -Added: 2009-07-29 -%% -Type: language -Subtag: ptn -Description: Patani -Added: 2009-07-29 -%% -Type: language -Subtag: pto -Description: Zo'é -Added: 2009-07-29 -%% -Type: language -Subtag: ptp -Description: Patep -Added: 2009-07-29 -%% -Type: language -Subtag: ptq -Description: Pattapu -Added: 2014-04-06 -%% -Type: language -Subtag: ptr -Description: Piamatsina -Added: 2009-07-29 -%% -Type: language -Subtag: ptt -Description: Enrekang -Added: 2009-07-29 -%% -Type: language -Subtag: ptu -Description: Bambam -Added: 2009-07-29 -%% -Type: language -Subtag: ptv -Description: Port Vato -Added: 2009-07-29 -%% -Type: language -Subtag: ptw -Description: Pentlatch -Added: 2009-07-29 -%% -Type: language -Subtag: pty -Description: Pathiya -Added: 2009-07-29 -%% -Type: language -Subtag: pua -Description: Western Highland Purepecha -Added: 2009-07-29 -%% -Type: language -Subtag: pub -Description: Purum -Added: 2009-07-29 -%% -Type: language -Subtag: puc -Description: Punan Merap -Added: 2009-07-29 -%% -Type: language -Subtag: pud -Description: Punan Aput -Added: 2009-07-29 -%% -Type: language -Subtag: pue -Description: Puelche -Added: 2009-07-29 -%% -Type: language -Subtag: puf -Description: Punan Merah -Added: 2009-07-29 -%% -Type: language -Subtag: pug -Description: Phuie -Added: 2009-07-29 -%% -Type: language -Subtag: pui -Description: Puinave -Added: 2009-07-29 -%% -Type: language -Subtag: puj -Description: Punan Tubu -Added: 2009-07-29 -%% -Type: language -Subtag: puk -Description: Pu Ko -Added: 2009-07-29 -Deprecated: 2017-02-23 -%% -Type: language -Subtag: pum -Description: Puma -Added: 2009-07-29 -%% -Type: language -Subtag: puo -Description: Puoc -Added: 2009-07-29 -%% -Type: language -Subtag: pup -Description: Pulabu -Added: 2009-07-29 -%% -Type: language -Subtag: puq -Description: Puquina -Added: 2009-07-29 -%% -Type: language -Subtag: pur -Description: Puruborá -Added: 2009-07-29 -%% -Type: language -Subtag: put -Description: Putoh -Added: 2009-07-29 -%% -Type: language -Subtag: puu -Description: Punu -Added: 2009-07-29 -%% -Type: language -Subtag: puw -Description: Puluwatese -Added: 2009-07-29 -%% -Type: language -Subtag: pux -Description: Puare -Added: 2009-07-29 -%% -Type: language -Subtag: puy -Description: Purisimeño -Added: 2009-07-29 -%% -Type: language -Subtag: puz -Description: Purum Naga -Added: 2009-07-29 -Deprecated: 2014-02-28 -Preferred-Value: pub -%% -Type: language -Subtag: pwa -Description: Pawaia -Added: 2009-07-29 -%% -Type: language -Subtag: pwb -Description: Panawa -Added: 2009-07-29 -%% -Type: language -Subtag: pwg -Description: Gapapaiwa -Added: 2009-07-29 -%% -Type: language -Subtag: pwi -Description: Patwin -Added: 2013-09-10 -%% -Type: language -Subtag: pwm -Description: Molbog -Added: 2009-07-29 -%% -Type: language -Subtag: pwn -Description: Paiwan -Added: 2009-07-29 -%% -Type: language -Subtag: pwo -Description: Pwo Western Karen -Added: 2009-07-29 -%% -Type: language -Subtag: pwr -Description: Powari -Added: 2009-07-29 -%% -Type: language -Subtag: pww -Description: Pwo Northern Karen -Added: 2009-07-29 -%% -Type: language -Subtag: pxm -Description: Quetzaltepec Mixe -Added: 2009-07-29 -%% -Type: language -Subtag: pye -Description: Pye Krumen -Added: 2009-07-29 -%% -Type: language -Subtag: pym -Description: Fyam -Added: 2009-07-29 -%% -Type: language -Subtag: pyn -Description: Poyanáwa -Added: 2009-07-29 -%% -Type: language -Subtag: pys -Description: Paraguayan Sign Language -Description: Lengua de Señas del Paraguay -Added: 2010-03-11 -%% -Type: language -Subtag: pyu -Description: Puyuma -Added: 2009-07-29 -%% -Type: language -Subtag: pyx -Description: Pyu (Myanmar) -Added: 2009-07-29 -%% -Type: language -Subtag: pyy -Description: Pyen -Added: 2009-07-29 -%% -Type: language -Subtag: pze -Description: Pesse -Added: 2023-03-17 -%% -Type: language -Subtag: pzh -Description: Pazeh -Added: 2022-02-25 -%% -Type: language -Subtag: pzn -Description: Jejara Naga -Description: Para Naga -Added: 2009-07-29 -%% -Type: language -Subtag: qaa..qtz -Description: Private use -Added: 2005-10-16 -Scope: private-use -%% -Type: language -Subtag: qua -Description: Quapaw -Added: 2009-07-29 -%% -Type: language -Subtag: qub -Description: Huallaga Huánuco Quechua -Added: 2009-07-29 -Macrolanguage: qu -%% -Type: language -Subtag: quc -Description: K'iche' -Description: Quiché -Added: 2009-07-29 -%% -Type: language -Subtag: qud -Description: Calderón Highland Quichua -Added: 2009-07-29 -Macrolanguage: qu -%% -Type: language -Subtag: quf -Description: Lambayeque Quechua -Added: 2009-07-29 -Macrolanguage: qu -%% -Type: language -Subtag: qug -Description: Chimborazo Highland Quichua -Added: 2009-07-29 -Macrolanguage: qu -%% -Type: language -Subtag: quh -Description: South Bolivian Quechua -Added: 2009-07-29 -Macrolanguage: qu -%% -Type: language -Subtag: qui -Description: Quileute -Added: 2009-07-29 -%% -Type: language -Subtag: quk -Description: Chachapoyas Quechua -Added: 2009-07-29 -Macrolanguage: qu -%% -Type: language -Subtag: qul -Description: North Bolivian Quechua -Added: 2009-07-29 -Macrolanguage: qu -%% -Type: language -Subtag: qum -Description: Sipacapense -Added: 2009-07-29 -%% -Type: language -Subtag: qun -Description: Quinault -Added: 2009-07-29 -%% -Type: language -Subtag: qup -Description: Southern Pastaza Quechua -Added: 2009-07-29 -Macrolanguage: qu -%% -Type: language -Subtag: quq -Description: Quinqui -Added: 2009-07-29 -%% -Type: language -Subtag: qur -Description: Yanahuanca Pasco Quechua -Added: 2009-07-29 -Macrolanguage: qu -%% -Type: language -Subtag: qus -Description: Santiago del Estero Quichua -Added: 2009-07-29 -Macrolanguage: qu -%% -Type: language -Subtag: quv -Description: Sacapulteco -Added: 2009-07-29 -%% -Type: language -Subtag: quw -Description: Tena Lowland Quichua -Added: 2009-07-29 -Macrolanguage: qu -%% -Type: language -Subtag: qux -Description: Yauyos Quechua -Added: 2009-07-29 -Macrolanguage: qu -%% -Type: language -Subtag: quy -Description: Ayacucho Quechua -Added: 2009-07-29 -Macrolanguage: qu -%% -Type: language -Subtag: quz -Description: Cusco Quechua -Added: 2009-07-29 -Macrolanguage: qu -%% -Type: language -Subtag: qva -Description: Ambo-Pasco Quechua -Added: 2009-07-29 -Macrolanguage: qu -%% -Type: language -Subtag: qvc -Description: Cajamarca Quechua -Added: 2009-07-29 -Macrolanguage: qu -%% -Type: language -Subtag: qve -Description: Eastern Apurímac Quechua -Added: 2009-07-29 -Macrolanguage: qu -%% -Type: language -Subtag: qvh -Description: Huamalíes-Dos de Mayo Huánuco Quechua -Added: 2009-07-29 -Macrolanguage: qu -%% -Type: language -Subtag: qvi -Description: Imbabura Highland Quichua -Added: 2009-07-29 -Macrolanguage: qu -%% -Type: language -Subtag: qvj -Description: Loja Highland Quichua -Added: 2009-07-29 -Macrolanguage: qu -%% -Type: language -Subtag: qvl -Description: Cajatambo North Lima Quechua -Added: 2009-07-29 -Macrolanguage: qu -%% -Type: language -Subtag: qvm -Description: Margos-Yarowilca-Lauricocha Quechua -Added: 2009-07-29 -Macrolanguage: qu -%% -Type: language -Subtag: qvn -Description: North Junín Quechua -Added: 2009-07-29 -Macrolanguage: qu -%% -Type: language -Subtag: qvo -Description: Napo Lowland Quechua -Added: 2009-07-29 -Macrolanguage: qu -%% -Type: language -Subtag: qvp -Description: Pacaraos Quechua -Added: 2009-07-29 -Macrolanguage: qu -%% -Type: language -Subtag: qvs -Description: San Martín Quechua -Added: 2009-07-29 -Macrolanguage: qu -%% -Type: language -Subtag: qvw -Description: Huaylla Wanca Quechua -Added: 2009-07-29 -Macrolanguage: qu -%% -Type: language -Subtag: qvy -Description: Queyu -Added: 2009-07-29 -%% -Type: language -Subtag: qvz -Description: Northern Pastaza Quichua -Added: 2009-07-29 -Macrolanguage: qu -%% -Type: language -Subtag: qwa -Description: Corongo Ancash Quechua -Added: 2009-07-29 -Macrolanguage: qu -%% -Type: language -Subtag: qwc -Description: Classical Quechua -Added: 2009-07-29 -Macrolanguage: qu -%% -Type: language -Subtag: qwe -Description: Quechuan (family) -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: qwh -Description: Huaylas Ancash Quechua -Added: 2009-07-29 -Macrolanguage: qu -%% -Type: language -Subtag: qwm -Description: Kuman (Russia) -Added: 2009-07-29 -%% -Type: language -Subtag: qws -Description: Sihuas Ancash Quechua -Added: 2009-07-29 -Macrolanguage: qu -%% -Type: language -Subtag: qwt -Description: Kwalhioqua-Tlatskanai -Added: 2009-07-29 -%% -Type: language -Subtag: qxa -Description: Chiquián Ancash Quechua -Added: 2009-07-29 -Macrolanguage: qu -%% -Type: language -Subtag: qxc -Description: Chincha Quechua -Added: 2009-07-29 -Macrolanguage: qu -%% -Type: language -Subtag: qxh -Description: Panao Huánuco Quechua -Added: 2009-07-29 -Macrolanguage: qu -%% -Type: language -Subtag: qxl -Description: Salasaca Highland Quichua -Added: 2009-07-29 -Macrolanguage: qu -%% -Type: language -Subtag: qxn -Description: Northern Conchucos Ancash Quechua -Added: 2009-07-29 -Macrolanguage: qu -%% -Type: language -Subtag: qxo -Description: Southern Conchucos Ancash Quechua -Added: 2009-07-29 -Macrolanguage: qu -%% -Type: language -Subtag: qxp -Description: Puno Quechua -Added: 2009-07-29 -Macrolanguage: qu -%% -Type: language -Subtag: qxq -Description: Qashqa'i -Added: 2009-07-29 -%% -Type: language -Subtag: qxr -Description: Cañar Highland Quichua -Added: 2009-07-29 -Macrolanguage: qu -%% -Type: language -Subtag: qxs -Description: Southern Qiang -Added: 2009-07-29 -%% -Type: language -Subtag: qxt -Description: Santa Ana de Tusi Pasco Quechua -Added: 2009-07-29 -Macrolanguage: qu -%% -Type: language -Subtag: qxu -Description: Arequipa-La Unión Quechua -Added: 2009-07-29 -Macrolanguage: qu -%% -Type: language -Subtag: qxw -Description: Jauja Wanca Quechua -Added: 2009-07-29 -Macrolanguage: qu -%% -Type: language -Subtag: qya -Description: Quenya -Added: 2009-07-29 -%% -Type: language -Subtag: qyp -Description: Quiripi -Added: 2009-07-29 -%% -Type: language -Subtag: raa -Description: Dungmali -Added: 2009-07-29 -%% -Type: language -Subtag: rab -Description: Camling -Added: 2009-07-29 -%% -Type: language -Subtag: rac -Description: Rasawa -Added: 2009-07-29 -%% -Type: language -Subtag: rad -Description: Rade -Added: 2009-07-29 -%% -Type: language -Subtag: raf -Description: Western Meohang -Added: 2009-07-29 -%% -Type: language -Subtag: rag -Description: Logooli -Description: Lulogooli -Added: 2009-07-29 -Macrolanguage: luy -%% -Type: language -Subtag: rah -Description: Rabha -Added: 2009-07-29 -%% -Type: language -Subtag: rai -Description: Ramoaaina -Added: 2009-07-29 -%% -Type: language -Subtag: raj -Description: Rajasthani -Added: 2005-10-16 -Scope: macrolanguage -%% -Type: language -Subtag: rak -Description: Tulu-Bohuai -Added: 2009-07-29 -%% -Type: language -Subtag: ral -Description: Ralte -Added: 2009-07-29 -%% -Type: language -Subtag: ram -Description: Canela -Added: 2009-07-29 -%% -Type: language -Subtag: ran -Description: Riantana -Added: 2009-07-29 -%% -Type: language -Subtag: rao -Description: Rao -Added: 2009-07-29 -%% -Type: language -Subtag: rap -Description: Rapanui -Added: 2005-10-16 -%% -Type: language -Subtag: raq -Description: Saam -Added: 2009-07-29 -%% -Type: language -Subtag: rar -Description: Rarotongan -Description: Cook Islands Maori -Added: 2005-10-16 -%% -Type: language -Subtag: ras -Description: Tegali -Added: 2009-07-29 -%% -Type: language -Subtag: rat -Description: Razajerdi -Added: 2009-07-29 -%% -Type: language -Subtag: rau -Description: Raute -Added: 2009-07-29 -%% -Type: language -Subtag: rav -Description: Sampang -Added: 2009-07-29 -%% -Type: language -Subtag: raw -Description: Rawang -Added: 2009-07-29 -%% -Type: language -Subtag: rax -Description: Rang -Added: 2009-07-29 -%% -Type: language -Subtag: ray -Description: Rapa -Added: 2009-07-29 -%% -Type: language -Subtag: raz -Description: Rahambuu -Added: 2009-07-29 -%% -Type: language -Subtag: rbb -Description: Rumai Palaung -Added: 2009-07-29 -%% -Type: language -Subtag: rbk -Description: Northern Bontok -Added: 2010-03-11 -Macrolanguage: bnc -%% -Type: language -Subtag: rbl -Description: Miraya Bikol -Added: 2010-03-11 -Macrolanguage: bik -%% -Type: language -Subtag: rbp -Description: Barababaraba -Added: 2012-08-12 -%% -Type: language -Subtag: rcf -Description: Réunion Creole French -Added: 2009-07-29 -%% -Type: language -Subtag: rdb -Description: Rudbari -Added: 2009-07-29 -%% -Type: language -Subtag: rea -Description: Rerau -Added: 2009-07-29 -%% -Type: language -Subtag: reb -Description: Rembong -Added: 2009-07-29 -%% -Type: language -Subtag: ree -Description: Rejang Kayan -Added: 2009-07-29 -%% -Type: language -Subtag: reg -Description: Kara (Tanzania) -Added: 2009-07-29 -%% -Type: language -Subtag: rei -Description: Reli -Added: 2009-07-29 -%% -Type: language -Subtag: rej -Description: Rejang -Added: 2009-07-29 -%% -Type: language -Subtag: rel -Description: Rendille -Added: 2009-07-29 -%% -Type: language -Subtag: rem -Description: Remo -Added: 2009-07-29 -%% -Type: language -Subtag: ren -Description: Rengao -Added: 2009-07-29 -%% -Type: language -Subtag: rer -Description: Rer Bare -Added: 2009-07-29 -%% -Type: language -Subtag: res -Description: Reshe -Added: 2009-07-29 -%% -Type: language -Subtag: ret -Description: Retta -Added: 2009-07-29 -%% -Type: language -Subtag: rey -Description: Reyesano -Added: 2009-07-29 -%% -Type: language -Subtag: rga -Description: Roria -Added: 2009-07-29 -%% -Type: language -Subtag: rge -Description: Romano-Greek -Added: 2009-07-29 -%% -Type: language -Subtag: rgk -Description: Rangkas -Added: 2009-07-29 -%% -Type: language -Subtag: rgn -Description: Romagnol -Added: 2009-07-29 -%% -Type: language -Subtag: rgr -Description: Resígaro -Added: 2009-07-29 -%% -Type: language -Subtag: rgs -Description: Southern Roglai -Added: 2009-07-29 -%% -Type: language -Subtag: rgu -Description: Ringgou -Added: 2009-07-29 -%% -Type: language -Subtag: rhg -Description: Rohingya -Added: 2009-07-29 -%% -Type: language -Subtag: rhp -Description: Yahang -Added: 2009-07-29 -%% -Type: language -Subtag: ria -Description: Riang (India) -Added: 2009-07-29 -%% -Type: language -Subtag: rib -Description: Bribri Sign Language -Added: 2022-02-25 -%% -Type: language -Subtag: rie -Description: Rien -Added: 2009-07-29 -Deprecated: 2017-02-23 -%% -Type: language -Subtag: rif -Description: Tarifit -Added: 2009-07-29 -%% -Type: language -Subtag: ril -Description: Riang Lang -Description: Riang (Myanmar) -Added: 2009-07-29 -%% -Type: language -Subtag: rim -Description: Nyaturu -Added: 2009-07-29 -%% -Type: language -Subtag: rin -Description: Nungu -Added: 2009-07-29 -%% -Type: language -Subtag: rir -Description: Ribun -Added: 2009-07-29 -%% -Type: language -Subtag: rit -Description: Ritharrngu -Added: 2009-07-29 -%% -Type: language -Subtag: riu -Description: Riung -Added: 2009-07-29 -%% -Type: language -Subtag: rjg -Description: Rajong -Added: 2009-07-29 -%% -Type: language -Subtag: rji -Description: Raji -Added: 2009-07-29 -%% -Type: language -Subtag: rjs -Description: Rajbanshi -Added: 2009-07-29 -%% -Type: language -Subtag: rka -Description: Kraol -Added: 2009-07-29 -%% -Type: language -Subtag: rkb -Description: Rikbaktsa -Added: 2009-07-29 -%% -Type: language -Subtag: rkh -Description: Rakahanga-Manihiki -Added: 2009-07-29 -%% -Type: language -Subtag: rki -Description: Rakhine -Added: 2009-07-29 -%% -Type: language -Subtag: rkm -Description: Marka -Added: 2009-07-29 -%% -Type: language -Subtag: rkt -Description: Rangpuri -Description: Kamta -Added: 2009-07-29 -%% -Type: language -Subtag: rkw -Description: Arakwal -Added: 2013-09-10 -%% -Type: language -Subtag: rma -Description: Rama -Added: 2009-07-29 -%% -Type: language -Subtag: rmb -Description: Rembarrnga -Added: 2009-07-29 -%% -Type: language -Subtag: rmc -Description: Carpathian Romani -Added: 2009-07-29 -Macrolanguage: rom -%% -Type: language -Subtag: rmd -Description: Traveller Danish -Added: 2009-07-29 -%% -Type: language -Subtag: rme -Description: Angloromani -Added: 2009-07-29 -%% -Type: language -Subtag: rmf -Description: Kalo Finnish Romani -Added: 2009-07-29 -Macrolanguage: rom -%% -Type: language -Subtag: rmg -Description: Traveller Norwegian -Added: 2009-07-29 -%% -Type: language -Subtag: rmh -Description: Murkim -Added: 2009-07-29 -%% -Type: language -Subtag: rmi -Description: Lomavren -Added: 2009-07-29 -%% -Type: language -Subtag: rmk -Description: Romkun -Added: 2009-07-29 -%% -Type: language -Subtag: rml -Description: Baltic Romani -Added: 2009-07-29 -Macrolanguage: rom -%% -Type: language -Subtag: rmm -Description: Roma -Added: 2009-07-29 -%% -Type: language -Subtag: rmn -Description: Balkan Romani -Added: 2009-07-29 -Macrolanguage: rom -%% -Type: language -Subtag: rmo -Description: Sinte Romani -Added: 2009-07-29 -Macrolanguage: rom -%% -Type: language -Subtag: rmp -Description: Rempi -Added: 2009-07-29 -%% -Type: language -Subtag: rmq -Description: Caló -Added: 2010-03-11 -%% -Type: language -Subtag: rmr -Description: Caló -Added: 2009-07-29 -Deprecated: 2010-03-11 -Comments: see emx, rmq -%% -Type: language -Subtag: rms -Description: Romanian Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: rmt -Description: Domari -Added: 2009-07-29 -%% -Type: language -Subtag: rmu -Description: Tavringer Romani -Added: 2009-07-29 -%% -Type: language -Subtag: rmv -Description: Romanova -Added: 2009-07-29 -%% -Type: language -Subtag: rmw -Description: Welsh Romani -Added: 2009-07-29 -Macrolanguage: rom -%% -Type: language -Subtag: rmx -Description: Romam -Added: 2009-07-29 -%% -Type: language -Subtag: rmy -Description: Vlax Romani -Added: 2009-07-29 -Macrolanguage: rom -%% -Type: language -Subtag: rmz -Description: Marma -Added: 2009-07-29 -%% -Type: language -Subtag: rna -Description: Runa -Added: 2009-07-29 -Deprecated: 2016-05-30 -%% -Type: language -Subtag: rnb -Description: Brunca Sign Language -Added: 2022-02-25 -%% -Type: language -Subtag: rnd -Description: Ruund -Added: 2009-07-29 -%% -Type: language -Subtag: rng -Description: Ronga -Added: 2009-07-29 -%% -Type: language -Subtag: rnl -Description: Ranglong -Added: 2009-07-29 -%% -Type: language -Subtag: rnn -Description: Roon -Added: 2009-07-29 -%% -Type: language -Subtag: rnp -Description: Rongpo -Added: 2009-07-29 -%% -Type: language -Subtag: rnr -Description: Nari Nari -Added: 2012-08-20 -%% -Type: language -Subtag: rnw -Description: Rungwa -Added: 2009-07-29 -%% -Type: language -Subtag: roa -Description: Romance languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: rob -Description: Tae' -Added: 2009-07-29 -%% -Type: language -Subtag: roc -Description: Cacgia Roglai -Added: 2009-07-29 -%% -Type: language -Subtag: rod -Description: Rogo -Added: 2009-07-29 -%% -Type: language -Subtag: roe -Description: Ronji -Added: 2009-07-29 -%% -Type: language -Subtag: rof -Description: Rombo -Added: 2009-07-29 -%% -Type: language -Subtag: rog -Description: Northern Roglai -Added: 2009-07-29 -%% -Type: language -Subtag: rol -Description: Romblomanon -Added: 2009-07-29 -%% -Type: language -Subtag: rom -Description: Romany -Added: 2005-10-16 -Scope: macrolanguage -%% -Type: language -Subtag: roo -Description: Rotokas -Added: 2009-07-29 -%% -Type: language -Subtag: rop -Description: Kriol -Added: 2009-07-29 -%% -Type: language -Subtag: ror -Description: Rongga -Added: 2009-07-29 -%% -Type: language -Subtag: rou -Description: Runga -Added: 2009-07-29 -%% -Type: language -Subtag: row -Description: Dela-Oenale -Added: 2009-07-29 -%% -Type: language -Subtag: rpn -Description: Repanbitip -Added: 2009-07-29 -%% -Type: language -Subtag: rpt -Description: Rapting -Added: 2009-07-29 -%% -Type: language -Subtag: rri -Description: Ririo -Added: 2009-07-29 -%% -Type: language -Subtag: rrm -Description: Moriori -Added: 2024-03-04 -%% -Type: language -Subtag: rro -Description: Waima -Added: 2009-07-29 -%% -Type: language -Subtag: rrt -Description: Arritinngithigh -Added: 2012-08-12 -%% -Type: language -Subtag: rsb -Description: Romano-Serbian -Added: 2009-07-29 -%% -Type: language -Subtag: rsi -Description: Rennellese Sign Language -Added: 2009-07-29 -Deprecated: 2017-02-23 -%% -Type: language -Subtag: rsk -Description: Ruthenian -Description: Rusnak -Added: 2022-02-25 -%% -Type: language -Subtag: rsl -Description: Russian Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: rsm -Description: Miriwoong Sign Language -Added: 2016-05-30 -%% -Type: language -Subtag: rsn -Description: Rwandan Sign Language -Added: 2022-02-25 -%% -Type: language -Subtag: rsw -Description: Rishiwa -Added: 2023-03-17 -%% -Type: language -Subtag: rtc -Description: Rungtu Chin -Added: 2012-08-12 -%% -Type: language -Subtag: rth -Description: Ratahan -Added: 2009-07-29 -%% -Type: language -Subtag: rtm -Description: Rotuman -Added: 2009-07-29 -%% -Type: language -Subtag: rts -Description: Yurats -Added: 2015-02-12 -%% -Type: language -Subtag: rtw -Description: Rathawi -Added: 2009-07-29 -%% -Type: language -Subtag: rub -Description: Gungu -Added: 2009-07-29 -%% -Type: language -Subtag: ruc -Description: Ruuli -Added: 2009-07-29 -%% -Type: language -Subtag: rue -Description: Rusyn -Added: 2009-07-29 -%% -Type: language -Subtag: ruf -Description: Luguru -Added: 2009-07-29 -%% -Type: language -Subtag: rug -Description: Roviana -Added: 2009-07-29 -%% -Type: language -Subtag: ruh -Description: Ruga -Added: 2009-07-29 -%% -Type: language -Subtag: rui -Description: Rufiji -Added: 2009-07-29 -%% -Type: language -Subtag: ruk -Description: Che -Added: 2009-07-29 -%% -Type: language -Subtag: ruo -Description: Istro Romanian -Added: 2009-07-29 -%% -Type: language -Subtag: rup -Description: Macedo-Romanian -Description: Aromanian -Description: Arumanian -Added: 2005-10-16 -%% -Type: language -Subtag: ruq -Description: Megleno Romanian -Added: 2009-07-29 -%% -Type: language -Subtag: rut -Description: Rutul -Added: 2009-07-29 -%% -Type: language -Subtag: ruu -Description: Lanas Lobu -Added: 2009-07-29 -%% -Type: language -Subtag: ruy -Description: Mala (Nigeria) -Added: 2009-07-29 -%% -Type: language -Subtag: ruz -Description: Ruma -Added: 2009-07-29 -%% -Type: language -Subtag: rwa -Description: Rawo -Added: 2009-07-29 -%% -Type: language -Subtag: rwk -Description: Rwa -Added: 2009-07-29 -%% -Type: language -Subtag: rwl -Description: Ruwila -Added: 2021-02-20 -%% -Type: language -Subtag: rwm -Description: Amba (Uganda) -Added: 2009-07-29 -%% -Type: language -Subtag: rwo -Description: Rawa -Added: 2009-07-29 -%% -Type: language -Subtag: rwr -Description: Marwari (India) -Added: 2009-07-29 -Macrolanguage: mwr -%% -Type: language -Subtag: rxd -Description: Ngardi -Added: 2013-09-10 -%% -Type: language -Subtag: rxw -Description: Karuwali -Description: Garuwali -Added: 2013-09-10 -%% -Type: language -Subtag: ryn -Description: Northern Amami-Oshima -Added: 2009-07-29 -%% -Type: language -Subtag: rys -Description: Yaeyama -Added: 2009-07-29 -%% -Type: language -Subtag: ryu -Description: Central Okinawan -Added: 2009-07-29 -%% -Type: language -Subtag: rzh -Description: Rāziḥī -Added: 2016-05-30 -%% -Type: language -Subtag: saa -Description: Saba -Added: 2009-07-29 -%% -Type: language -Subtag: sab -Description: Buglere -Added: 2009-07-29 -%% -Type: language -Subtag: sac -Description: Meskwaki -Added: 2009-07-29 -%% -Type: language -Subtag: sad -Description: Sandawe -Added: 2005-10-16 -%% -Type: language -Subtag: sae -Description: Sabanê -Added: 2009-07-29 -%% -Type: language -Subtag: saf -Description: Safaliba -Added: 2009-07-29 -%% -Type: language -Subtag: sah -Description: Yakut -Added: 2005-10-16 -%% -Type: language -Subtag: sai -Description: South American Indian languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: saj -Description: Sahu -Added: 2009-07-29 -%% -Type: language -Subtag: sak -Description: Sake -Added: 2009-07-29 -%% -Type: language -Subtag: sal -Description: Salishan languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: sam -Description: Samaritan Aramaic -Added: 2005-10-16 -%% -Type: language -Subtag: sao -Description: Sause -Added: 2009-07-29 -%% -Type: language -Subtag: sap -Description: Sanapaná -Added: 2009-07-29 -Deprecated: 2014-02-28 -Comments: see aqt, spn -%% -Type: language -Subtag: saq -Description: Samburu -Added: 2009-07-29 -%% -Type: language -Subtag: sar -Description: Saraveca -Added: 2009-07-29 -%% -Type: language -Subtag: sas -Description: Sasak -Added: 2005-10-16 -%% -Type: language -Subtag: sat -Description: Santali -Added: 2005-10-16 -%% -Type: language -Subtag: sau -Description: Saleman -Added: 2009-07-29 -%% -Type: language -Subtag: sav -Description: Saafi-Saafi -Added: 2009-07-29 -%% -Type: language -Subtag: saw -Description: Sawi -Added: 2009-07-29 -%% -Type: language -Subtag: sax -Description: Sa -Added: 2009-07-29 -%% -Type: language -Subtag: say -Description: Saya -Added: 2009-07-29 -%% -Type: language -Subtag: saz -Description: Saurashtra -Added: 2009-07-29 -%% -Type: language -Subtag: sba -Description: Ngambay -Added: 2009-07-29 -%% -Type: language -Subtag: sbb -Description: Simbo -Added: 2009-07-29 -%% -Type: language -Subtag: sbc -Description: Kele (Papua New Guinea) -Added: 2009-07-29 -%% -Type: language -Subtag: sbd -Description: Southern Samo -Added: 2009-07-29 -%% -Type: language -Subtag: sbe -Description: Saliba -Added: 2009-07-29 -%% -Type: language -Subtag: sbf -Description: Chabu -Description: Shabo -Added: 2009-07-29 -%% -Type: language -Subtag: sbg -Description: Seget -Added: 2009-07-29 -%% -Type: language -Subtag: sbh -Description: Sori-Harengan -Added: 2009-07-29 -%% -Type: language -Subtag: sbi -Description: Seti -Added: 2009-07-29 -%% -Type: language -Subtag: sbj -Description: Surbakhal -Added: 2009-07-29 -%% -Type: language -Subtag: sbk -Description: Safwa -Added: 2009-07-29 -%% -Type: language -Subtag: sbl -Description: Botolan Sambal -Added: 2009-07-29 -%% -Type: language -Subtag: sbm -Description: Sagala -Added: 2009-07-29 -%% -Type: language -Subtag: sbn -Description: Sindhi Bhil -Added: 2009-07-29 -%% -Type: language -Subtag: sbo -Description: Sabüm -Added: 2009-07-29 -%% -Type: language -Subtag: sbp -Description: Sangu (Tanzania) -Added: 2009-07-29 -%% -Type: language -Subtag: sbq -Description: Sileibi -Added: 2009-07-29 -%% -Type: language -Subtag: sbr -Description: Sembakung Murut -Added: 2009-07-29 -%% -Type: language -Subtag: sbs -Description: Subiya -Added: 2009-07-29 -%% -Type: language -Subtag: sbt -Description: Kimki -Added: 2009-07-29 -%% -Type: language -Subtag: sbu -Description: Stod Bhoti -Added: 2009-07-29 -%% -Type: language -Subtag: sbv -Description: Sabine -Added: 2009-07-29 -%% -Type: language -Subtag: sbw -Description: Simba -Added: 2009-07-29 -%% -Type: language -Subtag: sbx -Description: Seberuang -Added: 2009-07-29 -%% -Type: language -Subtag: sby -Description: Soli -Added: 2009-07-29 -%% -Type: language -Subtag: sbz -Description: Sara Kaba -Added: 2009-07-29 -%% -Type: language -Subtag: sca -Description: Sansu -Added: 2009-07-29 -Deprecated: 2012-08-12 -Preferred-Value: hle -%% -Type: language -Subtag: scb -Description: Chut -Added: 2009-07-29 -%% -Type: language -Subtag: sce -Description: Dongxiang -Added: 2009-07-29 -%% -Type: language -Subtag: scf -Description: San Miguel Creole French -Added: 2009-07-29 -%% -Type: language -Subtag: scg -Description: Sanggau -Added: 2009-07-29 -%% -Type: language -Subtag: sch -Description: Sakachep -Added: 2009-07-29 -%% -Type: language -Subtag: sci -Description: Sri Lankan Creole Malay -Added: 2009-07-29 -%% -Type: language -Subtag: sck -Description: Sadri -Added: 2009-07-29 -%% -Type: language -Subtag: scl -Description: Shina -Added: 2009-07-29 -%% -Type: language -Subtag: scn -Description: Sicilian -Added: 2005-10-16 -%% -Type: language -Subtag: sco -Description: Scots -Added: 2005-10-16 -%% -Type: language -Subtag: scp -Description: Hyolmo -Description: Helambu Sherpa -Added: 2009-07-29 -%% -Type: language -Subtag: scq -Description: Sa'och -Added: 2009-07-29 -%% -Type: language -Subtag: scs -Description: North Slavey -Added: 2009-07-29 -Macrolanguage: den -%% -Type: language -Subtag: sct -Description: Southern Katang -Added: 2017-02-23 -%% -Type: language -Subtag: scu -Description: Shumcho -Added: 2009-07-29 -%% -Type: language -Subtag: scv -Description: Sheni -Added: 2009-07-29 -%% -Type: language -Subtag: scw -Description: Sha -Added: 2009-07-29 -%% -Type: language -Subtag: scx -Description: Sicel -Added: 2009-07-29 -%% -Type: language -Subtag: scz -Description: Shaetlan -Added: 2026-04-09 -%% -Type: language -Subtag: sda -Description: Toraja-Sa'dan -Added: 2009-07-29 -%% -Type: language -Subtag: sdb -Description: Shabak -Added: 2009-07-29 -%% -Type: language -Subtag: sdc -Description: Sassarese Sardinian -Added: 2009-07-29 -Macrolanguage: sc -%% -Type: language -Subtag: sde -Description: Surubu -Added: 2009-07-29 -%% -Type: language -Subtag: sdf -Description: Sarli -Added: 2009-07-29 -%% -Type: language -Subtag: sdg -Description: Savi -Added: 2009-07-29 -%% -Type: language -Subtag: sdh -Description: Southern Kurdish -Added: 2009-07-29 -Macrolanguage: ku -%% -Type: language -Subtag: sdj -Description: Suundi -Added: 2009-07-29 -%% -Type: language -Subtag: sdk -Description: Sos Kundi -Added: 2009-07-29 -%% -Type: language -Subtag: sdl -Description: Saudi Arabian Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: sdm -Description: Semandang -Added: 2009-07-29 -Deprecated: 2020-03-28 -Comments: see ebc, gef, sdq -%% -Type: language -Subtag: sdn -Description: Gallurese Sardinian -Added: 2009-07-29 -Macrolanguage: sc -%% -Type: language -Subtag: sdo -Description: Bukar-Sadung Bidayuh -Added: 2009-07-29 -%% -Type: language -Subtag: sdp -Description: Sherdukpen -Added: 2009-07-29 -%% -Type: language -Subtag: sdq -Description: Semandang -Added: 2020-03-28 -%% -Type: language -Subtag: sdr -Description: Oraon Sadri -Added: 2009-07-29 -%% -Type: language -Subtag: sds -Description: Sened -Added: 2009-07-29 -%% -Type: language -Subtag: sdt -Description: Shuadit -Added: 2009-07-29 -%% -Type: language -Subtag: sdu -Description: Sarudu -Added: 2009-07-29 -%% -Type: language -Subtag: sdv -Description: Eastern Sudanic languages -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: sdx -Description: Sibu Melanau -Added: 2009-07-29 -%% -Type: language -Subtag: sdz -Description: Sallands -Added: 2009-07-29 -%% -Type: language -Subtag: sea -Description: Semai -Added: 2009-07-29 -%% -Type: language -Subtag: seb -Description: Shempire Senoufo -Added: 2009-07-29 -%% -Type: language -Subtag: sec -Description: Sechelt -Description: She shashishalhem -Added: 2009-07-29 -%% -Type: language -Subtag: sed -Description: Sedang -Added: 2009-07-29 -%% -Type: language -Subtag: see -Description: Seneca -Added: 2009-07-29 -%% -Type: language -Subtag: sef -Description: Cebaara Senoufo -Added: 2009-07-29 -%% -Type: language -Subtag: seg -Description: Segeju -Added: 2009-07-29 -%% -Type: language -Subtag: seh -Description: Sena -Added: 2009-07-29 -%% -Type: language -Subtag: sei -Description: Seri -Added: 2009-07-29 -%% -Type: language -Subtag: sej -Description: Sene -Added: 2009-07-29 -%% -Type: language -Subtag: sek -Description: Sekani -Added: 2009-07-29 -%% -Type: language -Subtag: sel -Description: Selkup -Added: 2005-10-16 -%% -Type: language -Subtag: sem -Description: Semitic languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: sen -Description: Nanerigé Sénoufo -Added: 2009-07-29 -%% -Type: language -Subtag: seo -Description: Suarmin -Added: 2009-07-29 -%% -Type: language -Subtag: sep -Description: Sìcìté Sénoufo -Added: 2009-07-29 -%% -Type: language -Subtag: seq -Description: Senara Sénoufo -Added: 2009-07-29 -%% -Type: language -Subtag: ser -Description: Serrano -Added: 2009-07-29 -%% -Type: language -Subtag: ses -Description: Koyraboro Senni Songhai -Added: 2009-07-29 -%% -Type: language -Subtag: set -Description: Sentani -Added: 2009-07-29 -%% -Type: language -Subtag: seu -Description: Serui-Laut -Added: 2009-07-29 -%% -Type: language -Subtag: sev -Description: Nyarafolo Senoufo -Added: 2009-07-29 -%% -Type: language -Subtag: sew -Description: Sewa Bay -Added: 2009-07-29 -%% -Type: language -Subtag: sey -Description: Secoya -Added: 2009-07-29 -%% -Type: language -Subtag: sez -Description: Senthang Chin -Added: 2009-07-29 -%% -Type: language -Subtag: sfb -Description: Langue des signes de Belgique Francophone -Description: French Belgian Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: sfe -Description: Eastern Subanen -Added: 2012-08-12 -%% -Type: language -Subtag: sfm -Description: Small Flowery Miao -Added: 2009-07-29 -Macrolanguage: hmn -%% -Type: language -Subtag: sfs -Description: South African Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: sfw -Description: Sehwi -Added: 2009-07-29 -%% -Type: language -Subtag: sga -Description: Old Irish (to 900) -Added: 2005-10-16 -%% -Type: language -Subtag: sgb -Description: Mag-antsi Ayta -Added: 2009-07-29 -%% -Type: language -Subtag: sgc -Description: Kipsigis -Added: 2009-07-29 -Macrolanguage: kln -%% -Type: language -Subtag: sgd -Description: Surigaonon -Added: 2010-03-11 -%% -Type: language -Subtag: sge -Description: Segai -Added: 2009-07-29 -%% -Type: language -Subtag: sgg -Description: Swiss-German Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: sgh -Description: Shughni -Added: 2009-07-29 -%% -Type: language -Subtag: sgi -Description: Suga -Added: 2009-07-29 -%% -Type: language -Subtag: sgj -Description: Surgujia -Added: 2012-08-12 -%% -Type: language -Subtag: sgk -Description: Sangkong -Added: 2009-07-29 -%% -Type: language -Subtag: sgl -Description: Sanglechi-Ishkashimi -Added: 2009-07-29 -Deprecated: 2010-03-11 -Comments: see isk, sgy -%% -Type: language -Subtag: sgm -Description: Singa -Added: 2009-07-29 -%% -Type: language -Subtag: sgn -Description: Sign languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: sgo -Description: Songa -Added: 2009-07-29 -Deprecated: 2015-02-12 -%% -Type: language -Subtag: sgp -Description: Singpho -Added: 2009-07-29 -%% -Type: language -Subtag: sgr -Description: Sangisari -Added: 2009-07-29 -%% -Type: language -Subtag: sgs -Description: Samogitian -Added: 2010-07-26 -%% -Type: language -Subtag: sgt -Description: Brokpake -Added: 2009-07-29 -%% -Type: language -Subtag: sgu -Description: Salas -Added: 2009-07-29 -%% -Type: language -Subtag: sgw -Description: Sebat Bet Gurage -Added: 2009-07-29 -%% -Type: language -Subtag: sgx -Description: Sierra Leone Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: sgy -Description: Sanglechi -Added: 2010-03-11 -%% -Type: language -Subtag: sgz -Description: Sursurunga -Added: 2009-07-29 -%% -Type: language -Subtag: sha -Description: Shall-Zwall -Added: 2009-07-29 -%% -Type: language -Subtag: shb -Description: Ninam -Added: 2009-07-29 -%% -Type: language -Subtag: shc -Description: Sonde -Added: 2009-07-29 -%% -Type: language -Subtag: shd -Description: Kundal Shahi -Added: 2010-03-11 -%% -Type: language -Subtag: she -Description: Sheko -Added: 2009-07-29 -%% -Type: language -Subtag: shg -Description: Shua -Added: 2009-07-29 -%% -Type: language -Subtag: shh -Description: Shoshoni -Added: 2009-07-29 -%% -Type: language -Subtag: shi -Description: Tachelhit -Added: 2009-07-29 -%% -Type: language -Subtag: shj -Description: Shatt -Added: 2009-07-29 -%% -Type: language -Subtag: shk -Description: Shilluk -Added: 2009-07-29 -%% -Type: language -Subtag: shl -Description: Shendu -Added: 2009-07-29 -%% -Type: language -Subtag: shm -Description: Shahrudi -Added: 2009-07-29 -%% -Type: language -Subtag: shn -Description: Shan -Added: 2005-10-16 -%% -Type: language -Subtag: sho -Description: Shanga -Added: 2009-07-29 -%% -Type: language -Subtag: shp -Description: Shipibo-Conibo -Added: 2009-07-29 -%% -Type: language -Subtag: shq -Description: Sala -Added: 2009-07-29 -%% -Type: language -Subtag: shr -Description: Shi -Added: 2009-07-29 -%% -Type: language -Subtag: shs -Description: Shuswap -Description: Secwepemctsín -Added: 2009-07-29 -%% -Type: language -Subtag: sht -Description: Shasta -Added: 2009-07-29 -%% -Type: language -Subtag: shu -Description: Chadian Arabic -Added: 2009-07-29 -Macrolanguage: ar -%% -Type: language -Subtag: shv -Description: Shehri -Added: 2009-07-29 -%% -Type: language -Subtag: shw -Description: Shwai -Added: 2009-07-29 -%% -Type: language -Subtag: shx -Description: She -Added: 2009-07-29 -%% -Type: language -Subtag: shy -Description: Tachawit -Added: 2009-07-29 -%% -Type: language -Subtag: shz -Description: Syenara Senoufo -Added: 2009-07-29 -%% -Type: language -Subtag: sia -Description: Akkala Sami -Added: 2009-07-29 -%% -Type: language -Subtag: sib -Description: Sebop -Added: 2009-07-29 -%% -Type: language -Subtag: sid -Description: Sidamo -Added: 2005-10-16 -%% -Type: language -Subtag: sie -Description: Simaa -Added: 2009-07-29 -%% -Type: language -Subtag: sif -Description: Siamou -Added: 2009-07-29 -%% -Type: language -Subtag: sig -Description: Paasaal -Added: 2009-07-29 -%% -Type: language -Subtag: sih -Description: Zire -Description: Sîshëë -Added: 2009-07-29 -%% -Type: language -Subtag: sii -Description: Shom Peng -Added: 2009-07-29 -%% -Type: language -Subtag: sij -Description: Numbami -Added: 2009-07-29 -%% -Type: language -Subtag: sik -Description: Sikiana -Added: 2009-07-29 -%% -Type: language -Subtag: sil -Description: Tumulung Sisaala -Added: 2009-07-29 -%% -Type: language -Subtag: sim -Description: Mende (Papua New Guinea) -Added: 2009-07-29 -%% -Type: language -Subtag: sio -Description: Siouan languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: sip -Description: Sikkimese -Added: 2009-07-29 -%% -Type: language -Subtag: siq -Description: Sonia -Added: 2009-07-29 -%% -Type: language -Subtag: sir -Description: Siri -Added: 2009-07-29 -%% -Type: language -Subtag: sis -Description: Siuslaw -Added: 2009-07-29 -%% -Type: language -Subtag: sit -Description: Sino-Tibetan languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: siu -Description: Sinagen -Added: 2009-07-29 -%% -Type: language -Subtag: siv -Description: Sumariup -Added: 2009-07-29 -%% -Type: language -Subtag: siw -Description: Siwai -Added: 2009-07-29 -%% -Type: language -Subtag: six -Description: Sumau -Added: 2009-07-29 -%% -Type: language -Subtag: siy -Description: Sivandi -Added: 2009-07-29 -%% -Type: language -Subtag: siz -Description: Siwi -Added: 2009-07-29 -%% -Type: language -Subtag: sja -Description: Epena -Added: 2009-07-29 -%% -Type: language -Subtag: sjb -Description: Sajau Basap -Added: 2009-07-29 -%% -Type: language -Subtag: sjc -Description: Shaojiang Chinese -Added: 2024-12-12 -Macrolanguage: zh -%% -Type: language -Subtag: sjd -Description: Kildin Sami -Added: 2009-07-29 -%% -Type: language -Subtag: sje -Description: Pite Sami -Added: 2009-07-29 -%% -Type: language -Subtag: sjg -Description: Assangori -Added: 2009-07-29 -%% -Type: language -Subtag: sjk -Description: Kemi Sami -Added: 2009-07-29 -%% -Type: language -Subtag: sjl -Description: Sajalong -Description: Miji -Added: 2009-07-29 -%% -Type: language -Subtag: sjm -Description: Mapun -Added: 2009-07-29 -%% -Type: language -Subtag: sjn -Description: Sindarin -Added: 2009-07-29 -%% -Type: language -Subtag: sjo -Description: Xibe -Added: 2009-07-29 -%% -Type: language -Subtag: sjp -Description: Surjapuri -Added: 2009-07-29 -%% -Type: language -Subtag: sjr -Description: Siar-Lak -Added: 2009-07-29 -%% -Type: language -Subtag: sjs -Description: Senhaja De Srair -Added: 2009-07-29 -%% -Type: language -Subtag: sjt -Description: Ter Sami -Added: 2009-07-29 -%% -Type: language -Subtag: sju -Description: Ume Sami -Added: 2009-07-29 -%% -Type: language -Subtag: sjw -Description: Shawnee -Added: 2009-07-29 -%% -Type: language -Subtag: ska -Description: Skagit -Added: 2009-07-29 -%% -Type: language -Subtag: skb -Description: Saek -Added: 2009-07-29 -%% -Type: language -Subtag: skc -Description: Ma Manda -Added: 2009-07-29 -%% -Type: language -Subtag: skd -Description: Southern Sierra Miwok -Added: 2009-07-29 -%% -Type: language -Subtag: ske -Description: Seke (Vanuatu) -Added: 2009-07-29 -%% -Type: language -Subtag: skf -Description: Sakirabiá -Added: 2009-07-29 -%% -Type: language -Subtag: skg -Description: Sakalava Malagasy -Added: 2009-07-29 -Macrolanguage: mg -%% -Type: language -Subtag: skh -Description: Sikule -Added: 2009-07-29 -%% -Type: language -Subtag: ski -Description: Sika -Added: 2009-07-29 -%% -Type: language -Subtag: skj -Description: Seke (Nepal) -Added: 2009-07-29 -%% -Type: language -Subtag: skk -Description: Sok -Added: 2009-07-29 -Deprecated: 2017-02-23 -Preferred-Value: oyb -%% -Type: language -Subtag: skm -Description: Kutong -Added: 2009-07-29 -%% -Type: language -Subtag: skn -Description: Kolibugan Subanon -Added: 2009-07-29 -%% -Type: language -Subtag: sko -Description: Seko Tengah -Added: 2009-07-29 -%% -Type: language -Subtag: skp -Description: Sekapan -Added: 2009-07-29 -%% -Type: language -Subtag: skq -Description: Sininkere -Added: 2009-07-29 -%% -Type: language -Subtag: skr -Description: Saraiki -Description: Seraiki -Added: 2009-07-29 -Macrolanguage: lah -%% -Type: language -Subtag: sks -Description: Maia -Added: 2009-07-29 -%% -Type: language -Subtag: skt -Description: Sakata -Added: 2009-07-29 -%% -Type: language -Subtag: sku -Description: Sakao -Added: 2009-07-29 -%% -Type: language -Subtag: skv -Description: Skou -Added: 2009-07-29 -%% -Type: language -Subtag: skw -Description: Skepi Creole Dutch -Added: 2009-07-29 -%% -Type: language -Subtag: skx -Description: Seko Padang -Added: 2009-07-29 -%% -Type: language -Subtag: sky -Description: Sikaiana -Added: 2009-07-29 -%% -Type: language -Subtag: skz -Description: Sekar -Added: 2009-07-29 -%% -Type: language -Subtag: sla -Description: Slavic languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: slc -Description: Sáliba -Added: 2009-07-29 -%% -Type: language -Subtag: sld -Description: Sissala -Added: 2009-07-29 -%% -Type: language -Subtag: sle -Description: Sholaga -Added: 2009-07-29 -%% -Type: language -Subtag: slf -Description: Swiss-Italian Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: slg -Description: Selungai Murut -Added: 2009-07-29 -%% -Type: language -Subtag: slh -Description: Southern Puget Sound Salish -Added: 2009-07-29 -%% -Type: language -Subtag: sli -Description: Lower Silesian -Added: 2009-07-29 -%% -Type: language -Subtag: slj -Description: Salumá -Added: 2009-07-29 -%% -Type: language -Subtag: sll -Description: Salt-Yui -Added: 2009-07-29 -%% -Type: language -Subtag: slm -Description: Pangutaran Sama -Added: 2009-07-29 -%% -Type: language -Subtag: sln -Description: Salinan -Added: 2009-07-29 -%% -Type: language -Subtag: slp -Description: Lamaholot -Added: 2009-07-29 -%% -Type: language -Subtag: slq -Description: Salchuq -Added: 2009-07-29 -Deprecated: 2023-03-17 -%% -Type: language -Subtag: slr -Description: Salar -Added: 2009-07-29 -%% -Type: language -Subtag: sls -Description: Singapore Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: slt -Description: Sila -Added: 2009-07-29 -%% -Type: language -Subtag: slu -Description: Selaru -Added: 2009-07-29 -%% -Type: language -Subtag: slw -Description: Sialum -Added: 2009-07-29 -%% -Type: language -Subtag: slx -Description: Salampasu -Added: 2009-07-29 -%% -Type: language -Subtag: sly -Description: Selayar -Added: 2009-07-29 -%% -Type: language -Subtag: slz -Description: Ma'ya -Added: 2009-07-29 -%% -Type: language -Subtag: sma -Description: Southern Sami -Added: 2005-10-16 -%% -Type: language -Subtag: smb -Description: Simbari -Added: 2009-07-29 -%% -Type: language -Subtag: smc -Description: Som -Added: 2009-07-29 -%% -Type: language -Subtag: smd -Description: Sama -Added: 2009-07-29 -Deprecated: 2022-02-25 -Preferred-Value: kmb -%% -Type: language -Subtag: smf -Description: Auwe -Added: 2009-07-29 -%% -Type: language -Subtag: smg -Description: Simbali -Added: 2009-07-29 -%% -Type: language -Subtag: smh -Description: Samei -Added: 2009-07-29 -%% -Type: language -Subtag: smi -Description: Sami languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: smj -Description: Lule Sami -Added: 2005-10-16 -%% -Type: language -Subtag: smk -Description: Bolinao -Added: 2009-07-29 -%% -Type: language -Subtag: sml -Description: Central Sama -Added: 2009-07-29 -%% -Type: language -Subtag: smm -Description: Musasa -Added: 2009-07-29 -%% -Type: language -Subtag: smn -Description: Inari Sami -Added: 2005-10-16 -%% -Type: language -Subtag: smp -Description: Samaritan -Added: 2009-07-29 -%% -Type: language -Subtag: smq -Description: Samo -Added: 2009-07-29 -%% -Type: language -Subtag: smr -Description: Simeulue -Added: 2009-07-29 -%% -Type: language -Subtag: sms -Description: Skolt Sami -Added: 2005-10-16 -%% -Type: language -Subtag: smt -Description: Simte -Added: 2009-07-29 -%% -Type: language -Subtag: smu -Description: Somray -Added: 2009-07-29 -%% -Type: language -Subtag: smv -Description: Samvedi -Added: 2009-07-29 -%% -Type: language -Subtag: smw -Description: Sumbawa -Added: 2009-07-29 -%% -Type: language -Subtag: smx -Description: Samba -Added: 2009-07-29 -%% -Type: language -Subtag: smy -Description: Semnani -Added: 2009-07-29 -%% -Type: language -Subtag: smz -Description: Simeku -Added: 2009-07-29 -%% -Type: language -Subtag: snb -Description: Sebuyau -Added: 2009-07-29 -Deprecated: 2022-02-25 -Preferred-Value: iba -%% -Type: language -Subtag: snc -Description: Sinaugoro -Added: 2009-07-29 -%% -Type: language -Subtag: sne -Description: Bau Bidayuh -Added: 2009-07-29 -%% -Type: language -Subtag: snf -Description: Noon -Added: 2009-07-29 -%% -Type: language -Subtag: sng -Description: Sanga (Democratic Republic of Congo) -Added: 2009-07-29 -%% -Type: language -Subtag: snh -Description: Shinabo -Added: 2009-07-29 -Deprecated: 2017-02-23 -%% -Type: language -Subtag: sni -Description: Sensi -Added: 2009-07-29 -%% -Type: language -Subtag: snj -Description: Riverain Sango -Added: 2009-07-29 -%% -Type: language -Subtag: snk -Description: Soninke -Added: 2005-10-16 -%% -Type: language -Subtag: snl -Description: Sangil -Added: 2009-07-29 -%% -Type: language -Subtag: snm -Description: Southern Ma'di -Added: 2009-07-29 -%% -Type: language -Subtag: snn -Description: Siona -Added: 2009-07-29 -%% -Type: language -Subtag: sno -Description: Snohomish -Added: 2009-07-29 -%% -Type: language -Subtag: snp -Description: Siane -Added: 2009-07-29 -%% -Type: language -Subtag: snq -Description: Sangu (Gabon) -Added: 2009-07-29 -%% -Type: language -Subtag: snr -Description: Sihan -Added: 2009-07-29 -%% -Type: language -Subtag: sns -Description: South West Bay -Description: Nahavaq -Added: 2009-07-29 -%% -Type: language -Subtag: snu -Description: Senggi -Description: Viid -Added: 2009-07-29 -%% -Type: language -Subtag: snv -Description: Sa'ban -Added: 2009-07-29 -%% -Type: language -Subtag: snw -Description: Selee -Added: 2009-07-29 -%% -Type: language -Subtag: snx -Description: Sam -Added: 2009-07-29 -%% -Type: language -Subtag: sny -Description: Saniyo-Hiyewe -Added: 2009-07-29 -%% -Type: language -Subtag: snz -Description: Kou -Added: 2009-07-29 -%% -Type: language -Subtag: soa -Description: Thai Song -Added: 2009-07-29 -%% -Type: language -Subtag: sob -Description: Sobei -Added: 2009-07-29 -%% -Type: language -Subtag: soc -Description: So (Democratic Republic of Congo) -Added: 2009-07-29 -%% -Type: language -Subtag: sod -Description: Songoora -Added: 2009-07-29 -%% -Type: language -Subtag: soe -Description: Songomeno -Added: 2009-07-29 -%% -Type: language -Subtag: sog -Description: Sogdian -Added: 2005-10-16 -%% -Type: language -Subtag: soh -Description: Aka -Added: 2009-07-29 -%% -Type: language -Subtag: soi -Description: Sonha -Added: 2009-07-29 -%% -Type: language -Subtag: soj -Description: Soi -Added: 2009-07-29 -%% -Type: language -Subtag: sok -Description: Sokoro -Added: 2009-07-29 -%% -Type: language -Subtag: sol -Description: Solos -Added: 2009-07-29 -%% -Type: language -Subtag: son -Description: Songhai languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: soo -Description: Songo -Added: 2009-07-29 -%% -Type: language -Subtag: sop -Description: Songe -Added: 2009-07-29 -%% -Type: language -Subtag: soq -Description: Kanasi -Added: 2009-07-29 -%% -Type: language -Subtag: sor -Description: Somrai -Added: 2009-07-29 -%% -Type: language -Subtag: sos -Description: Seeku -Added: 2009-07-29 -%% -Type: language -Subtag: sou -Description: Southern Thai -Added: 2009-07-29 -%% -Type: language -Subtag: sov -Description: Sonsorol -Added: 2009-07-29 -%% -Type: language -Subtag: sow -Description: Sowanda -Added: 2009-07-29 -%% -Type: language -Subtag: sox -Description: Swo -Added: 2009-07-29 -%% -Type: language -Subtag: soy -Description: Miyobe -Added: 2009-07-29 -%% -Type: language -Subtag: soz -Description: Temi -Added: 2009-07-29 -%% -Type: language -Subtag: spb -Description: Sepa (Indonesia) -Added: 2009-07-29 -%% -Type: language -Subtag: spc -Description: Sapé -Added: 2009-07-29 -%% -Type: language -Subtag: spd -Description: Saep -Added: 2009-07-29 -%% -Type: language -Subtag: spe -Description: Sepa (Papua New Guinea) -Added: 2009-07-29 -%% -Type: language -Subtag: spg -Description: Sian -Added: 2009-07-29 -%% -Type: language -Subtag: spi -Description: Saponi -Added: 2009-07-29 -%% -Type: language -Subtag: spk -Description: Sengo -Added: 2009-07-29 -%% -Type: language -Subtag: spl -Description: Selepet -Added: 2009-07-29 -%% -Type: language -Subtag: spm -Description: Akukem -Added: 2009-07-29 -%% -Type: language -Subtag: spn -Description: Sanapaná -Added: 2014-02-28 -%% -Type: language -Subtag: spo -Description: Spokane -Added: 2009-07-29 -%% -Type: language -Subtag: spp -Description: Supyire Senoufo -Added: 2009-07-29 -%% -Type: language -Subtag: spq -Description: Loreto-Ucayali Spanish -Added: 2009-07-29 -%% -Type: language -Subtag: spr -Description: Saparua -Added: 2009-07-29 -%% -Type: language -Subtag: sps -Description: Saposa -Added: 2009-07-29 -%% -Type: language -Subtag: spt -Description: Spiti Bhoti -Added: 2009-07-29 -%% -Type: language -Subtag: spu -Description: Sapuan -Added: 2009-07-29 -%% -Type: language -Subtag: spv -Description: Sambalpuri -Description: Kosli -Added: 2012-08-12 -Macrolanguage: or -%% -Type: language -Subtag: spx -Description: South Picene -Added: 2009-07-29 -%% -Type: language -Subtag: spy -Description: Sabaot -Added: 2009-07-29 -Macrolanguage: kln -%% -Type: language -Subtag: sqa -Description: Shama-Sambuga -Added: 2009-07-29 -%% -Type: language -Subtag: sqh -Description: Shau -Added: 2009-07-29 -%% -Type: language -Subtag: sqj -Description: Albanian languages -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: sqk -Description: Albanian Sign Language -Added: 2012-08-12 -%% -Type: language -Subtag: sqm -Description: Suma -Added: 2009-07-29 -%% -Type: language -Subtag: sqn -Description: Susquehannock -Added: 2009-07-29 -%% -Type: language -Subtag: sqo -Description: Sorkhei -Added: 2009-07-29 -%% -Type: language -Subtag: sqq -Description: Sou -Added: 2009-07-29 -%% -Type: language -Subtag: sqr -Description: Siculo Arabic -Added: 2009-07-29 -%% -Type: language -Subtag: sqs -Description: Sri Lankan Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: sqt -Description: Soqotri -Added: 2009-07-29 -%% -Type: language -Subtag: squ -Description: Squamish -Description: Sḵwx̱wú7mesh sníchim -Added: 2009-07-29 -%% -Type: language -Subtag: sqx -Description: Kufr Qassem Sign Language (KQSL) -Added: 2021-02-20 -%% -Type: language -Subtag: sra -Description: Saruga -Added: 2009-07-29 -%% -Type: language -Subtag: srb -Description: Sora -Added: 2009-07-29 -%% -Type: language -Subtag: src -Description: Logudorese Sardinian -Added: 2009-07-29 -Macrolanguage: sc -%% -Type: language -Subtag: sre -Description: Sara -Added: 2009-07-29 -%% -Type: language -Subtag: srf -Description: Nafi -Added: 2009-07-29 -%% -Type: language -Subtag: srg -Description: Sulod -Added: 2009-07-29 -%% -Type: language -Subtag: srh -Description: Sarikoli -Added: 2009-07-29 -%% -Type: language -Subtag: sri -Description: Siriano -Added: 2009-07-29 -%% -Type: language -Subtag: srk -Description: Serudung Murut -Added: 2009-07-29 -%% -Type: language -Subtag: srl -Description: Isirawa -Added: 2009-07-29 -%% -Type: language -Subtag: srm -Description: Saramaccan -Added: 2009-07-29 -%% -Type: language -Subtag: srn -Description: Sranan Tongo -Added: 2005-10-16 -%% -Type: language -Subtag: sro -Description: Campidanese Sardinian -Added: 2009-07-29 -Macrolanguage: sc -%% -Type: language -Subtag: srq -Description: Sirionó -Added: 2009-07-29 -%% -Type: language -Subtag: srr -Description: Serer -Added: 2005-10-16 -%% -Type: language -Subtag: srs -Description: Tsuut'ina -Description: Sarsi -Added: 2009-07-29 -%% -Type: language -Subtag: srt -Description: Sauri -Added: 2009-07-29 -%% -Type: language -Subtag: sru -Description: Suruí -Added: 2009-07-29 -%% -Type: language -Subtag: srv -Description: Southern Sorsoganon -Added: 2009-07-29 -%% -Type: language -Subtag: srw -Description: Serua -Added: 2009-07-29 -%% -Type: language -Subtag: srx -Description: Sirmauri -Added: 2009-07-29 -%% -Type: language -Subtag: sry -Description: Sera -Added: 2009-07-29 -%% -Type: language -Subtag: srz -Description: Shahmirzadi -Added: 2009-07-29 -%% -Type: language -Subtag: ssa -Description: Nilo-Saharan languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: ssb -Description: Southern Sama -Added: 2009-07-29 -%% -Type: language -Subtag: ssc -Description: Suba-Simbiti -Added: 2009-07-29 -%% -Type: language -Subtag: ssd -Description: Siroi -Added: 2009-07-29 -%% -Type: language -Subtag: sse -Description: Balangingi -Description: Bangingih Sama -Added: 2009-07-29 -%% -Type: language -Subtag: ssf -Description: Thao -Added: 2009-07-29 -%% -Type: language -Subtag: ssg -Description: Seimat -Added: 2009-07-29 -%% -Type: language -Subtag: ssh -Description: Shihhi Arabic -Added: 2009-07-29 -Macrolanguage: ar -%% -Type: language -Subtag: ssi -Description: Sansi -Added: 2009-07-29 -%% -Type: language -Subtag: ssj -Description: Sausi -Added: 2009-07-29 -%% -Type: language -Subtag: ssk -Description: Sunam -Added: 2009-07-29 -%% -Type: language -Subtag: ssl -Description: Western Sisaala -Added: 2009-07-29 -%% -Type: language -Subtag: ssm -Description: Semnam -Added: 2009-07-29 -%% -Type: language -Subtag: ssn -Description: Waata -Added: 2009-07-29 -%% -Type: language -Subtag: sso -Description: Sissano -Added: 2009-07-29 -%% -Type: language -Subtag: ssp -Description: Spanish Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: ssq -Description: So'a -Added: 2009-07-29 -%% -Type: language -Subtag: ssr -Description: Swiss-French Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: sss -Description: Sô -Added: 2009-07-29 -%% -Type: language -Subtag: sst -Description: Sinasina -Added: 2009-07-29 -%% -Type: language -Subtag: ssu -Description: Susuami -Added: 2009-07-29 -%% -Type: language -Subtag: ssv -Description: Shark Bay -Added: 2009-07-29 -%% -Type: language -Subtag: ssx -Description: Samberigi -Added: 2009-07-29 -%% -Type: language -Subtag: ssy -Description: Saho -Added: 2009-07-29 -%% -Type: language -Subtag: ssz -Description: Sengseng -Added: 2009-07-29 -%% -Type: language -Subtag: sta -Description: Settla -Added: 2009-07-29 -%% -Type: language -Subtag: stb -Description: Northern Subanen -Added: 2009-07-29 -%% -Type: language -Subtag: std -Description: Sentinel -Added: 2009-07-29 -%% -Type: language -Subtag: ste -Description: Liana-Seti -Added: 2009-07-29 -%% -Type: language -Subtag: stf -Description: Seta -Added: 2009-07-29 -%% -Type: language -Subtag: stg -Description: Trieng -Added: 2009-07-29 -%% -Type: language -Subtag: sth -Description: Shelta -Added: 2009-07-29 -%% -Type: language -Subtag: sti -Description: Bulo Stieng -Added: 2009-07-29 -%% -Type: language -Subtag: stj -Description: Matya Samo -Added: 2009-07-29 -%% -Type: language -Subtag: stk -Description: Arammba -Added: 2009-07-29 -%% -Type: language -Subtag: stl -Description: Stellingwerfs -Added: 2009-07-29 -%% -Type: language -Subtag: stm -Description: Setaman -Added: 2009-07-29 -%% -Type: language -Subtag: stn -Description: Owa -Added: 2009-07-29 -%% -Type: language -Subtag: sto -Description: Stoney -Added: 2009-07-29 -%% -Type: language -Subtag: stp -Description: Southeastern Tepehuan -Added: 2009-07-29 -%% -Type: language -Subtag: stq -Description: Saterfriesisch -Added: 2009-07-29 -%% -Type: language -Subtag: str -Description: Straits Salish -Added: 2009-07-29 -%% -Type: language -Subtag: sts -Description: Shumashti -Added: 2009-07-29 -%% -Type: language -Subtag: stt -Description: Budeh Stieng -Added: 2009-07-29 -%% -Type: language -Subtag: stu -Description: Samtao -Added: 2009-07-29 -%% -Type: language -Subtag: stv -Description: Silt'e -Added: 2009-07-29 -%% -Type: language -Subtag: stw -Description: Satawalese -Added: 2009-07-29 -%% -Type: language -Subtag: sty -Description: Siberian Tatar -Added: 2013-09-10 -%% -Type: language -Subtag: sua -Description: Sulka -Added: 2009-07-29 -%% -Type: language -Subtag: sub -Description: Suku -Added: 2009-07-29 -%% -Type: language -Subtag: suc -Description: Western Subanon -Added: 2009-07-29 -%% -Type: language -Subtag: sue -Description: Suena -Added: 2009-07-29 -%% -Type: language -Subtag: sug -Description: Suganga -Added: 2009-07-29 -%% -Type: language -Subtag: sui -Description: Suki -Added: 2009-07-29 -%% -Type: language -Subtag: suj -Description: Shubi -Added: 2009-07-29 -Comments: see also xsj -%% -Type: language -Subtag: suk -Description: Sukuma -Added: 2005-10-16 -%% -Type: language -Subtag: sul -Description: Surigaonon -Added: 2009-07-29 -Deprecated: 2010-03-11 -Comments: see sgd, tgn -%% -Type: language -Subtag: sum -Description: Sumo-Mayangna -Added: 2009-07-29 -Deprecated: 2010-03-11 -Comments: see ulw, yan -%% -Type: language -Subtag: suo -Description: Bouni -Added: 2021-02-20 -%% -Type: language -Subtag: suq -Description: Tirmaga-Chai Suri -Description: Suri -Added: 2009-07-29 -%% -Type: language -Subtag: sur -Description: Mwaghavul -Added: 2009-07-29 -%% -Type: language -Subtag: sus -Description: Susu -Added: 2005-10-16 -%% -Type: language -Subtag: sut -Description: Subtiaba -Added: 2009-07-29 -%% -Type: language -Subtag: suv -Description: Puroik -Added: 2009-07-29 -%% -Type: language -Subtag: suw -Description: Sumbwa -Added: 2009-07-29 -%% -Type: language -Subtag: sux -Description: Sumerian -Added: 2005-10-16 -%% -Type: language -Subtag: suy -Description: Suyá -Added: 2009-07-29 -%% -Type: language -Subtag: suz -Description: Sunwar -Added: 2009-07-29 -%% -Type: language -Subtag: sva -Description: Svan -Added: 2009-07-29 -%% -Type: language -Subtag: svb -Description: Ulau-Suain -Added: 2009-07-29 -%% -Type: language -Subtag: svc -Description: Vincentian Creole English -Added: 2009-07-29 -%% -Type: language -Subtag: sve -Description: Serili -Added: 2009-07-29 -%% -Type: language -Subtag: svk -Description: Slovakian Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: svm -Description: Slavomolisano -Added: 2013-09-10 -%% -Type: language -Subtag: svr -Description: Savara -Added: 2009-07-29 -Deprecated: 2016-05-30 -%% -Type: language -Subtag: svs -Description: Savosavo -Added: 2009-07-29 -%% -Type: language -Subtag: svx -Description: Skalvian -Added: 2009-07-29 -%% -Type: language -Subtag: swb -Description: Maore Comorian -Added: 2009-07-29 -%% -Type: language -Subtag: swc -Description: Congo Swahili -Added: 2009-07-29 -Macrolanguage: sw -%% -Type: language -Subtag: swf -Description: Sere -Added: 2009-07-29 -%% -Type: language -Subtag: swg -Description: Swabian -Added: 2009-07-29 -%% -Type: language -Subtag: swh -Description: Swahili (individual language) -Description: Kiswahili -Added: 2009-07-29 -Macrolanguage: sw -%% -Type: language -Subtag: swi -Description: Sui -Added: 2009-07-29 -%% -Type: language -Subtag: swj -Description: Sira -Added: 2009-07-29 -%% -Type: language -Subtag: swk -Description: Malawi Sena -Added: 2009-07-29 -%% -Type: language -Subtag: swl -Description: Swedish Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: swm -Description: Samosa -Added: 2009-07-29 -%% -Type: language -Subtag: swn -Description: Sawknah -Added: 2009-07-29 -%% -Type: language -Subtag: swo -Description: Shanenawa -Added: 2009-07-29 -%% -Type: language -Subtag: swp -Description: Suau -Added: 2009-07-29 -%% -Type: language -Subtag: swq -Description: Sharwa -Added: 2009-07-29 -%% -Type: language -Subtag: swr -Description: Saweru -Added: 2009-07-29 -%% -Type: language -Subtag: sws -Description: Seluwasan -Added: 2009-07-29 -%% -Type: language -Subtag: swt -Description: Sawila -Added: 2009-07-29 -%% -Type: language -Subtag: swu -Description: Suwawa -Added: 2009-07-29 -%% -Type: language -Subtag: swv -Description: Shekhawati -Added: 2009-07-29 -Macrolanguage: mwr -%% -Type: language -Subtag: sww -Description: Sowa -Added: 2009-07-29 -%% -Type: language -Subtag: swx -Description: Suruahá -Added: 2009-07-29 -%% -Type: language -Subtag: swy -Description: Sarua -Added: 2009-07-29 -%% -Type: language -Subtag: sxb -Description: Suba -Added: 2009-07-29 -%% -Type: language -Subtag: sxc -Description: Sicanian -Added: 2009-07-29 -%% -Type: language -Subtag: sxe -Description: Sighu -Added: 2009-07-29 -%% -Type: language -Subtag: sxg -Description: Shuhi -Description: Shixing -Added: 2009-07-29 -%% -Type: language -Subtag: sxk -Description: Southern Kalapuya -Added: 2009-07-29 -%% -Type: language -Subtag: sxl -Description: Selian -Added: 2009-07-29 -%% -Type: language -Subtag: sxm -Description: Samre -Added: 2009-07-29 -%% -Type: language -Subtag: sxn -Description: Sangir -Added: 2009-07-29 -%% -Type: language -Subtag: sxo -Description: Sorothaptic -Added: 2009-07-29 -%% -Type: language -Subtag: sxr -Description: Saaroa -Added: 2009-07-29 -%% -Type: language -Subtag: sxs -Description: Sasaru -Added: 2009-07-29 -%% -Type: language -Subtag: sxu -Description: Upper Saxon -Added: 2009-07-29 -%% -Type: language -Subtag: sxw -Description: Saxwe Gbe -Added: 2009-07-29 -%% -Type: language -Subtag: sya -Description: Siang -Added: 2009-07-29 -%% -Type: language -Subtag: syb -Description: Central Subanen -Added: 2009-07-29 -%% -Type: language -Subtag: syc -Description: Classical Syriac -Added: 2007-04-03 -%% -Type: language -Subtag: syd -Description: Samoyedic languages -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: syi -Description: Seki -Added: 2009-07-29 -%% -Type: language -Subtag: syk -Description: Sukur -Added: 2009-07-29 -%% -Type: language -Subtag: syl -Description: Sylheti -Added: 2009-07-29 -%% -Type: language -Subtag: sym -Description: Maya Samo -Added: 2009-07-29 -%% -Type: language -Subtag: syn -Description: Senaya -Added: 2009-07-29 -%% -Type: language -Subtag: syo -Description: Suoy -Added: 2009-07-29 -%% -Type: language -Subtag: syr -Description: Syriac -Added: 2005-10-16 -Scope: macrolanguage -%% -Type: language -Subtag: sys -Description: Sinyar -Added: 2009-07-29 -%% -Type: language -Subtag: syw -Description: Kagate -Added: 2009-07-29 -%% -Type: language -Subtag: syx -Description: Samay -Added: 2015-02-12 -%% -Type: language -Subtag: syy -Description: Al-Sayyid Bedouin Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: sza -Description: Semelai -Added: 2009-07-29 -%% -Type: language -Subtag: szb -Description: Ngalum -Added: 2009-07-29 -%% -Type: language -Subtag: szc -Description: Semaq Beri -Added: 2009-07-29 -%% -Type: language -Subtag: szd -Description: Seru -Added: 2009-07-29 -Deprecated: 2023-03-17 -Preferred-Value: umi -%% -Type: language -Subtag: sze -Description: Seze -Added: 2009-07-29 -%% -Type: language -Subtag: szg -Description: Sengele -Added: 2009-07-29 -%% -Type: language -Subtag: szl -Description: Silesian -Added: 2009-07-29 -%% -Type: language -Subtag: szn -Description: Sula -Added: 2009-07-29 -%% -Type: language -Subtag: szp -Description: Suabo -Added: 2009-07-29 -%% -Type: language -Subtag: szs -Description: Solomon Islands Sign Language -Added: 2017-02-23 -%% -Type: language -Subtag: szv -Description: Isubu -Description: Isu (Fako Division) -Added: 2009-07-29 -%% -Type: language -Subtag: szw -Description: Sawai -Added: 2009-07-29 -%% -Type: language -Subtag: szy -Description: Sakizaya -Added: 2019-04-16 -%% -Type: language -Subtag: taa -Description: Lower Tanana -Added: 2009-07-29 -%% -Type: language -Subtag: tab -Description: Tabassaran -Added: 2009-07-29 -%% -Type: language -Subtag: tac -Description: Lowland Tarahumara -Added: 2009-07-29 -%% -Type: language -Subtag: tad -Description: Tause -Added: 2009-07-29 -%% -Type: language -Subtag: tae -Description: Tariana -Added: 2009-07-29 -%% -Type: language -Subtag: taf -Description: Tapirapé -Added: 2009-07-29 -%% -Type: language -Subtag: tag -Description: Tagoi -Added: 2009-07-29 -%% -Type: language -Subtag: tai -Description: Tai languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: taj -Description: Eastern Tamang -Added: 2009-07-29 -%% -Type: language -Subtag: tak -Description: Tala -Added: 2009-07-29 -%% -Type: language -Subtag: tal -Description: Tal -Added: 2009-07-29 -%% -Type: language -Subtag: tan -Description: Tangale -Added: 2009-07-29 -%% -Type: language -Subtag: tao -Description: Yami -Added: 2009-07-29 -%% -Type: language -Subtag: tap -Description: Taabwa -Added: 2009-07-29 -%% -Type: language -Subtag: taq -Description: Tamasheq -Added: 2009-07-29 -Macrolanguage: tmh -%% -Type: language -Subtag: tar -Description: Central Tarahumara -Added: 2009-07-29 -%% -Type: language -Subtag: tas -Description: Tay Boi -Added: 2009-07-29 -%% -Type: language -Subtag: tau -Description: Upper Tanana -Added: 2009-07-29 -%% -Type: language -Subtag: tav -Description: Tatuyo -Added: 2009-07-29 -%% -Type: language -Subtag: taw -Description: Tai -Added: 2009-07-29 -%% -Type: language -Subtag: tax -Description: Tamki -Added: 2009-07-29 -%% -Type: language -Subtag: tay -Description: Atayal -Added: 2009-07-29 -%% -Type: language -Subtag: taz -Description: Tocho -Added: 2009-07-29 -%% -Type: language -Subtag: tba -Description: Aikanã -Added: 2009-07-29 -%% -Type: language -Subtag: tbb -Description: Tapeba -Added: 2009-07-29 -Deprecated: 2020-03-28 -%% -Type: language -Subtag: tbc -Description: Takia -Added: 2009-07-29 -%% -Type: language -Subtag: tbd -Description: Kaki Ae -Added: 2009-07-29 -%% -Type: language -Subtag: tbe -Description: Tanimbili -Added: 2009-07-29 -%% -Type: language -Subtag: tbf -Description: Mandara -Added: 2009-07-29 -%% -Type: language -Subtag: tbg -Description: North Tairora -Added: 2009-07-29 -%% -Type: language -Subtag: tbh -Description: Dharawal -Description: Thurawal -Added: 2009-07-29 -%% -Type: language -Subtag: tbi -Description: Gaam -Added: 2009-07-29 -%% -Type: language -Subtag: tbj -Description: Tiang -Added: 2009-07-29 -%% -Type: language -Subtag: tbk -Description: Calamian Tagbanwa -Added: 2009-07-29 -%% -Type: language -Subtag: tbl -Description: Tboli -Added: 2009-07-29 -%% -Type: language -Subtag: tbm -Description: Tagbu -Added: 2009-07-29 -%% -Type: language -Subtag: tbn -Description: Barro Negro Tunebo -Added: 2009-07-29 -%% -Type: language -Subtag: tbo -Description: Tawala -Added: 2009-07-29 -%% -Type: language -Subtag: tbp -Description: Taworta -Description: Diebroud -Added: 2009-07-29 -%% -Type: language -Subtag: tbq -Description: Tibeto-Burman languages -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: tbr -Description: Tumtum -Added: 2009-07-29 -%% -Type: language -Subtag: tbs -Description: Tanguat -Added: 2009-07-29 -%% -Type: language -Subtag: tbt -Description: Tembo (Kitembo) -Added: 2009-07-29 -%% -Type: language -Subtag: tbu -Description: Tubar -Added: 2009-07-29 -%% -Type: language -Subtag: tbv -Description: Tobo -Added: 2009-07-29 -%% -Type: language -Subtag: tbw -Description: Tagbanwa -Added: 2009-07-29 -%% -Type: language -Subtag: tbx -Description: Kapin -Added: 2009-07-29 -%% -Type: language -Subtag: tby -Description: Tabaru -Added: 2009-07-29 -%% -Type: language -Subtag: tbz -Description: Ditammari -Added: 2009-07-29 -%% -Type: language -Subtag: tca -Description: Ticuna -Added: 2009-07-29 -%% -Type: language -Subtag: tcb -Description: Tanacross -Added: 2009-07-29 -%% -Type: language -Subtag: tcc -Description: Datooga -Added: 2009-07-29 -%% -Type: language -Subtag: tcd -Description: Tafi -Added: 2009-07-29 -%% -Type: language -Subtag: tce -Description: Southern Tutchone -Added: 2009-07-29 -%% -Type: language -Subtag: tcf -Description: Malinaltepec Me'phaa -Description: Malinaltepec Tlapanec -Added: 2009-07-29 -%% -Type: language -Subtag: tcg -Description: Tamagario -Added: 2009-07-29 -%% -Type: language -Subtag: tch -Description: Turks And Caicos Creole English -Added: 2009-07-29 -%% -Type: language -Subtag: tci -Description: Wára -Added: 2009-07-29 -%% -Type: language -Subtag: tck -Description: Tchitchege -Added: 2009-07-29 -%% -Type: language -Subtag: tcl -Description: Taman (Myanmar) -Added: 2009-07-29 -%% -Type: language -Subtag: tcm -Description: Tanahmerah -Added: 2009-07-29 -%% -Type: language -Subtag: tcn -Description: Tichurong -Added: 2009-07-29 -%% -Type: language -Subtag: tco -Description: Taungyo -Added: 2009-07-29 -%% -Type: language -Subtag: tcp -Description: Tawr Chin -Added: 2009-07-29 -%% -Type: language -Subtag: tcq -Description: Kaiy -Added: 2009-07-29 -%% -Type: language -Subtag: tcs -Description: Torres Strait Creole -Description: Yumplatok -Added: 2009-07-29 -%% -Type: language -Subtag: tct -Description: T'en -Added: 2009-07-29 -%% -Type: language -Subtag: tcu -Description: Southeastern Tarahumara -Added: 2009-07-29 -%% -Type: language -Subtag: tcw -Description: Tecpatlán Totonac -Added: 2009-07-29 -%% -Type: language -Subtag: tcx -Description: Toda -Added: 2009-07-29 -%% -Type: language -Subtag: tcy -Description: Tulu -Added: 2009-07-29 -%% -Type: language -Subtag: tcz -Description: Thado Chin -Added: 2009-07-29 -%% -Type: language -Subtag: tda -Description: Tagdal -Added: 2009-07-29 -%% -Type: language -Subtag: tdb -Description: Panchpargania -Added: 2009-07-29 -%% -Type: language -Subtag: tdc -Description: Emberá-Tadó -Added: 2009-07-29 -%% -Type: language -Subtag: tdd -Description: Tai Nüa -Added: 2009-07-29 -%% -Type: language -Subtag: tde -Description: Tiranige Diga Dogon -Added: 2010-03-11 -%% -Type: language -Subtag: tdf -Description: Talieng -Added: 2009-07-29 -%% -Type: language -Subtag: tdg -Description: Western Tamang -Added: 2009-07-29 -%% -Type: language -Subtag: tdh -Description: Thulung -Added: 2009-07-29 -%% -Type: language -Subtag: tdi -Description: Tomadino -Added: 2009-07-29 -%% -Type: language -Subtag: tdj -Description: Tajio -Added: 2009-07-29 -%% -Type: language -Subtag: tdk -Description: Tambas -Added: 2009-07-29 -%% -Type: language -Subtag: tdl -Description: Sur -Added: 2009-07-29 -%% -Type: language -Subtag: tdm -Description: Taruma -Added: 2016-05-30 -%% -Type: language -Subtag: tdn -Description: Tondano -Added: 2009-07-29 -%% -Type: language -Subtag: tdo -Description: Teme -Added: 2009-07-29 -%% -Type: language -Subtag: tdq -Description: Tita -Added: 2009-07-29 -%% -Type: language -Subtag: tdr -Description: Todrah -Added: 2009-07-29 -%% -Type: language -Subtag: tds -Description: Doutai -Added: 2009-07-29 -%% -Type: language -Subtag: tdt -Description: Tetun Dili -Added: 2009-07-29 -%% -Type: language -Subtag: tdu -Description: Tempasuk Dusun -Added: 2009-07-29 -Deprecated: 2016-05-30 -Preferred-Value: dtp -%% -Type: language -Subtag: tdv -Description: Toro -Added: 2009-07-29 -%% -Type: language -Subtag: tdx -Description: Tandroy-Mahafaly Malagasy -Added: 2009-07-29 -Macrolanguage: mg -%% -Type: language -Subtag: tdy -Description: Tadyawan -Added: 2009-07-29 -%% -Type: language -Subtag: tea -Description: Temiar -Added: 2009-07-29 -%% -Type: language -Subtag: teb -Description: Tetete -Added: 2009-07-29 -%% -Type: language -Subtag: tec -Description: Terik -Added: 2009-07-29 -Macrolanguage: kln -%% -Type: language -Subtag: ted -Description: Tepo Krumen -Added: 2009-07-29 -%% -Type: language -Subtag: tee -Description: Huehuetla Tepehua -Added: 2009-07-29 -%% -Type: language -Subtag: tef -Description: Teressa -Added: 2009-07-29 -%% -Type: language -Subtag: teg -Description: Teke-Tege -Added: 2009-07-29 -%% -Type: language -Subtag: teh -Description: Tehuelche -Added: 2009-07-29 -%% -Type: language -Subtag: tei -Description: Torricelli -Added: 2009-07-29 -%% -Type: language -Subtag: tek -Description: Ibali Teke -Added: 2009-07-29 -%% -Type: language -Subtag: tem -Description: Timne -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: ten -Description: Tama (Colombia) -Added: 2009-07-29 -%% -Type: language -Subtag: teo -Description: Teso -Added: 2009-07-29 -%% -Type: language -Subtag: tep -Description: Tepecano -Added: 2009-07-29 -%% -Type: language -Subtag: teq -Description: Temein -Added: 2009-07-29 -%% -Type: language -Subtag: ter -Description: Tereno -Added: 2005-10-16 -%% -Type: language -Subtag: tes -Description: Tengger -Added: 2009-07-29 -%% -Type: language -Subtag: tet -Description: Tetum -Added: 2005-10-16 -%% -Type: language -Subtag: teu -Description: Soo -Added: 2009-07-29 -%% -Type: language -Subtag: tev -Description: Teor -Added: 2009-07-29 -%% -Type: language -Subtag: tew -Description: Tewa (USA) -Added: 2009-07-29 -%% -Type: language -Subtag: tex -Description: Tennet -Added: 2009-07-29 -%% -Type: language -Subtag: tey -Description: Tulishi -Added: 2009-07-29 -%% -Type: language -Subtag: tez -Description: Tetserret -Added: 2018-03-08 -%% -Type: language -Subtag: tfi -Description: Tofin Gbe -Added: 2009-07-29 -%% -Type: language -Subtag: tfn -Description: Tanaina -Added: 2009-07-29 -%% -Type: language -Subtag: tfo -Description: Tefaro -Added: 2009-07-29 -%% -Type: language -Subtag: tfr -Description: Teribe -Added: 2009-07-29 -%% -Type: language -Subtag: tft -Description: Ternate -Added: 2009-07-29 -%% -Type: language -Subtag: tga -Description: Sagalla -Added: 2009-07-29 -%% -Type: language -Subtag: tgb -Description: Tobilung -Added: 2009-07-29 -%% -Type: language -Subtag: tgc -Description: Tigak -Added: 2009-07-29 -%% -Type: language -Subtag: tgd -Description: Ciwogai -Added: 2009-07-29 -%% -Type: language -Subtag: tge -Description: Eastern Gorkha Tamang -Added: 2009-07-29 -%% -Type: language -Subtag: tgf -Description: Chalikha -Added: 2009-07-29 -%% -Type: language -Subtag: tgg -Description: Tangga -Added: 2009-07-29 -Deprecated: 2013-09-10 -Comments: see bjp, hrc, hrw -%% -Type: language -Subtag: tgh -Description: Tobagonian Creole English -Added: 2009-07-29 -%% -Type: language -Subtag: tgi -Description: Lawunuia -Added: 2009-07-29 -%% -Type: language -Subtag: tgj -Description: Tagin -Added: 2012-08-12 -%% -Type: language -Subtag: tgn -Description: Tandaganon -Added: 2010-03-11 -%% -Type: language -Subtag: tgo -Description: Sudest -Added: 2009-07-29 -%% -Type: language -Subtag: tgp -Description: Tangoa -Added: 2009-07-29 -%% -Type: language -Subtag: tgq -Description: Tring -Added: 2009-07-29 -%% -Type: language -Subtag: tgr -Description: Tareng -Added: 2009-07-29 -%% -Type: language -Subtag: tgs -Description: Nume -Added: 2009-07-29 -%% -Type: language -Subtag: tgt -Description: Central Tagbanwa -Added: 2009-07-29 -%% -Type: language -Subtag: tgu -Description: Tanggu -Added: 2009-07-29 -%% -Type: language -Subtag: tgv -Description: Tingui-Boto -Added: 2009-07-29 -%% -Type: language -Subtag: tgw -Description: Tagwana Senoufo -Added: 2009-07-29 -%% -Type: language -Subtag: tgx -Description: Tagish -Added: 2009-07-29 -%% -Type: language -Subtag: tgy -Description: Togoyo -Added: 2009-07-29 -%% -Type: language -Subtag: tgz -Description: Tagalaka -Added: 2012-08-12 -%% -Type: language -Subtag: thc -Description: Tai Hang Tong -Added: 2009-07-29 -Deprecated: 2016-05-30 -Preferred-Value: tpo -%% -Type: language -Subtag: thd -Description: Kuuk Thaayorre -Description: Thayore -Added: 2009-07-29 -%% -Type: language -Subtag: the -Description: Chitwania Tharu -Added: 2009-07-29 -%% -Type: language -Subtag: thf -Description: Thangmi -Added: 2009-07-29 -%% -Type: language -Subtag: thh -Description: Northern Tarahumara -Added: 2009-07-29 -%% -Type: language -Subtag: thi -Description: Tai Long -Added: 2009-07-29 -%% -Type: language -Subtag: thk -Description: Tharaka -Description: Kitharaka -Added: 2009-07-29 -%% -Type: language -Subtag: thl -Description: Dangaura Tharu -Added: 2009-07-29 -%% -Type: language -Subtag: thm -Description: Aheu -Added: 2009-07-29 -%% -Type: language -Subtag: thn -Description: Thachanadan -Added: 2009-07-29 -%% -Type: language -Subtag: thp -Description: Thompson -Description: Nłeʔkepmxcín -Description: Thompson River Salish -Added: 2009-07-29 -%% -Type: language -Subtag: thq -Description: Kochila Tharu -Added: 2009-07-29 -%% -Type: language -Subtag: thr -Description: Rana Tharu -Added: 2009-07-29 -%% -Type: language -Subtag: ths -Description: Thakali -Added: 2009-07-29 -%% -Type: language -Subtag: tht -Description: Tahltan -Description: Tāłtān -Added: 2009-07-29 -%% -Type: language -Subtag: thu -Description: Thuri -Added: 2009-07-29 -%% -Type: language -Subtag: thv -Description: Tahaggart Tamahaq -Added: 2009-07-29 -Macrolanguage: tmh -%% -Type: language -Subtag: thw -Description: Thudam -Added: 2009-07-29 -Deprecated: 2020-06-08 -Preferred-Value: ola -%% -Type: language -Subtag: thx -Description: The -Added: 2009-07-29 -Deprecated: 2015-02-12 -Preferred-Value: oyb -%% -Type: language -Subtag: thy -Description: Tha -Added: 2009-07-29 -%% -Type: language -Subtag: thz -Description: Tayart Tamajeq -Added: 2009-07-29 -Macrolanguage: tmh -%% -Type: language -Subtag: tia -Description: Tidikelt Tamazight -Added: 2009-07-29 -%% -Type: language -Subtag: tic -Description: Tira -Added: 2009-07-29 -%% -Type: language -Subtag: tid -Description: Tidong -Added: 2009-07-29 -Deprecated: 2016-05-30 -Comments: see itd, ntd -%% -Type: language -Subtag: tie -Description: Tingal -Added: 2009-07-29 -Deprecated: 2011-08-16 -Preferred-Value: ras -%% -Type: language -Subtag: tif -Description: Tifal -Added: 2009-07-29 -%% -Type: language -Subtag: tig -Description: Tigre -Added: 2005-10-16 -%% -Type: language -Subtag: tih -Description: Timugon Murut -Added: 2009-07-29 -%% -Type: language -Subtag: tii -Description: Tiene -Added: 2009-07-29 -%% -Type: language -Subtag: tij -Description: Tilung -Added: 2009-07-29 -%% -Type: language -Subtag: tik -Description: Tikar -Added: 2009-07-29 -%% -Type: language -Subtag: til -Description: Tillamook -Added: 2009-07-29 -%% -Type: language -Subtag: tim -Description: Timbe -Added: 2009-07-29 -%% -Type: language -Subtag: tin -Description: Tindi -Added: 2009-07-29 -%% -Type: language -Subtag: tio -Description: Teop -Added: 2009-07-29 -%% -Type: language -Subtag: tip -Description: Trimuris -Added: 2009-07-29 -%% -Type: language -Subtag: tiq -Description: Tiéfo -Added: 2009-07-29 -%% -Type: language -Subtag: tis -Description: Masadiit Itneg -Added: 2009-07-29 -%% -Type: language -Subtag: tit -Description: Tinigua -Added: 2009-07-29 -%% -Type: language -Subtag: tiu -Description: Adasen -Added: 2009-07-29 -%% -Type: language -Subtag: tiv -Description: Tiv -Added: 2005-10-16 -%% -Type: language -Subtag: tiw -Description: Tiwi -Added: 2009-07-29 -%% -Type: language -Subtag: tix -Description: Southern Tiwa -Added: 2009-07-29 -%% -Type: language -Subtag: tiy -Description: Tiruray -Added: 2009-07-29 -%% -Type: language -Subtag: tiz -Description: Tai Hongjin -Added: 2009-07-29 -%% -Type: language -Subtag: tja -Description: Tajuasohn -Added: 2009-07-29 -%% -Type: language -Subtag: tjg -Description: Tunjung -Added: 2009-07-29 -%% -Type: language -Subtag: tji -Description: Northern Tujia -Added: 2009-07-29 -%% -Type: language -Subtag: tjj -Description: Tjungundji -Added: 2019-04-16 -%% -Type: language -Subtag: tjl -Description: Tai Laing -Added: 2012-08-12 -%% -Type: language -Subtag: tjm -Description: Timucua -Added: 2009-07-29 -%% -Type: language -Subtag: tjn -Description: Tonjon -Added: 2009-07-29 -%% -Type: language -Subtag: tjo -Description: Temacine Tamazight -Added: 2009-07-29 -%% -Type: language -Subtag: tjp -Description: Tjupany -Added: 2019-04-16 -%% -Type: language -Subtag: tjs -Description: Southern Tujia -Added: 2009-07-29 -%% -Type: language -Subtag: tju -Description: Tjurruru -Added: 2009-07-29 -%% -Type: language -Subtag: tjw -Description: Djabwurrung -Added: 2013-09-10 -%% -Type: language -Subtag: tka -Description: Truká -Added: 2009-07-29 -%% -Type: language -Subtag: tkb -Description: Buksa -Added: 2009-07-29 -%% -Type: language -Subtag: tkd -Description: Tukudede -Added: 2009-07-29 -%% -Type: language -Subtag: tke -Description: Takwane -Added: 2009-07-29 -%% -Type: language -Subtag: tkf -Description: Tukumanféd -Added: 2009-07-29 -%% -Type: language -Subtag: tkg -Description: Tesaka Malagasy -Added: 2011-08-16 -Macrolanguage: mg -%% -Type: language -Subtag: tkk -Description: Takpa -Added: 2009-07-29 -Deprecated: 2011-08-16 -Preferred-Value: twm -%% -Type: language -Subtag: tkl -Description: Tokelau -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: tkm -Description: Takelma -Added: 2009-07-29 -%% -Type: language -Subtag: tkn -Description: Toku-No-Shima -Added: 2009-07-29 -%% -Type: language -Subtag: tkp -Description: Tikopia -Added: 2009-07-29 -%% -Type: language -Subtag: tkq -Description: Tee -Added: 2009-07-29 -%% -Type: language -Subtag: tkr -Description: Tsakhur -Added: 2009-07-29 -%% -Type: language -Subtag: tks -Description: Takestani -Added: 2009-07-29 -%% -Type: language -Subtag: tkt -Description: Kathoriya Tharu -Added: 2009-07-29 -%% -Type: language -Subtag: tku -Description: Upper Necaxa Totonac -Added: 2009-07-29 -%% -Type: language -Subtag: tkv -Description: Mur Pano -Added: 2014-02-28 -%% -Type: language -Subtag: tkw -Description: Teanu -Added: 2009-07-29 -%% -Type: language -Subtag: tkx -Description: Tangko -Added: 2009-07-29 -%% -Type: language -Subtag: tkz -Description: Takua -Added: 2009-07-29 -%% -Type: language -Subtag: tla -Description: Southwestern Tepehuan -Added: 2009-07-29 -%% -Type: language -Subtag: tlb -Description: Tobelo -Added: 2009-07-29 -%% -Type: language -Subtag: tlc -Description: Yecuatla Totonac -Added: 2009-07-29 -%% -Type: language -Subtag: tld -Description: Talaud -Added: 2009-07-29 -%% -Type: language -Subtag: tlf -Description: Telefol -Added: 2009-07-29 -%% -Type: language -Subtag: tlg -Description: Tofanma -Added: 2009-07-29 -%% -Type: language -Subtag: tlh -Description: Klingon -Description: tlhIngan Hol -Added: 2005-10-16 -%% -Type: language -Subtag: tli -Description: Tlingit -Added: 2005-10-16 -%% -Type: language -Subtag: tlj -Description: Talinga-Bwisi -Added: 2009-07-29 -%% -Type: language -Subtag: tlk -Description: Taloki -Added: 2009-07-29 -%% -Type: language -Subtag: tll -Description: Tetela -Added: 2009-07-29 -%% -Type: language -Subtag: tlm -Description: Tolomako -Added: 2009-07-29 -%% -Type: language -Subtag: tln -Description: Talondo' -Added: 2009-07-29 -%% -Type: language -Subtag: tlo -Description: Talodi -Added: 2009-07-29 -%% -Type: language -Subtag: tlp -Description: Filomena Mata-Coahuitlán Totonac -Added: 2009-07-29 -%% -Type: language -Subtag: tlq -Description: Tai Loi -Added: 2009-07-29 -%% -Type: language -Subtag: tlr -Description: Talise -Added: 2009-07-29 -%% -Type: language -Subtag: tls -Description: Tambotalo -Added: 2009-07-29 -%% -Type: language -Subtag: tlt -Description: Sou Nama -Description: Teluti -Added: 2009-07-29 -%% -Type: language -Subtag: tlu -Description: Tulehu -Added: 2009-07-29 -%% -Type: language -Subtag: tlv -Description: Taliabu -Added: 2009-07-29 -%% -Type: language -Subtag: tlw -Description: South Wemale -Added: 2009-07-29 -Deprecated: 2012-08-12 -Preferred-Value: weo -%% -Type: language -Subtag: tlx -Description: Khehek -Added: 2009-07-29 -%% -Type: language -Subtag: tly -Description: Talysh -Added: 2009-07-29 -%% -Type: language -Subtag: tma -Description: Tama (Chad) -Added: 2009-07-29 -%% -Type: language -Subtag: tmb -Description: Katbol -Description: Avava -Added: 2009-07-29 -%% -Type: language -Subtag: tmc -Description: Tumak -Added: 2009-07-29 -%% -Type: language -Subtag: tmd -Description: Haruai -Added: 2009-07-29 -%% -Type: language -Subtag: tme -Description: Tremembé -Added: 2009-07-29 -%% -Type: language -Subtag: tmf -Description: Toba-Maskoy -Added: 2009-07-29 -%% -Type: language -Subtag: tmg -Description: Ternateño -Added: 2009-07-29 -%% -Type: language -Subtag: tmh -Description: Tamashek -Added: 2005-10-16 -Suppress-Script: Latn -Scope: macrolanguage -%% -Type: language -Subtag: tmi -Description: Tutuba -Added: 2009-07-29 -%% -Type: language -Subtag: tmj -Description: Samarokena -Added: 2009-07-29 -%% -Type: language -Subtag: tmk -Description: Northwestern Tamang -Added: 2009-07-29 -Deprecated: 2023-03-17 -Preferred-Value: tdg -%% -Type: language -Subtag: tml -Description: Tamnim Citak -Added: 2009-07-29 -%% -Type: language -Subtag: tmm -Description: Tai Thanh -Added: 2009-07-29 -%% -Type: language -Subtag: tmn -Description: Taman (Indonesia) -Added: 2009-07-29 -%% -Type: language -Subtag: tmo -Description: Temoq -Added: 2009-07-29 -%% -Type: language -Subtag: tmp -Description: Tai Mène -Added: 2009-07-29 -Deprecated: 2016-05-30 -Preferred-Value: tyj -%% -Type: language -Subtag: tmq -Description: Tumleo -Added: 2009-07-29 -%% -Type: language -Subtag: tmr -Description: Jewish Babylonian Aramaic (ca. 200-1200 CE) -Added: 2009-07-29 -%% -Type: language -Subtag: tms -Description: Tima -Added: 2009-07-29 -%% -Type: language -Subtag: tmt -Description: Tasmate -Added: 2009-07-29 -%% -Type: language -Subtag: tmu -Description: Iau -Added: 2009-07-29 -%% -Type: language -Subtag: tmv -Description: Tembo (Motembo) -Added: 2009-07-29 -%% -Type: language -Subtag: tmw -Description: Temuan -Added: 2009-07-29 -Macrolanguage: ms -%% -Type: language -Subtag: tmy -Description: Tami -Added: 2009-07-29 -%% -Type: language -Subtag: tmz -Description: Tamanaku -Added: 2009-07-29 -%% -Type: language -Subtag: tna -Description: Tacana -Added: 2009-07-29 -%% -Type: language -Subtag: tnb -Description: Western Tunebo -Added: 2009-07-29 -%% -Type: language -Subtag: tnc -Description: Tanimuca-Retuarã -Added: 2009-07-29 -%% -Type: language -Subtag: tnd -Description: Angosturas Tunebo -Added: 2009-07-29 -%% -Type: language -Subtag: tne -Description: Tinoc Kallahan -Added: 2009-07-29 -Deprecated: 2016-05-30 -Preferred-Value: kak -%% -Type: language -Subtag: tnf -Description: Tangshewi -Added: 2009-07-29 -Deprecated: 2010-03-11 -Preferred-Value: prs -%% -Type: language -Subtag: tng -Description: Tobanga -Added: 2009-07-29 -%% -Type: language -Subtag: tnh -Description: Maiani -Added: 2009-07-29 -%% -Type: language -Subtag: tni -Description: Tandia -Added: 2009-07-29 -%% -Type: language -Subtag: tnk -Description: Kwamera -Added: 2009-07-29 -%% -Type: language -Subtag: tnl -Description: Lenakel -Added: 2009-07-29 -%% -Type: language -Subtag: tnm -Description: Tabla -Added: 2009-07-29 -%% -Type: language -Subtag: tnn -Description: North Tanna -Added: 2009-07-29 -%% -Type: language -Subtag: tno -Description: Toromono -Added: 2009-07-29 -%% -Type: language -Subtag: tnp -Description: Whitesands -Added: 2009-07-29 -%% -Type: language -Subtag: tnq -Description: Taino -Added: 2009-07-29 -%% -Type: language -Subtag: tnr -Description: Ménik -Added: 2009-07-29 -%% -Type: language -Subtag: tns -Description: Tenis -Added: 2009-07-29 -%% -Type: language -Subtag: tnt -Description: Tontemboan -Added: 2009-07-29 -%% -Type: language -Subtag: tnu -Description: Tay Khang -Added: 2009-07-29 -%% -Type: language -Subtag: tnv -Description: Tangchangya -Added: 2009-07-29 -%% -Type: language -Subtag: tnw -Description: Tonsawang -Added: 2009-07-29 -%% -Type: language -Subtag: tnx -Description: Tanema -Added: 2009-07-29 -%% -Type: language -Subtag: tny -Description: Tongwe -Added: 2009-07-29 -%% -Type: language -Subtag: tnz -Description: Ten'edn -Added: 2009-07-29 -%% -Type: language -Subtag: tob -Description: Toba -Added: 2009-07-29 -%% -Type: language -Subtag: toc -Description: Coyutla Totonac -Added: 2009-07-29 -%% -Type: language -Subtag: tod -Description: Toma -Added: 2009-07-29 -%% -Type: language -Subtag: toe -Description: Tomedes -Added: 2009-07-29 -Deprecated: 2016-05-30 -%% -Type: language -Subtag: tof -Description: Gizrra -Added: 2009-07-29 -%% -Type: language -Subtag: tog -Description: Tonga (Nyasa) -Added: 2005-10-16 -%% -Type: language -Subtag: toh -Description: Gitonga -Added: 2009-07-29 -%% -Type: language -Subtag: toi -Description: Tonga (Zambia) -Added: 2009-07-29 -%% -Type: language -Subtag: toj -Description: Tojolabal -Added: 2009-07-29 -%% -Type: language -Subtag: tok -Description: Toki Pona -Added: 2022-02-25 -%% -Type: language -Subtag: tol -Description: Tolowa -Added: 2009-07-29 -%% -Type: language -Subtag: tom -Description: Tombulu -Added: 2009-07-29 -%% -Type: language -Subtag: too -Description: Xicotepec De Juárez Totonac -Added: 2009-07-29 -%% -Type: language -Subtag: top -Description: Papantla Totonac -Added: 2009-07-29 -%% -Type: language -Subtag: toq -Description: Toposa -Added: 2009-07-29 -%% -Type: language -Subtag: tor -Description: Togbo-Vara Banda -Added: 2009-07-29 -%% -Type: language -Subtag: tos -Description: Highland Totonac -Added: 2009-07-29 -%% -Type: language -Subtag: tou -Description: Tho -Added: 2009-07-29 -%% -Type: language -Subtag: tov -Description: Upper Taromi -Added: 2009-07-29 -%% -Type: language -Subtag: tow -Description: Jemez -Added: 2009-07-29 -%% -Type: language -Subtag: tox -Description: Tobian -Added: 2009-07-29 -%% -Type: language -Subtag: toy -Description: Topoiyo -Added: 2009-07-29 -%% -Type: language -Subtag: toz -Description: To -Added: 2009-07-29 -%% -Type: language -Subtag: tpa -Description: Taupota -Added: 2009-07-29 -%% -Type: language -Subtag: tpc -Description: Azoyú Me'phaa -Description: Azoyú Tlapanec -Added: 2009-07-29 -%% -Type: language -Subtag: tpe -Description: Tippera -Added: 2009-07-29 -%% -Type: language -Subtag: tpf -Description: Tarpia -Added: 2009-07-29 -%% -Type: language -Subtag: tpg -Description: Kula -Added: 2009-07-29 -%% -Type: language -Subtag: tpi -Description: Tok Pisin -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: tpj -Description: Tapieté -Added: 2009-07-29 -%% -Type: language -Subtag: tpk -Description: Tupinikin -Added: 2009-07-29 -%% -Type: language -Subtag: tpl -Description: Tlacoapa Me'phaa -Description: Tlacoapa Tlapanec -Added: 2009-07-29 -%% -Type: language -Subtag: tpm -Description: Tampulma -Added: 2009-07-29 -%% -Type: language -Subtag: tpn -Description: Tupinambá -Added: 2009-07-29 -%% -Type: language -Subtag: tpo -Description: Tai Pao -Added: 2009-07-29 -%% -Type: language -Subtag: tpp -Description: Pisaflores Tepehua -Added: 2009-07-29 -%% -Type: language -Subtag: tpq -Description: Tukpa -Added: 2009-07-29 -%% -Type: language -Subtag: tpr -Description: Tuparí -Added: 2009-07-29 -%% -Type: language -Subtag: tpt -Description: Tlachichilco Tepehua -Added: 2009-07-29 -%% -Type: language -Subtag: tpu -Description: Tampuan -Added: 2009-07-29 -%% -Type: language -Subtag: tpv -Description: Tanapag -Added: 2009-07-29 -%% -Type: language -Subtag: tpw -Description: Tupí -Added: 2009-07-29 -Deprecated: 2023-03-17 -Preferred-Value: tpn -%% -Type: language -Subtag: tpx -Description: Acatepec Me'phaa -Description: Acatepec Tlapanec -Added: 2009-07-29 -%% -Type: language -Subtag: tpy -Description: Trumai -Added: 2009-07-29 -%% -Type: language -Subtag: tpz -Description: Tinputz -Added: 2009-07-29 -%% -Type: language -Subtag: tqb -Description: Tembé -Added: 2009-07-29 -%% -Type: language -Subtag: tql -Description: Lehali -Added: 2009-07-29 -%% -Type: language -Subtag: tqm -Description: Turumsa -Added: 2009-07-29 -%% -Type: language -Subtag: tqn -Description: Tenino -Added: 2009-07-29 -%% -Type: language -Subtag: tqo -Description: Toaripi -Added: 2009-07-29 -%% -Type: language -Subtag: tqp -Description: Tomoip -Added: 2009-07-29 -%% -Type: language -Subtag: tqq -Description: Tunni -Added: 2009-07-29 -%% -Type: language -Subtag: tqr -Description: Torona -Added: 2009-07-29 -%% -Type: language -Subtag: tqt -Description: Western Totonac -Added: 2009-07-29 -%% -Type: language -Subtag: tqu -Description: Touo -Added: 2009-07-29 -%% -Type: language -Subtag: tqw -Description: Tonkawa -Added: 2009-07-29 -%% -Type: language -Subtag: tra -Description: Tirahi -Added: 2009-07-29 -%% -Type: language -Subtag: trb -Description: Terebu -Added: 2009-07-29 -%% -Type: language -Subtag: trc -Description: Copala Triqui -Added: 2009-07-29 -%% -Type: language -Subtag: trd -Description: Turi -Added: 2009-07-29 -%% -Type: language -Subtag: tre -Description: East Tarangan -Added: 2009-07-29 -%% -Type: language -Subtag: trf -Description: Trinidadian Creole English -Added: 2009-07-29 -%% -Type: language -Subtag: trg -Description: Lishán Didán -Added: 2009-07-29 -%% -Type: language -Subtag: trh -Description: Turaka -Added: 2009-07-29 -%% -Type: language -Subtag: tri -Description: Trió -Added: 2009-07-29 -%% -Type: language -Subtag: trj -Description: Toram -Added: 2009-07-29 -%% -Type: language -Subtag: trk -Description: Turkic languages -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: trl -Description: Traveller Scottish -Added: 2009-07-29 -%% -Type: language -Subtag: trm -Description: Tregami -Added: 2009-07-29 -%% -Type: language -Subtag: trn -Description: Trinitario -Added: 2009-07-29 -%% -Type: language -Subtag: tro -Description: Tarao Naga -Added: 2009-07-29 -%% -Type: language -Subtag: trp -Description: Kok Borok -Added: 2009-07-29 -%% -Type: language -Subtag: trq -Description: San Martín Itunyoso Triqui -Added: 2009-07-29 -%% -Type: language -Subtag: trr -Description: Taushiro -Added: 2009-07-29 -%% -Type: language -Subtag: trs -Description: Chicahuaxtla Triqui -Added: 2009-07-29 -%% -Type: language -Subtag: trt -Description: Tunggare -Added: 2009-07-29 -%% -Type: language -Subtag: tru -Description: Turoyo -Description: Surayt -Added: 2009-07-29 -%% -Type: language -Subtag: trv -Description: Sediq -Description: Seediq -Description: Taroko -Added: 2009-07-29 -%% -Type: language -Subtag: trw -Description: Torwali -Added: 2009-07-29 -%% -Type: language -Subtag: trx -Description: Tringgus-Sembaan Bidayuh -Added: 2009-07-29 -%% -Type: language -Subtag: try -Description: Turung -Added: 2009-07-29 -%% -Type: language -Subtag: trz -Description: Torá -Added: 2009-07-29 -%% -Type: language -Subtag: tsa -Description: Tsaangi -Added: 2009-07-29 -%% -Type: language -Subtag: tsb -Description: Tsamai -Added: 2009-07-29 -%% -Type: language -Subtag: tsc -Description: Tswa -Added: 2009-07-29 -%% -Type: language -Subtag: tsd -Description: Tsakonian -Added: 2009-07-29 -%% -Type: language -Subtag: tse -Description: Tunisian Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: tsf -Description: Southwestern Tamang -Added: 2009-07-29 -Deprecated: 2015-02-12 -Preferred-Value: taj -%% -Type: language -Subtag: tsg -Description: Tausug -Added: 2009-07-29 -%% -Type: language -Subtag: tsh -Description: Tsuvan -Added: 2009-07-29 -%% -Type: language -Subtag: tsi -Description: Tsimshian -Added: 2005-10-16 -%% -Type: language -Subtag: tsj -Description: Tshangla -Added: 2009-07-29 -%% -Type: language -Subtag: tsk -Description: Tseku -Added: 2009-07-29 -%% -Type: language -Subtag: tsl -Description: Ts'ün-Lao -Added: 2009-07-29 -%% -Type: language -Subtag: tsm -Description: Turkish Sign Language -Description: Türk İşaret Dili -Added: 2009-07-29 -%% -Type: language -Subtag: tsp -Description: Northern Toussian -Added: 2009-07-29 -%% -Type: language -Subtag: tsq -Description: Thai Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: tsr -Description: Akei -Added: 2009-07-29 -%% -Type: language -Subtag: tss -Description: Taiwan Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: tst -Description: Tondi Songway Kiini -Added: 2011-08-16 -%% -Type: language -Subtag: tsu -Description: Tsou -Added: 2009-07-29 -%% -Type: language -Subtag: tsv -Description: Tsogo -Added: 2009-07-29 -%% -Type: language -Subtag: tsw -Description: Tsishingini -Added: 2009-07-29 -%% -Type: language -Subtag: tsx -Description: Mubami -Added: 2009-07-29 -%% -Type: language -Subtag: tsy -Description: Tebul Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: tsz -Description: Purepecha -Added: 2009-07-29 -%% -Type: language -Subtag: tta -Description: Tutelo -Added: 2009-07-29 -%% -Type: language -Subtag: ttb -Description: Gaa -Added: 2009-07-29 -%% -Type: language -Subtag: ttc -Description: Tektiteko -Added: 2009-07-29 -%% -Type: language -Subtag: ttd -Description: Tauade -Added: 2009-07-29 -%% -Type: language -Subtag: tte -Description: Bwanabwana -Added: 2009-07-29 -%% -Type: language -Subtag: ttf -Description: Tuotomb -Added: 2009-07-29 -%% -Type: language -Subtag: ttg -Description: Tutong -Added: 2009-07-29 -%% -Type: language -Subtag: tth -Description: Upper Ta'oih -Added: 2009-07-29 -%% -Type: language -Subtag: tti -Description: Tobati -Added: 2009-07-29 -%% -Type: language -Subtag: ttj -Description: Tooro -Added: 2009-07-29 -%% -Type: language -Subtag: ttk -Description: Totoro -Added: 2009-07-29 -%% -Type: language -Subtag: ttl -Description: Totela -Added: 2009-07-29 -%% -Type: language -Subtag: ttm -Description: Northern Tutchone -Added: 2009-07-29 -%% -Type: language -Subtag: ttn -Description: Towei -Added: 2009-07-29 -%% -Type: language -Subtag: tto -Description: Lower Ta'oih -Added: 2009-07-29 -%% -Type: language -Subtag: ttp -Description: Tombelala -Added: 2009-07-29 -%% -Type: language -Subtag: ttq -Description: Tawallammat Tamajaq -Added: 2009-07-29 -Macrolanguage: tmh -%% -Type: language -Subtag: ttr -Description: Tera -Added: 2009-07-29 -%% -Type: language -Subtag: tts -Description: Northeastern Thai -Added: 2009-07-29 -%% -Type: language -Subtag: ttt -Description: Muslim Tat -Added: 2009-07-29 -%% -Type: language -Subtag: ttu -Description: Torau -Added: 2009-07-29 -%% -Type: language -Subtag: ttv -Description: Titan -Added: 2009-07-29 -%% -Type: language -Subtag: ttw -Description: Long Wat -Added: 2009-07-29 -%% -Type: language -Subtag: tty -Description: Sikaritai -Added: 2009-07-29 -%% -Type: language -Subtag: ttz -Description: Tsum -Added: 2009-07-29 -%% -Type: language -Subtag: tua -Description: Wiarumus -Added: 2009-07-29 -%% -Type: language -Subtag: tub -Description: Tübatulabal -Added: 2009-07-29 -%% -Type: language -Subtag: tuc -Description: Mutu -Added: 2009-07-29 -%% -Type: language -Subtag: tud -Description: Tuxá -Added: 2009-07-29 -%% -Type: language -Subtag: tue -Description: Tuyuca -Added: 2009-07-29 -%% -Type: language -Subtag: tuf -Description: Central Tunebo -Added: 2009-07-29 -%% -Type: language -Subtag: tug -Description: Tunia -Added: 2009-07-29 -%% -Type: language -Subtag: tuh -Description: Taulil -Added: 2009-07-29 -%% -Type: language -Subtag: tui -Description: Tupuri -Added: 2009-07-29 -%% -Type: language -Subtag: tuj -Description: Tugutil -Added: 2009-07-29 -%% -Type: language -Subtag: tul -Description: Tula -Added: 2009-07-29 -%% -Type: language -Subtag: tum -Description: Tumbuka -Added: 2005-10-16 -%% -Type: language -Subtag: tun -Description: Tunica -Added: 2009-07-29 -%% -Type: language -Subtag: tuo -Description: Tucano -Added: 2009-07-29 -%% -Type: language -Subtag: tup -Description: Tupi languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: tuq -Description: Tedaga -Added: 2009-07-29 -%% -Type: language -Subtag: tus -Description: Tuscarora -Added: 2009-07-29 -%% -Type: language -Subtag: tut -Description: Altaic languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: tuu -Description: Tututni -Added: 2009-07-29 -%% -Type: language -Subtag: tuv -Description: Turkana -Added: 2009-07-29 -%% -Type: language -Subtag: tuw -Description: Tungus languages -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: tux -Description: Tuxináwa -Added: 2009-07-29 -%% -Type: language -Subtag: tuy -Description: Tugen -Added: 2009-07-29 -Macrolanguage: kln -%% -Type: language -Subtag: tuz -Description: Turka -Added: 2009-07-29 -%% -Type: language -Subtag: tva -Description: Vaghua -Added: 2009-07-29 -%% -Type: language -Subtag: tvd -Description: Tsuvadi -Added: 2009-07-29 -%% -Type: language -Subtag: tve -Description: Te'un -Added: 2009-07-29 -%% -Type: language -Subtag: tvg -Description: Tugunese -Description: Batavian Portuguese Creole -Description: Mardijker Creole -Added: 2026-05-05 -%% -Type: language -Subtag: tvi -Description: Tulai -Added: 2023-03-17 -%% -Type: language -Subtag: tvk -Description: Southeast Ambrym -Added: 2009-07-29 -%% -Type: language -Subtag: tvl -Description: Tuvalu -Added: 2005-10-16 -Suppress-Script: Latn -%% -Type: language -Subtag: tvm -Description: Tela-Masbuar -Added: 2009-07-29 -%% -Type: language -Subtag: tvn -Description: Tavoyan -Added: 2009-07-29 -%% -Type: language -Subtag: tvo -Description: Tidore -Added: 2009-07-29 -%% -Type: language -Subtag: tvs -Description: Taveta -Added: 2009-07-29 -%% -Type: language -Subtag: tvt -Description: Tutsa Naga -Added: 2009-07-29 -%% -Type: language -Subtag: tvu -Description: Tunen -Added: 2012-08-12 -%% -Type: language -Subtag: tvw -Description: Sedoa -Added: 2009-07-29 -%% -Type: language -Subtag: tvx -Description: Taivoan -Added: 2019-04-16 -%% -Type: language -Subtag: tvy -Description: Timor Pidgin -Added: 2009-07-29 -%% -Type: language -Subtag: twa -Description: Twana -Added: 2009-07-29 -%% -Type: language -Subtag: twb -Description: Western Tawbuid -Added: 2009-07-29 -%% -Type: language -Subtag: twc -Description: Teshenawa -Added: 2009-07-29 -%% -Type: language -Subtag: twd -Description: Twents -Added: 2009-07-29 -%% -Type: language -Subtag: twe -Description: Tewa (Indonesia) -Added: 2009-07-29 -%% -Type: language -Subtag: twf -Description: Northern Tiwa -Added: 2009-07-29 -%% -Type: language -Subtag: twg -Description: Tereweng -Added: 2009-07-29 -%% -Type: language -Subtag: twh -Description: Tai Dón -Added: 2009-07-29 -%% -Type: language -Subtag: twl -Description: Tawara -Added: 2009-07-29 -%% -Type: language -Subtag: twm -Description: Tawang Monpa -Added: 2009-07-29 -%% -Type: language -Subtag: twn -Description: Twendi -Added: 2009-07-29 -%% -Type: language -Subtag: two -Description: Tswapong -Added: 2009-07-29 -%% -Type: language -Subtag: twp -Description: Ere -Added: 2009-07-29 -%% -Type: language -Subtag: twq -Description: Tasawaq -Added: 2009-07-29 -%% -Type: language -Subtag: twr -Description: Southwestern Tarahumara -Added: 2009-07-29 -%% -Type: language -Subtag: twt -Description: Turiwára -Added: 2009-07-29 -%% -Type: language -Subtag: twu -Description: Termanu -Added: 2009-07-29 -%% -Type: language -Subtag: tww -Description: Tuwari -Added: 2009-07-29 -%% -Type: language -Subtag: twx -Description: Tewe -Added: 2009-07-29 -%% -Type: language -Subtag: twy -Description: Tawoyan -Added: 2009-07-29 -%% -Type: language -Subtag: txa -Description: Tombonuo -Added: 2009-07-29 -%% -Type: language -Subtag: txb -Description: Tokharian B -Added: 2009-07-29 -%% -Type: language -Subtag: txc -Description: Tsetsaut -Added: 2009-07-29 -%% -Type: language -Subtag: txe -Description: Totoli -Added: 2009-07-29 -%% -Type: language -Subtag: txg -Description: Tangut -Added: 2009-07-29 -%% -Type: language -Subtag: txh -Description: Thracian -Added: 2009-07-29 -%% -Type: language -Subtag: txi -Description: Ikpeng -Added: 2009-07-29 -%% -Type: language -Subtag: txj -Description: Tarjumo -Added: 2015-02-12 -%% -Type: language -Subtag: txm -Description: Tomini -Added: 2009-07-29 -%% -Type: language -Subtag: txn -Description: West Tarangan -Added: 2009-07-29 -%% -Type: language -Subtag: txo -Description: Toto -Added: 2009-07-29 -%% -Type: language -Subtag: txq -Description: Tii -Added: 2009-07-29 -%% -Type: language -Subtag: txr -Description: Tartessian -Added: 2009-07-29 -%% -Type: language -Subtag: txs -Description: Tonsea -Added: 2009-07-29 -%% -Type: language -Subtag: txt -Description: Citak -Added: 2009-07-29 -%% -Type: language -Subtag: txu -Description: Kayapó -Added: 2009-07-29 -%% -Type: language -Subtag: txx -Description: Tatana -Added: 2009-07-29 -%% -Type: language -Subtag: txy -Description: Tanosy Malagasy -Added: 2009-07-29 -Macrolanguage: mg -%% -Type: language -Subtag: tya -Description: Tauya -Added: 2009-07-29 -%% -Type: language -Subtag: tye -Description: Kyanga -Added: 2009-07-29 -%% -Type: language -Subtag: tyh -Description: O'du -Added: 2009-07-29 -%% -Type: language -Subtag: tyi -Description: Teke-Tsaayi -Added: 2009-07-29 -%% -Type: language -Subtag: tyj -Description: Tai Do -Description: Tai Yo -Added: 2009-07-29 -%% -Type: language -Subtag: tyl -Description: Thu Lao -Added: 2009-07-29 -%% -Type: language -Subtag: tyn -Description: Kombai -Added: 2009-07-29 -%% -Type: language -Subtag: typ -Description: Thaypan -Added: 2009-07-29 -%% -Type: language -Subtag: tyr -Description: Tai Daeng -Added: 2009-07-29 -%% -Type: language -Subtag: tys -Description: Tày Sa Pa -Added: 2009-07-29 -%% -Type: language -Subtag: tyt -Description: Tày Tac -Added: 2009-07-29 -%% -Type: language -Subtag: tyu -Description: Kua -Added: 2009-07-29 -%% -Type: language -Subtag: tyv -Description: Tuvinian -Added: 2005-10-16 -%% -Type: language -Subtag: tyx -Description: Teke-Tyee -Added: 2009-07-29 -%% -Type: language -Subtag: tyy -Description: Tiyaa -Added: 2021-02-20 -%% -Type: language -Subtag: tyz -Description: Tày -Added: 2009-07-29 -%% -Type: language -Subtag: tza -Description: Tanzanian Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: tzh -Description: Tzeltal -Added: 2009-07-29 -%% -Type: language -Subtag: tzj -Description: Tz'utujil -Added: 2009-07-29 -%% -Type: language -Subtag: tzl -Description: Talossan -Added: 2013-09-10 -%% -Type: language -Subtag: tzm -Description: Central Atlas Tamazight -Added: 2009-07-29 -%% -Type: language -Subtag: tzn -Description: Tugun -Added: 2009-07-29 -%% -Type: language -Subtag: tzo -Description: Tzotzil -Added: 2009-07-29 -%% -Type: language -Subtag: tzx -Description: Tabriak -Added: 2009-07-29 -%% -Type: language -Subtag: uam -Description: Uamué -Added: 2009-07-29 -%% -Type: language -Subtag: uan -Description: Kuan -Added: 2009-07-29 -%% -Type: language -Subtag: uar -Description: Tairuma -Added: 2009-07-29 -%% -Type: language -Subtag: uba -Description: Ubang -Added: 2009-07-29 -%% -Type: language -Subtag: ubi -Description: Ubi -Added: 2009-07-29 -%% -Type: language -Subtag: ubl -Description: Buhi'non Bikol -Added: 2010-03-11 -Macrolanguage: bik -%% -Type: language -Subtag: ubr -Description: Ubir -Added: 2009-07-29 -%% -Type: language -Subtag: ubu -Description: Umbu-Ungu -Added: 2009-07-29 -%% -Type: language -Subtag: uby -Description: Ubykh -Added: 2009-07-29 -%% -Type: language -Subtag: uda -Description: Uda -Added: 2009-07-29 -%% -Type: language -Subtag: ude -Description: Udihe -Added: 2009-07-29 -%% -Type: language -Subtag: udg -Description: Muduga -Added: 2009-07-29 -%% -Type: language -Subtag: udi -Description: Udi -Added: 2009-07-29 -%% -Type: language -Subtag: udj -Description: Ujir -Added: 2009-07-29 -%% -Type: language -Subtag: udl -Description: Wuzlam -Added: 2009-07-29 -%% -Type: language -Subtag: udm -Description: Udmurt -Added: 2005-10-16 -%% -Type: language -Subtag: udu -Description: Uduk -Added: 2009-07-29 -%% -Type: language -Subtag: ues -Description: Kioko -Added: 2009-07-29 -%% -Type: language -Subtag: ufi -Description: Ufim -Added: 2009-07-29 -%% -Type: language -Subtag: uga -Description: Ugaritic -Added: 2005-10-16 -%% -Type: language -Subtag: ugb -Description: Kuku-Ugbanh -Added: 2009-07-29 -%% -Type: language -Subtag: uge -Description: Ughele -Added: 2009-07-29 -%% -Type: language -Subtag: ugh -Description: Kubachi -Added: 2022-02-25 -%% -Type: language -Subtag: ugn -Description: Ugandan Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: ugo -Description: Ugong -Added: 2009-07-29 -%% -Type: language -Subtag: ugy -Description: Uruguayan Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: uha -Description: Uhami -Added: 2009-07-29 -%% -Type: language -Subtag: uhn -Description: Damal -Added: 2009-07-29 -%% -Type: language -Subtag: uis -Description: Uisai -Added: 2009-07-29 -%% -Type: language -Subtag: uiv -Description: Iyive -Added: 2009-07-29 -%% -Type: language -Subtag: uji -Description: Tanjijili -Added: 2009-07-29 -%% -Type: language -Subtag: uka -Description: Kaburi -Added: 2009-07-29 -%% -Type: language -Subtag: ukg -Description: Ukuriguma -Added: 2009-07-29 -%% -Type: language -Subtag: ukh -Description: Ukhwejo -Added: 2009-07-29 -%% -Type: language -Subtag: uki -Description: Kui (India) -Added: 2020-03-28 -%% -Type: language -Subtag: ukk -Description: Muak Sa-aak -Added: 2017-02-23 -%% -Type: language -Subtag: ukl -Description: Ukrainian Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: ukp -Description: Ukpe-Bayobiri -Added: 2009-07-29 -%% -Type: language -Subtag: ukq -Description: Ukwa -Added: 2009-07-29 -%% -Type: language -Subtag: uks -Description: Urubú-Kaapor Sign Language -Description: Kaapor Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: uku -Description: Ukue -Added: 2009-07-29 -%% -Type: language -Subtag: ukv -Description: Kuku -Added: 2020-03-28 -%% -Type: language -Subtag: ukw -Description: Ukwuani-Aboh-Ndoni -Added: 2009-07-29 -%% -Type: language -Subtag: uky -Description: Kuuk-Yak -Added: 2012-08-12 -%% -Type: language -Subtag: ula -Description: Fungwa -Added: 2009-07-29 -%% -Type: language -Subtag: ulb -Description: Ulukwumi -Added: 2009-07-29 -%% -Type: language -Subtag: ulc -Description: Ulch -Added: 2009-07-29 -%% -Type: language -Subtag: ule -Description: Lule -Added: 2013-09-10 -%% -Type: language -Subtag: ulf -Description: Usku -Description: Afra -Added: 2009-07-29 -%% -Type: language -Subtag: uli -Description: Ulithian -Added: 2009-07-29 -%% -Type: language -Subtag: ulk -Description: Meriam Mir -Added: 2009-07-29 -%% -Type: language -Subtag: ull -Description: Ullatan -Added: 2009-07-29 -%% -Type: language -Subtag: ulm -Description: Ulumanda' -Added: 2009-07-29 -%% -Type: language -Subtag: uln -Description: Unserdeutsch -Added: 2009-07-29 -%% -Type: language -Subtag: ulu -Description: Uma' Lung -Added: 2009-07-29 -%% -Type: language -Subtag: ulw -Description: Ulwa -Added: 2010-03-11 -%% -Type: language -Subtag: uly -Description: Buli -Added: 2023-03-17 -%% -Type: language -Subtag: uma -Description: Umatilla -Added: 2009-07-29 -%% -Type: language -Subtag: umb -Description: Umbundu -Added: 2005-10-16 -%% -Type: language -Subtag: umc -Description: Marrucinian -Added: 2009-07-29 -%% -Type: language -Subtag: umd -Description: Umbindhamu -Added: 2009-07-29 -%% -Type: language -Subtag: umg -Description: Morrobalama -Description: Umbuygamu -Added: 2009-07-29 -%% -Type: language -Subtag: umi -Description: Ukit -Added: 2009-07-29 -%% -Type: language -Subtag: umm -Description: Umon -Added: 2009-07-29 -%% -Type: language -Subtag: umn -Description: Makyan Naga -Added: 2009-07-29 -%% -Type: language -Subtag: umo -Description: Umotína -Added: 2009-07-29 -%% -Type: language -Subtag: ump -Description: Umpila -Added: 2009-07-29 -%% -Type: language -Subtag: umr -Description: Umbugarla -Added: 2009-07-29 -%% -Type: language -Subtag: ums -Description: Pendau -Added: 2009-07-29 -%% -Type: language -Subtag: umu -Description: Munsee -Added: 2009-07-29 -Macrolanguage: del -%% -Type: language -Subtag: una -Description: North Watut -Added: 2009-07-29 -%% -Type: language -Subtag: und -Description: Undetermined -Added: 2005-10-16 -Scope: special -%% -Type: language -Subtag: une -Description: Uneme -Added: 2009-07-29 -%% -Type: language -Subtag: ung -Description: Ngarinyin -Added: 2009-07-29 -%% -Type: language -Subtag: uni -Description: Uni -Added: 2021-02-20 -%% -Type: language -Subtag: unk -Description: Enawené-Nawé -Added: 2009-07-29 -%% -Type: language -Subtag: unm -Description: Unami -Added: 2009-07-29 -Macrolanguage: del -%% -Type: language -Subtag: unn -Description: Kurnai -Added: 2013-09-10 -%% -Type: language -Subtag: unp -Description: Worora -Added: 2009-07-29 -Deprecated: 2012-08-12 -Comments: see wro, xgu -%% -Type: language -Subtag: unr -Description: Mundari -Added: 2009-07-29 -%% -Type: language -Subtag: unu -Description: Unubahe -Added: 2013-09-10 -%% -Type: language -Subtag: unx -Description: Munda -Added: 2009-07-29 -%% -Type: language -Subtag: unz -Description: Unde Kaili -Added: 2009-07-29 -%% -Type: language -Subtag: uok -Description: Uokha -Added: 2009-07-29 -Deprecated: 2015-02-12 -Preferred-Value: ema -%% -Type: language -Subtag: uon -Description: Kulon -Added: 2022-02-25 -%% -Type: language -Subtag: upi -Description: Umeda -Added: 2009-07-29 -%% -Type: language -Subtag: upv -Description: Uripiv-Wala-Rano-Atchin -Added: 2009-07-29 -%% -Type: language -Subtag: ura -Description: Urarina -Added: 2009-07-29 -%% -Type: language -Subtag: urb -Description: Urubú-Kaapor -Description: Kaapor -Added: 2009-07-29 -%% -Type: language -Subtag: urc -Description: Urningangg -Added: 2009-07-29 -%% -Type: language -Subtag: ure -Description: Uru -Added: 2009-07-29 -%% -Type: language -Subtag: urf -Description: Uradhi -Added: 2009-07-29 -%% -Type: language -Subtag: urg -Description: Urigina -Added: 2009-07-29 -%% -Type: language -Subtag: urh -Description: Urhobo -Added: 2009-07-29 -%% -Type: language -Subtag: uri -Description: Urim -Added: 2009-07-29 -%% -Type: language -Subtag: urj -Description: Uralic languages -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: urk -Description: Urak Lawoi' -Added: 2009-07-29 -Macrolanguage: ms -%% -Type: language -Subtag: url -Description: Urali -Added: 2009-07-29 -%% -Type: language -Subtag: urm -Description: Urapmin -Added: 2009-07-29 -%% -Type: language -Subtag: urn -Description: Uruangnirin -Added: 2009-07-29 -%% -Type: language -Subtag: uro -Description: Ura (Papua New Guinea) -Added: 2009-07-29 -%% -Type: language -Subtag: urp -Description: Uru-Pa-In -Added: 2009-07-29 -%% -Type: language -Subtag: urr -Description: Lehalurup -Description: Löyöp -Added: 2009-07-29 -%% -Type: language -Subtag: urt -Description: Urat -Added: 2009-07-29 -%% -Type: language -Subtag: uru -Description: Urumi -Added: 2009-07-29 -%% -Type: language -Subtag: urv -Description: Uruava -Added: 2009-07-29 -%% -Type: language -Subtag: urw -Description: Sop -Added: 2009-07-29 -%% -Type: language -Subtag: urx -Description: Urimo -Added: 2009-07-29 -%% -Type: language -Subtag: ury -Description: Orya -Added: 2009-07-29 -%% -Type: language -Subtag: urz -Description: Uru-Eu-Wau-Wau -Added: 2009-07-29 -%% -Type: language -Subtag: usa -Description: Usarufa -Added: 2009-07-29 -%% -Type: language -Subtag: ush -Description: Ushojo -Added: 2009-07-29 -%% -Type: language -Subtag: usi -Description: Usui -Added: 2009-07-29 -%% -Type: language -Subtag: usk -Description: Usaghade -Added: 2009-07-29 -%% -Type: language -Subtag: usp -Description: Uspanteco -Added: 2009-07-29 -%% -Type: language -Subtag: uss -Description: us-Saare -Added: 2019-04-16 -%% -Type: language -Subtag: usu -Description: Uya -Added: 2009-07-29 -%% -Type: language -Subtag: uta -Description: Otank -Added: 2009-07-29 -%% -Type: language -Subtag: ute -Description: Ute-Southern Paiute -Added: 2009-07-29 -%% -Type: language -Subtag: uth -Description: ut-Hun -Added: 2019-04-16 -%% -Type: language -Subtag: utp -Description: Amba (Solomon Islands) -Added: 2009-07-29 -%% -Type: language -Subtag: utr -Description: Etulo -Added: 2009-07-29 -%% -Type: language -Subtag: utu -Description: Utu -Added: 2009-07-29 -%% -Type: language -Subtag: uum -Description: Urum -Added: 2009-07-29 -%% -Type: language -Subtag: uun -Description: Kulon-Pazeh -Added: 2009-07-29 -Deprecated: 2022-02-25 -Comments: see pzh, uon -%% -Type: language -Subtag: uur -Description: Ura (Vanuatu) -Added: 2009-07-29 -%% -Type: language -Subtag: uuu -Description: U -Added: 2009-07-29 -%% -Type: language -Subtag: uve -Description: West Uvean -Description: Fagauvea -Added: 2009-07-29 -%% -Type: language -Subtag: uvh -Description: Uri -Added: 2009-07-29 -%% -Type: language -Subtag: uvl -Description: Lote -Added: 2009-07-29 -%% -Type: language -Subtag: uwa -Description: Kuku-Uwanh -Added: 2009-07-29 -%% -Type: language -Subtag: uya -Description: Doko-Uyanga -Added: 2009-07-29 -%% -Type: language -Subtag: uzn -Description: Northern Uzbek -Added: 2009-07-29 -Macrolanguage: uz -%% -Type: language -Subtag: uzs -Description: Southern Uzbek -Added: 2009-07-29 -Macrolanguage: uz -%% -Type: language -Subtag: vaa -Description: Vaagri Booli -Added: 2009-07-29 -%% -Type: language -Subtag: vae -Description: Vale -Added: 2009-07-29 -%% -Type: language -Subtag: vaf -Description: Vafsi -Added: 2009-07-29 -%% -Type: language -Subtag: vag -Description: Vagla -Added: 2009-07-29 -%% -Type: language -Subtag: vah -Description: Varhadi-Nagpuri -Added: 2009-07-29 -%% -Type: language -Subtag: vai -Description: Vai -Added: 2005-10-16 -%% -Type: language -Subtag: vaj -Description: Sekele -Description: Northwestern ǃKung -Description: Vasekele -Added: 2009-07-29 -%% -Type: language -Subtag: val -Description: Vehes -Added: 2009-07-29 -%% -Type: language -Subtag: vam -Description: Vanimo -Added: 2009-07-29 -%% -Type: language -Subtag: van -Description: Valman -Added: 2009-07-29 -%% -Type: language -Subtag: vao -Description: Vao -Added: 2009-07-29 -%% -Type: language -Subtag: vap -Description: Vaiphei -Added: 2009-07-29 -%% -Type: language -Subtag: var -Description: Huarijio -Added: 2009-07-29 -%% -Type: language -Subtag: vas -Description: Vasavi -Added: 2009-07-29 -%% -Type: language -Subtag: vau -Description: Vanuma -Added: 2009-07-29 -%% -Type: language -Subtag: vav -Description: Varli -Added: 2009-07-29 -%% -Type: language -Subtag: vay -Description: Wayu -Added: 2009-07-29 -%% -Type: language -Subtag: vbb -Description: Southeast Babar -Added: 2009-07-29 -%% -Type: language -Subtag: vbk -Description: Southwestern Bontok -Added: 2010-03-11 -Macrolanguage: bnc -%% -Type: language -Subtag: vec -Description: Venetian -Added: 2009-07-29 -%% -Type: language -Subtag: ved -Description: Veddah -Added: 2009-07-29 -%% -Type: language -Subtag: vel -Description: Veluws -Added: 2009-07-29 -%% -Type: language -Subtag: vem -Description: Vemgo-Mabas -Added: 2009-07-29 -%% -Type: language -Subtag: veo -Description: Ventureño -Added: 2009-07-29 -%% -Type: language -Subtag: vep -Description: Veps -Added: 2009-07-29 -%% -Type: language -Subtag: ver -Description: Mom Jango -Added: 2009-07-29 -%% -Type: language -Subtag: vgr -Description: Vaghri -Added: 2009-07-29 -%% -Type: language -Subtag: vgt -Description: Vlaamse Gebarentaal -Description: Flemish Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: vic -Description: Virgin Islands Creole English -Added: 2009-07-29 -%% -Type: language -Subtag: vid -Description: Vidunda -Added: 2009-07-29 -%% -Type: language -Subtag: vif -Description: Vili -Added: 2009-07-29 -%% -Type: language -Subtag: vig -Description: Viemo -Added: 2009-07-29 -%% -Type: language -Subtag: vil -Description: Vilela -Added: 2009-07-29 -%% -Type: language -Subtag: vin -Description: Vinza -Added: 2009-07-29 -%% -Type: language -Subtag: vis -Description: Vishavan -Added: 2009-07-29 -%% -Type: language -Subtag: vit -Description: Viti -Added: 2009-07-29 -%% -Type: language -Subtag: viv -Description: Iduna -Added: 2009-07-29 -%% -Type: language -Subtag: vjk -Description: Bajjika -Added: 2023-03-17 -%% -Type: language -Subtag: vka -Description: Kariyarra -Added: 2009-07-29 -%% -Type: language -Subtag: vki -Description: Ija-Zuba -Added: 2009-07-29 -Deprecated: 2021-02-20 -Comments: see vkn, vkz -%% -Type: language -Subtag: vkj -Description: Kujarge -Added: 2009-07-29 -%% -Type: language -Subtag: vkk -Description: Kaur -Added: 2009-07-29 -Macrolanguage: ms -%% -Type: language -Subtag: vkl -Description: Kulisusu -Added: 2009-07-29 -%% -Type: language -Subtag: vkm -Description: Kamakan -Added: 2009-07-29 -%% -Type: language -Subtag: vkn -Description: Koro Nulu -Added: 2021-02-20 -%% -Type: language -Subtag: vko -Description: Kodeoha -Added: 2009-07-29 -%% -Type: language -Subtag: vkp -Description: Korlai Creole Portuguese -Added: 2009-07-29 -%% -Type: language -Subtag: vkt -Description: Tenggarong Kutai Malay -Added: 2009-07-29 -Macrolanguage: ms -%% -Type: language -Subtag: vku -Description: Kurrama -Added: 2009-07-29 -%% -Type: language -Subtag: vkz -Description: Koro Zuba -Added: 2021-02-20 -%% -Type: language -Subtag: vlp -Description: Valpei -Added: 2009-07-29 -%% -Type: language -Subtag: vls -Description: Vlaams -Added: 2009-07-29 -%% -Type: language -Subtag: vma -Description: Martuyhunira -Added: 2009-07-29 -%% -Type: language -Subtag: vmb -Description: Barbaram -Added: 2009-07-29 -%% -Type: language -Subtag: vmc -Description: Juxtlahuaca Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: vmd -Description: Mudu Koraga -Added: 2009-07-29 -%% -Type: language -Subtag: vme -Description: East Masela -Added: 2009-07-29 -%% -Type: language -Subtag: vmf -Description: Mainfränkisch -Added: 2009-07-29 -%% -Type: language -Subtag: vmg -Description: Lungalunga -Added: 2009-07-29 -Comments: see also bxf -%% -Type: language -Subtag: vmh -Description: Maraghei -Added: 2009-07-29 -%% -Type: language -Subtag: vmi -Description: Miwa -Added: 2009-07-29 -%% -Type: language -Subtag: vmj -Description: Ixtayutla Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: vmk -Description: Makhuwa-Shirima -Added: 2009-07-29 -%% -Type: language -Subtag: vml -Description: Malgana -Added: 2009-07-29 -%% -Type: language -Subtag: vmm -Description: Mitlatongo Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: vmp -Description: Soyaltepec Mazatec -Added: 2009-07-29 -%% -Type: language -Subtag: vmq -Description: Soyaltepec Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: vmr -Description: Marenje -Added: 2009-07-29 -%% -Type: language -Subtag: vms -Description: Moksela -Added: 2009-07-29 -%% -Type: language -Subtag: vmu -Description: Muluridyi -Added: 2009-07-29 -%% -Type: language -Subtag: vmv -Description: Valley Maidu -Added: 2009-07-29 -%% -Type: language -Subtag: vmw -Description: Makhuwa -Added: 2009-07-29 -%% -Type: language -Subtag: vmx -Description: Tamazola Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: vmy -Description: Ayautla Mazatec -Added: 2009-07-29 -%% -Type: language -Subtag: vmz -Description: Mazatlán Mazatec -Added: 2009-07-29 -%% -Type: language -Subtag: vnk -Description: Vano -Description: Lovono -Added: 2009-07-29 -%% -Type: language -Subtag: vnm -Description: Vinmavis -Description: Neve'ei -Added: 2009-07-29 -%% -Type: language -Subtag: vnp -Description: Vunapu -Added: 2009-07-29 -%% -Type: language -Subtag: vor -Description: Voro -Added: 2009-07-29 -%% -Type: language -Subtag: vot -Description: Votic -Added: 2005-10-16 -%% -Type: language -Subtag: vra -Description: Vera'a -Added: 2009-07-29 -%% -Type: language -Subtag: vro -Description: Võro -Added: 2009-07-29 -Macrolanguage: et -%% -Type: language -Subtag: vrs -Description: Varisi -Added: 2009-07-29 -%% -Type: language -Subtag: vrt -Description: Burmbar -Description: Banam Bay -Added: 2009-07-29 -%% -Type: language -Subtag: vsi -Description: Moldova Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: vsl -Description: Venezuelan Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: vsn -Description: Vedic Sanskrit -Added: 2024-03-04 -Macrolanguage: sa -%% -Type: language -Subtag: vsv -Description: Valencian Sign Language -Description: Llengua de signes valenciana -Added: 2009-07-29 -%% -Type: language -Subtag: vto -Description: Vitou -Added: 2009-07-29 -%% -Type: language -Subtag: vum -Description: Vumbu -Added: 2009-07-29 -%% -Type: language -Subtag: vun -Description: Vunjo -Added: 2009-07-29 -%% -Type: language -Subtag: vut -Description: Vute -Added: 2009-07-29 -%% -Type: language -Subtag: vwa -Description: Awa (China) -Added: 2009-07-29 -%% -Type: language -Subtag: waa -Description: Walla Walla -Added: 2009-07-29 -%% -Type: language -Subtag: wab -Description: Yote -Description: Wab -Added: 2009-07-29 -%% -Type: language -Subtag: wac -Description: Wasco-Wishram -Added: 2009-07-29 -%% -Type: language -Subtag: wad -Description: Wamesa -Description: Wondama -Added: 2009-07-29 -%% -Type: language -Subtag: wae -Description: Walser -Added: 2009-07-29 -%% -Type: language -Subtag: waf -Description: Wakoná -Added: 2009-07-29 -%% -Type: language -Subtag: wag -Description: Wa'ema -Added: 2009-07-29 -%% -Type: language -Subtag: wah -Description: Watubela -Added: 2009-07-29 -%% -Type: language -Subtag: wai -Description: Wares -Added: 2009-07-29 -%% -Type: language -Subtag: waj -Description: Waffa -Added: 2009-07-29 -%% -Type: language -Subtag: wak -Description: Wakashan languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: wal -Description: Wolaytta -Description: Wolaitta -Added: 2005-10-16 -%% -Type: language -Subtag: wam -Description: Wampanoag -Added: 2009-07-29 -%% -Type: language -Subtag: wan -Description: Wan -Added: 2009-07-29 -%% -Type: language -Subtag: wao -Description: Wappo -Added: 2009-07-29 -%% -Type: language -Subtag: wap -Description: Wapishana -Added: 2009-07-29 -%% -Type: language -Subtag: waq -Description: Wagiman -Added: 2009-07-29 -%% -Type: language -Subtag: war -Description: Waray (Philippines) -Added: 2005-10-16 -%% -Type: language -Subtag: was -Description: Washo -Added: 2005-10-16 -%% -Type: language -Subtag: wat -Description: Kaninuwa -Added: 2009-07-29 -%% -Type: language -Subtag: wau -Description: Waurá -Added: 2009-07-29 -%% -Type: language -Subtag: wav -Description: Waka -Added: 2009-07-29 -%% -Type: language -Subtag: waw -Description: Waiwai -Added: 2009-07-29 -%% -Type: language -Subtag: wax -Description: Watam -Description: Marangis -Added: 2009-07-29 -%% -Type: language -Subtag: way -Description: Wayana -Added: 2009-07-29 -%% -Type: language -Subtag: waz -Description: Wampur -Added: 2009-07-29 -%% -Type: language -Subtag: wba -Description: Warao -Added: 2009-07-29 -%% -Type: language -Subtag: wbb -Description: Wabo -Added: 2009-07-29 -%% -Type: language -Subtag: wbe -Description: Waritai -Added: 2009-07-29 -%% -Type: language -Subtag: wbf -Description: Wara -Added: 2009-07-29 -Comments: see also pnl -%% -Type: language -Subtag: wbh -Description: Wanda -Added: 2009-07-29 -%% -Type: language -Subtag: wbi -Description: Vwanji -Added: 2009-07-29 -%% -Type: language -Subtag: wbj -Description: Alagwa -Added: 2009-07-29 -%% -Type: language -Subtag: wbk -Description: Waigali -Added: 2009-07-29 -%% -Type: language -Subtag: wbl -Description: Wakhi -Added: 2009-07-29 -%% -Type: language -Subtag: wbm -Description: Wa -Added: 2009-07-29 -%% -Type: language -Subtag: wbp -Description: Warlpiri -Added: 2009-07-29 -%% -Type: language -Subtag: wbq -Description: Waddar -Added: 2009-07-29 -%% -Type: language -Subtag: wbr -Description: Wagdi -Added: 2009-07-29 -Macrolanguage: raj -%% -Type: language -Subtag: wbs -Description: West Bengal Sign Language -Added: 2017-02-23 -%% -Type: language -Subtag: wbt -Description: Warnman -Added: 2009-07-29 -%% -Type: language -Subtag: wbv -Description: Wajarri -Added: 2009-07-29 -%% -Type: language -Subtag: wbw -Description: Woi -Added: 2009-07-29 -%% -Type: language -Subtag: wca -Description: Yanomámi -Added: 2009-07-29 -%% -Type: language -Subtag: wci -Description: Waci Gbe -Added: 2009-07-29 -%% -Type: language -Subtag: wdd -Description: Wandji -Added: 2009-07-29 -%% -Type: language -Subtag: wdg -Description: Wadaginam -Added: 2009-07-29 -%% -Type: language -Subtag: wdj -Description: Wadjiginy -Added: 2009-07-29 -%% -Type: language -Subtag: wdk -Description: Wadikali -Added: 2013-09-10 -%% -Type: language -Subtag: wdt -Description: Wendat -Added: 2022-02-25 -%% -Type: language -Subtag: wdu -Description: Wadjigu -Added: 2009-07-29 -%% -Type: language -Subtag: wdy -Description: Wadjabangayi -Added: 2013-09-10 -%% -Type: language -Subtag: wea -Description: Wewaw -Added: 2009-07-29 -%% -Type: language -Subtag: wec -Description: Wè Western -Added: 2009-07-29 -%% -Type: language -Subtag: wed -Description: Wedau -Added: 2009-07-29 -%% -Type: language -Subtag: weg -Description: Wergaia -Added: 2013-09-10 -%% -Type: language -Subtag: weh -Description: Weh -Added: 2009-07-29 -%% -Type: language -Subtag: wei -Description: Kiunum -Added: 2009-07-29 -%% -Type: language -Subtag: wem -Description: Weme Gbe -Added: 2009-07-29 -%% -Type: language -Subtag: wen -Description: Sorbian languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: weo -Description: Wemale -Added: 2009-07-29 -%% -Type: language -Subtag: wep -Description: Westphalien -Added: 2009-07-29 -%% -Type: language -Subtag: wer -Description: Weri -Added: 2009-07-29 -%% -Type: language -Subtag: wes -Description: Cameroon Pidgin -Added: 2009-07-29 -%% -Type: language -Subtag: wet -Description: Perai -Added: 2009-07-29 -%% -Type: language -Subtag: weu -Description: Rawngtu Chin -Added: 2009-07-29 -%% -Type: language -Subtag: wew -Description: Wejewa -Added: 2009-07-29 -%% -Type: language -Subtag: wfg -Description: Yafi -Description: Zorop -Added: 2009-07-29 -%% -Type: language -Subtag: wga -Description: Wagaya -Added: 2009-07-29 -%% -Type: language -Subtag: wgb -Description: Wagawaga -Added: 2010-03-11 -%% -Type: language -Subtag: wgg -Description: Wangkangurru -Description: Wangganguru -Added: 2009-07-29 -%% -Type: language -Subtag: wgi -Description: Wahgi -Added: 2009-07-29 -%% -Type: language -Subtag: wgo -Description: Waigeo -Added: 2009-07-29 -%% -Type: language -Subtag: wgu -Description: Wirangu -Added: 2012-08-12 -%% -Type: language -Subtag: wgw -Description: Wagawaga -Added: 2009-07-29 -Deprecated: 2010-03-11 -Comments: see wgb, ylb -%% -Type: language -Subtag: wgy -Description: Warrgamay -Added: 2009-07-29 -%% -Type: language -Subtag: wha -Description: Sou Upaa -Description: Manusela -Added: 2009-07-29 -%% -Type: language -Subtag: whg -Description: North Wahgi -Added: 2009-07-29 -%% -Type: language -Subtag: whk -Description: Wahau Kenyah -Added: 2009-07-29 -%% -Type: language -Subtag: whu -Description: Wahau Kayan -Added: 2009-07-29 -%% -Type: language -Subtag: wib -Description: Southern Toussian -Added: 2009-07-29 -%% -Type: language -Subtag: wic -Description: Wichita -Added: 2009-07-29 -%% -Type: language -Subtag: wie -Description: Wik-Epa -Added: 2009-07-29 -%% -Type: language -Subtag: wif -Description: Wik-Keyangan -Added: 2009-07-29 -%% -Type: language -Subtag: wig -Description: Wik Ngathan -Added: 2009-07-29 -%% -Type: language -Subtag: wih -Description: Wik-Me'anha -Added: 2009-07-29 -%% -Type: language -Subtag: wii -Description: Minidien -Added: 2009-07-29 -%% -Type: language -Subtag: wij -Description: Wik-Iiyanh -Added: 2009-07-29 -%% -Type: language -Subtag: wik -Description: Wikalkan -Added: 2009-07-29 -%% -Type: language -Subtag: wil -Description: Wilawila -Added: 2009-07-29 -%% -Type: language -Subtag: wim -Description: Wik-Mungkan -Added: 2009-07-29 -%% -Type: language -Subtag: win -Description: Ho-Chunk -Added: 2009-07-29 -%% -Type: language -Subtag: wir -Description: Wiraféd -Added: 2009-07-29 -%% -Type: language -Subtag: wit -Description: Wintu -Added: 2009-07-29 -Deprecated: 2013-09-10 -Comments: see nol, pwi, wnw -%% -Type: language -Subtag: wiu -Description: Wiru -Added: 2009-07-29 -%% -Type: language -Subtag: wiv -Description: Vitu -Added: 2009-07-29 -%% -Type: language -Subtag: wiw -Description: Wirangu -Added: 2009-07-29 -Deprecated: 2012-08-12 -Comments: see nwo, wgu -%% -Type: language -Subtag: wiy -Description: Wiyot -Added: 2009-07-29 -%% -Type: language -Subtag: wja -Description: Waja -Added: 2009-07-29 -%% -Type: language -Subtag: wji -Description: Warji -Added: 2009-07-29 -%% -Type: language -Subtag: wka -Description: Kw'adza -Added: 2009-07-29 -%% -Type: language -Subtag: wkb -Description: Kumbaran -Added: 2009-07-29 -%% -Type: language -Subtag: wkd -Description: Wakde -Description: Mo -Added: 2009-07-29 -%% -Type: language -Subtag: wkl -Description: Kalanadi -Added: 2009-07-29 -%% -Type: language -Subtag: wkr -Description: Keerray-Woorroong -Added: 2019-04-16 -%% -Type: language -Subtag: wku -Description: Kunduvadi -Added: 2009-07-29 -%% -Type: language -Subtag: wkw -Description: Wakawaka -Added: 2009-07-29 -%% -Type: language -Subtag: wky -Description: Wangkayutyuru -Added: 2013-09-10 -%% -Type: language -Subtag: wla -Description: Walio -Added: 2009-07-29 -%% -Type: language -Subtag: wlc -Description: Mwali Comorian -Added: 2009-07-29 -%% -Type: language -Subtag: wle -Description: Wolane -Added: 2009-07-29 -%% -Type: language -Subtag: wlg -Description: Kunbarlang -Added: 2009-07-29 -%% -Type: language -Subtag: wlh -Description: Welaun -Added: 2020-03-28 -%% -Type: language -Subtag: wli -Description: Waioli -Added: 2009-07-29 -%% -Type: language -Subtag: wlk -Description: Wailaki -Added: 2009-07-29 -%% -Type: language -Subtag: wll -Description: Wali (Sudan) -Added: 2009-07-29 -%% -Type: language -Subtag: wlm -Description: Middle Welsh -Added: 2009-07-29 -%% -Type: language -Subtag: wlo -Description: Wolio -Added: 2009-07-29 -%% -Type: language -Subtag: wlr -Description: Wailapa -Added: 2009-07-29 -%% -Type: language -Subtag: wls -Description: Wallisian -Added: 2009-07-29 -%% -Type: language -Subtag: wlu -Description: Wuliwuli -Added: 2009-07-29 -%% -Type: language -Subtag: wlv -Description: Wichí Lhamtés Vejoz -Added: 2009-07-29 -%% -Type: language -Subtag: wlw -Description: Walak -Added: 2009-07-29 -%% -Type: language -Subtag: wlx -Description: Wali (Ghana) -Added: 2009-07-29 -%% -Type: language -Subtag: wly -Description: Waling -Added: 2009-07-29 -%% -Type: language -Subtag: wma -Description: Mawa (Nigeria) -Added: 2009-07-29 -%% -Type: language -Subtag: wmb -Description: Wambaya -Added: 2009-07-29 -%% -Type: language -Subtag: wmc -Description: Wamas -Added: 2009-07-29 -%% -Type: language -Subtag: wmd -Description: Mamaindé -Added: 2009-07-29 -%% -Type: language -Subtag: wme -Description: Wambule -Added: 2009-07-29 -%% -Type: language -Subtag: wmg -Description: Western Minyag -Added: 2021-02-20 -%% -Type: language -Subtag: wmh -Description: Waima'a -Added: 2009-07-29 -%% -Type: language -Subtag: wmi -Description: Wamin -Added: 2009-07-29 -%% -Type: language -Subtag: wmm -Description: Maiwa (Indonesia) -Added: 2009-07-29 -%% -Type: language -Subtag: wmn -Description: Waamwang -Added: 2009-07-29 -%% -Type: language -Subtag: wmo -Description: Wom (Papua New Guinea) -Added: 2009-07-29 -%% -Type: language -Subtag: wms -Description: Wambon -Added: 2009-07-29 -%% -Type: language -Subtag: wmt -Description: Walmajarri -Added: 2009-07-29 -%% -Type: language -Subtag: wmw -Description: Mwani -Added: 2009-07-29 -%% -Type: language -Subtag: wmx -Description: Womo -Added: 2009-07-29 -%% -Type: language -Subtag: wnb -Description: Mokati -Added: 2009-07-29 -%% -Type: language -Subtag: wnc -Description: Wantoat -Added: 2009-07-29 -%% -Type: language -Subtag: wnd -Description: Wandarang -Added: 2009-07-29 -%% -Type: language -Subtag: wne -Description: Waneci -Added: 2009-07-29 -%% -Type: language -Subtag: wng -Description: Wanggom -Added: 2009-07-29 -%% -Type: language -Subtag: wni -Description: Ndzwani Comorian -Added: 2009-07-29 -%% -Type: language -Subtag: wnk -Description: Wanukaka -Added: 2009-07-29 -%% -Type: language -Subtag: wnm -Description: Wanggamala -Added: 2009-07-29 -%% -Type: language -Subtag: wnn -Description: Wunumara -Added: 2013-09-10 -%% -Type: language -Subtag: wno -Description: Wano -Added: 2009-07-29 -%% -Type: language -Subtag: wnp -Description: Wanap -Added: 2009-07-29 -%% -Type: language -Subtag: wnu -Description: Usan -Added: 2009-07-29 -%% -Type: language -Subtag: wnw -Description: Wintu -Added: 2013-09-10 -%% -Type: language -Subtag: wny -Description: Wanyi -Description: Waanyi -Added: 2012-08-12 -%% -Type: language -Subtag: woa -Description: Kuwema -Description: Tyaraity -Added: 2009-07-29 -%% -Type: language -Subtag: wob -Description: Wè Northern -Added: 2009-07-29 -%% -Type: language -Subtag: woc -Description: Wogeo -Added: 2009-07-29 -%% -Type: language -Subtag: wod -Description: Wolani -Added: 2009-07-29 -%% -Type: language -Subtag: woe -Description: Woleaian -Added: 2009-07-29 -%% -Type: language -Subtag: wof -Description: Gambian Wolof -Added: 2009-07-29 -%% -Type: language -Subtag: wog -Description: Wogamusin -Added: 2009-07-29 -%% -Type: language -Subtag: woi -Description: Kamang -Added: 2009-07-29 -%% -Type: language -Subtag: wok -Description: Longto -Added: 2009-07-29 -%% -Type: language -Subtag: wom -Description: Wom (Nigeria) -Added: 2009-07-29 -%% -Type: language -Subtag: won -Description: Wongo -Added: 2009-07-29 -%% -Type: language -Subtag: woo -Description: Manombai -Added: 2009-07-29 -%% -Type: language -Subtag: wor -Description: Woria -Added: 2009-07-29 -%% -Type: language -Subtag: wos -Description: Hanga Hundi -Added: 2009-07-29 -%% -Type: language -Subtag: wow -Description: Wawonii -Added: 2009-07-29 -%% -Type: language -Subtag: woy -Description: Weyto -Added: 2009-07-29 -%% -Type: language -Subtag: wpc -Description: Maco -Added: 2009-07-29 -%% -Type: language -Subtag: wra -Description: Warapu -Added: 2009-07-29 -Deprecated: 2021-02-20 -Comments: see bpe, suo, uni -%% -Type: language -Subtag: wrb -Description: Waluwarra -Description: Warluwara -Added: 2009-07-29 -%% -Type: language -Subtag: wrd -Description: Warduji -Added: 2009-07-29 -Deprecated: 2022-02-25 -%% -Type: language -Subtag: wrg -Description: Warungu -Description: Gudjal -Added: 2009-07-29 -%% -Type: language -Subtag: wrh -Description: Wiradjuri -Added: 2009-07-29 -%% -Type: language -Subtag: wri -Description: Wariyangga -Added: 2009-07-29 -%% -Type: language -Subtag: wrk -Description: Garrwa -Added: 2012-08-12 -%% -Type: language -Subtag: wrl -Description: Warlmanpa -Added: 2009-07-29 -%% -Type: language -Subtag: wrm -Description: Warumungu -Added: 2009-07-29 -%% -Type: language -Subtag: wrn -Description: Warnang -Added: 2009-07-29 -%% -Type: language -Subtag: wro -Description: Worrorra -Added: 2012-08-12 -%% -Type: language -Subtag: wrp -Description: Waropen -Added: 2009-07-29 -%% -Type: language -Subtag: wrr -Description: Wardaman -Added: 2009-07-29 -%% -Type: language -Subtag: wrs -Description: Waris -Added: 2009-07-29 -%% -Type: language -Subtag: wru -Description: Waru -Added: 2009-07-29 -%% -Type: language -Subtag: wrv -Description: Waruna -Added: 2009-07-29 -%% -Type: language -Subtag: wrw -Description: Gugu Warra -Added: 2009-07-29 -%% -Type: language -Subtag: wrx -Description: Wae Rana -Added: 2009-07-29 -%% -Type: language -Subtag: wry -Description: Merwari -Added: 2009-07-29 -Macrolanguage: mwr -%% -Type: language -Subtag: wrz -Description: Waray (Australia) -Added: 2009-07-29 -%% -Type: language -Subtag: wsa -Description: Warembori -Added: 2009-07-29 -%% -Type: language -Subtag: wsg -Description: Adilabad Gondi -Added: 2016-05-30 -Macrolanguage: gon -%% -Type: language -Subtag: wsi -Description: Wusi -Added: 2009-07-29 -%% -Type: language -Subtag: wsk -Description: Waskia -Added: 2009-07-29 -%% -Type: language -Subtag: wsr -Description: Owenia -Added: 2009-07-29 -%% -Type: language -Subtag: wss -Description: Wasa -Added: 2009-07-29 -%% -Type: language -Subtag: wsu -Description: Wasu -Added: 2009-07-29 -%% -Type: language -Subtag: wsv -Description: Wotapuri-Katarqalai -Added: 2009-07-29 -%% -Type: language -Subtag: wtb -Description: Matambwe -Added: 2023-03-17 -%% -Type: language -Subtag: wtf -Description: Watiwa -Added: 2009-07-29 -%% -Type: language -Subtag: wth -Description: Wathawurrung -Added: 2013-09-10 -%% -Type: language -Subtag: wti -Description: Berta -Added: 2009-07-29 -%% -Type: language -Subtag: wtk -Description: Watakataui -Added: 2009-07-29 -%% -Type: language -Subtag: wtm -Description: Mewati -Added: 2009-07-29 -%% -Type: language -Subtag: wtw -Description: Wotu -Added: 2009-07-29 -%% -Type: language -Subtag: wua -Description: Wikngenchera -Added: 2009-07-29 -%% -Type: language -Subtag: wub -Description: Wunambal -Added: 2009-07-29 -%% -Type: language -Subtag: wud -Description: Wudu -Added: 2009-07-29 -%% -Type: language -Subtag: wuh -Description: Wutunhua -Added: 2009-07-29 -%% -Type: language -Subtag: wul -Description: Silimo -Added: 2009-07-29 -%% -Type: language -Subtag: wum -Description: Wumbvu -Added: 2009-07-29 -%% -Type: language -Subtag: wun -Description: Bungu -Added: 2009-07-29 -%% -Type: language -Subtag: wur -Description: Wurrugu -Added: 2009-07-29 -%% -Type: language -Subtag: wut -Description: Wutung -Added: 2009-07-29 -%% -Type: language -Subtag: wuu -Description: Wu Chinese -Added: 2009-07-29 -Macrolanguage: zh -%% -Type: language -Subtag: wuv -Description: Wuvulu-Aua -Added: 2009-07-29 -%% -Type: language -Subtag: wux -Description: Wulna -Added: 2009-07-29 -%% -Type: language -Subtag: wuy -Description: Wauyai -Added: 2009-07-29 -%% -Type: language -Subtag: wwa -Description: Waama -Added: 2009-07-29 -%% -Type: language -Subtag: wwb -Description: Wakabunga -Added: 2012-08-12 -%% -Type: language -Subtag: wwo -Description: Wetamut -Description: Dorig -Added: 2009-07-29 -%% -Type: language -Subtag: wwr -Description: Warrwa -Added: 2009-07-29 -%% -Type: language -Subtag: www -Description: Wawa -Added: 2009-07-29 -%% -Type: language -Subtag: wxa -Description: Waxianghua -Added: 2009-07-29 -%% -Type: language -Subtag: wxw -Description: Wardandi -Added: 2013-09-10 -%% -Type: language -Subtag: wya -Description: Wyandot -Added: 2009-07-29 -Deprecated: 2022-02-25 -Comments: see wdt, wyn -%% -Type: language -Subtag: wyb -Description: Wangaaybuwan-Ngiyambaa -Added: 2009-07-29 -%% -Type: language -Subtag: wyi -Description: Woiwurrung -Added: 2013-09-10 -%% -Type: language -Subtag: wym -Description: Wymysorys -Added: 2009-07-29 -%% -Type: language -Subtag: wyn -Description: Wyandot -Added: 2022-02-25 -%% -Type: language -Subtag: wyr -Description: Wayoró -Added: 2009-07-29 -%% -Type: language -Subtag: wyy -Description: Western Fijian -Added: 2009-07-29 -%% -Type: language -Subtag: xaa -Description: Andalusian Arabic -Added: 2009-07-29 -%% -Type: language -Subtag: xab -Description: Sambe -Added: 2009-07-29 -%% -Type: language -Subtag: xac -Description: Kachari -Added: 2009-07-29 -%% -Type: language -Subtag: xad -Description: Adai -Added: 2009-07-29 -%% -Type: language -Subtag: xae -Description: Aequian -Added: 2009-07-29 -%% -Type: language -Subtag: xag -Description: Aghwan -Added: 2009-07-29 -%% -Type: language -Subtag: xai -Description: Kaimbé -Added: 2009-07-29 -%% -Type: language -Subtag: xaj -Description: Ararandewára -Added: 2014-02-28 -%% -Type: language -Subtag: xak -Description: Máku -Added: 2016-05-30 -%% -Type: language -Subtag: xal -Description: Kalmyk -Description: Oirat -Added: 2005-10-16 -%% -Type: language -Subtag: xam -Description: ǀXam -Added: 2009-07-29 -%% -Type: language -Subtag: xan -Description: Xamtanga -Added: 2009-07-29 -%% -Type: language -Subtag: xao -Description: Khao -Added: 2009-07-29 -%% -Type: language -Subtag: xap -Description: Apalachee -Added: 2009-07-29 -%% -Type: language -Subtag: xaq -Description: Aquitanian -Added: 2009-07-29 -%% -Type: language -Subtag: xar -Description: Karami -Added: 2009-07-29 -%% -Type: language -Subtag: xas -Description: Kamas -Added: 2009-07-29 -%% -Type: language -Subtag: xat -Description: Katawixi -Added: 2009-07-29 -%% -Type: language -Subtag: xau -Description: Kauwera -Added: 2009-07-29 -%% -Type: language -Subtag: xav -Description: Xavánte -Added: 2009-07-29 -%% -Type: language -Subtag: xaw -Description: Kawaiisu -Added: 2009-07-29 -%% -Type: language -Subtag: xay -Description: Kayan Mahakam -Added: 2009-07-29 -%% -Type: language -Subtag: xba -Description: Kamba (Brazil) -Added: 2009-07-29 -Deprecated: 2016-05-30 -Preferred-Value: cax -%% -Type: language -Subtag: xbb -Description: Lower Burdekin -Added: 2010-03-11 -%% -Type: language -Subtag: xbc -Description: Bactrian -Added: 2009-07-29 -%% -Type: language -Subtag: xbd -Description: Bindal -Added: 2013-09-10 -%% -Type: language -Subtag: xbe -Description: Bigambal -Added: 2013-09-10 -%% -Type: language -Subtag: xbg -Description: Bunganditj -Added: 2013-09-10 -%% -Type: language -Subtag: xbi -Description: Kombio -Added: 2009-07-29 -%% -Type: language -Subtag: xbj -Description: Birrpayi -Added: 2013-09-10 -%% -Type: language -Subtag: xbm -Description: Middle Breton -Added: 2009-07-29 -%% -Type: language -Subtag: xbn -Description: Kenaboi -Added: 2010-03-11 -%% -Type: language -Subtag: xbo -Description: Bolgarian -Added: 2009-07-29 -%% -Type: language -Subtag: xbp -Description: Bibbulman -Added: 2013-09-10 -%% -Type: language -Subtag: xbr -Description: Kambera -Added: 2009-07-29 -%% -Type: language -Subtag: xbw -Description: Kambiwá -Added: 2009-07-29 -%% -Type: language -Subtag: xbx -Description: Kabixí -Added: 2009-07-29 -Deprecated: 2016-05-30 -%% -Type: language -Subtag: xby -Description: Batjala -Description: Batyala -Added: 2013-09-10 -%% -Type: language -Subtag: xcb -Description: Cumbric -Added: 2009-07-29 -%% -Type: language -Subtag: xcc -Description: Camunic -Added: 2009-07-29 -%% -Type: language -Subtag: xce -Description: Celtiberian -Added: 2009-07-29 -%% -Type: language -Subtag: xcg -Description: Cisalpine Gaulish -Added: 2009-07-29 -%% -Type: language -Subtag: xch -Description: Chemakum -Description: Chimakum -Added: 2009-07-29 -%% -Type: language -Subtag: xcl -Description: Classical Armenian -Added: 2009-07-29 -%% -Type: language -Subtag: xcm -Description: Comecrudo -Added: 2009-07-29 -%% -Type: language -Subtag: xcn -Description: Cotoname -Added: 2009-07-29 -%% -Type: language -Subtag: xco -Description: Chorasmian -Added: 2009-07-29 -%% -Type: language -Subtag: xcr -Description: Carian -Added: 2009-07-29 -%% -Type: language -Subtag: xct -Description: Classical Tibetan -Added: 2009-07-29 -%% -Type: language -Subtag: xcu -Description: Curonian -Added: 2009-07-29 -%% -Type: language -Subtag: xcv -Description: Chuvantsy -Added: 2009-07-29 -%% -Type: language -Subtag: xcw -Description: Coahuilteco -Added: 2009-07-29 -%% -Type: language -Subtag: xcy -Description: Cayuse -Added: 2009-07-29 -%% -Type: language -Subtag: xda -Description: Darkinyung -Added: 2013-09-10 -%% -Type: language -Subtag: xdc -Description: Dacian -Added: 2009-07-29 -%% -Type: language -Subtag: xdk -Description: Dharuk -Added: 2013-09-10 -%% -Type: language -Subtag: xdm -Description: Edomite -Added: 2009-07-29 -%% -Type: language -Subtag: xdo -Description: Kwandu -Added: 2017-02-23 -%% -Type: language -Subtag: xdq -Description: Kaitag -Added: 2022-02-25 -%% -Type: language -Subtag: xdy -Description: Malayic Dayak -Added: 2009-07-29 -%% -Type: language -Subtag: xeb -Description: Eblan -Added: 2009-07-29 -%% -Type: language -Subtag: xed -Description: Hdi -Added: 2009-07-29 -%% -Type: language -Subtag: xeg -Description: ǁXegwi -Added: 2009-07-29 -%% -Type: language -Subtag: xel -Description: Kelo -Added: 2009-07-29 -%% -Type: language -Subtag: xem -Description: Kembayan -Added: 2009-07-29 -%% -Type: language -Subtag: xep -Description: Epi-Olmec -Added: 2009-07-29 -%% -Type: language -Subtag: xer -Description: Xerénte -Added: 2009-07-29 -%% -Type: language -Subtag: xes -Description: Kesawai -Added: 2009-07-29 -%% -Type: language -Subtag: xet -Description: Xetá -Added: 2009-07-29 -%% -Type: language -Subtag: xeu -Description: Keoru-Ahia -Added: 2009-07-29 -%% -Type: language -Subtag: xfa -Description: Faliscan -Added: 2009-07-29 -%% -Type: language -Subtag: xga -Description: Galatian -Added: 2009-07-29 -%% -Type: language -Subtag: xgb -Description: Gbin -Added: 2012-08-12 -%% -Type: language -Subtag: xgd -Description: Gudang -Added: 2013-09-10 -%% -Type: language -Subtag: xgf -Description: Gabrielino-Fernandeño -Added: 2009-07-29 -%% -Type: language -Subtag: xgg -Description: Goreng -Added: 2013-09-10 -%% -Type: language -Subtag: xgi -Description: Garingbal -Added: 2013-09-10 -%% -Type: language -Subtag: xgl -Description: Galindan -Added: 2009-07-29 -%% -Type: language -Subtag: xgm -Description: Dharumbal -Description: Guwinmal -Added: 2013-09-10 -%% -Type: language -Subtag: xgn -Description: Mongolian languages -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: xgr -Description: Garza -Added: 2009-07-29 -%% -Type: language -Subtag: xgu -Description: Unggumi -Added: 2012-08-12 -%% -Type: language -Subtag: xgw -Description: Guwa -Added: 2013-09-10 -%% -Type: language -Subtag: xha -Description: Harami -Added: 2009-07-29 -%% -Type: language -Subtag: xhc -Description: Hunnic -Added: 2009-07-29 -%% -Type: language -Subtag: xhd -Description: Hadrami -Added: 2009-07-29 -%% -Type: language -Subtag: xhe -Description: Khetrani -Added: 2009-07-29 -Macrolanguage: lah -%% -Type: language -Subtag: xhm -Description: Middle Khmer (1400 to 1850 CE) -Added: 2022-02-25 -%% -Type: language -Subtag: xhr -Description: Hernican -Added: 2009-07-29 -%% -Type: language -Subtag: xht -Description: Hattic -Added: 2009-07-29 -%% -Type: language -Subtag: xhu -Description: Hurrian -Added: 2009-07-29 -%% -Type: language -Subtag: xhv -Description: Khua -Added: 2009-07-29 -%% -Type: language -Subtag: xia -Description: Xiandao -Added: 2009-07-29 -Deprecated: 2013-09-10 -Preferred-Value: acn -%% -Type: language -Subtag: xib -Description: Iberian -Added: 2009-07-29 -%% -Type: language -Subtag: xii -Description: Xiri -Added: 2009-07-29 -%% -Type: language -Subtag: xil -Description: Illyrian -Added: 2009-07-29 -%% -Type: language -Subtag: xin -Description: Xinca -Added: 2009-07-29 -%% -Type: language -Subtag: xip -Description: Xipináwa -Added: 2009-07-29 -Deprecated: 2016-05-30 -%% -Type: language -Subtag: xir -Description: Xiriâna -Added: 2009-07-29 -%% -Type: language -Subtag: xis -Description: Kisan -Added: 2014-02-28 -%% -Type: language -Subtag: xiv -Description: Indus Valley Language -Added: 2009-07-29 -%% -Type: language -Subtag: xiy -Description: Xipaya -Added: 2009-07-29 -%% -Type: language -Subtag: xjb -Description: Minjungbal -Added: 2013-09-10 -%% -Type: language -Subtag: xjt -Description: Jaitmatang -Added: 2013-09-10 -%% -Type: language -Subtag: xka -Description: Kalkoti -Added: 2009-07-29 -%% -Type: language -Subtag: xkb -Description: Northern Nago -Added: 2009-07-29 -%% -Type: language -Subtag: xkc -Description: Kho'ini -Added: 2009-07-29 -%% -Type: language -Subtag: xkd -Description: Mendalam Kayan -Added: 2009-07-29 -%% -Type: language -Subtag: xke -Description: Kereho -Added: 2009-07-29 -%% -Type: language -Subtag: xkf -Description: Khengkha -Added: 2009-07-29 -%% -Type: language -Subtag: xkg -Description: Kagoro -Added: 2009-07-29 -%% -Type: language -Subtag: xkh -Description: Karahawyana -Added: 2009-07-29 -Deprecated: 2016-05-30 -Preferred-Value: waw -%% -Type: language -Subtag: xki -Description: Kenyan Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: xkj -Description: Kajali -Added: 2009-07-29 -%% -Type: language -Subtag: xkk -Description: Kachok -Description: Kaco' -Added: 2009-07-29 -%% -Type: language -Subtag: xkl -Description: Mainstream Kenyah -Added: 2009-07-29 -%% -Type: language -Subtag: xkn -Description: Kayan River Kayan -Added: 2009-07-29 -%% -Type: language -Subtag: xko -Description: Kiorr -Added: 2009-07-29 -%% -Type: language -Subtag: xkp -Description: Kabatei -Added: 2009-07-29 -%% -Type: language -Subtag: xkq -Description: Koroni -Added: 2009-07-29 -%% -Type: language -Subtag: xkr -Description: Xakriabá -Added: 2009-07-29 -%% -Type: language -Subtag: xks -Description: Kumbewaha -Added: 2009-07-29 -%% -Type: language -Subtag: xkt -Description: Kantosi -Added: 2009-07-29 -%% -Type: language -Subtag: xku -Description: Kaamba -Added: 2009-07-29 -%% -Type: language -Subtag: xkv -Description: Kgalagadi -Added: 2009-07-29 -%% -Type: language -Subtag: xkw -Description: Kembra -Added: 2009-07-29 -%% -Type: language -Subtag: xkx -Description: Karore -Added: 2009-07-29 -%% -Type: language -Subtag: xky -Description: Uma' Lasan -Added: 2009-07-29 -%% -Type: language -Subtag: xkz -Description: Kurtokha -Added: 2009-07-29 -%% -Type: language -Subtag: xla -Description: Kamula -Added: 2009-07-29 -%% -Type: language -Subtag: xlb -Description: Loup B -Added: 2009-07-29 -%% -Type: language -Subtag: xlc -Description: Lycian -Added: 2009-07-29 -%% -Type: language -Subtag: xld -Description: Lydian -Added: 2009-07-29 -%% -Type: language -Subtag: xle -Description: Lemnian -Added: 2009-07-29 -%% -Type: language -Subtag: xlg -Description: Ligurian (Ancient) -Added: 2009-07-29 -%% -Type: language -Subtag: xli -Description: Liburnian -Added: 2009-07-29 -%% -Type: language -Subtag: xln -Description: Alanic -Added: 2009-07-29 -%% -Type: language -Subtag: xlo -Description: Loup A -Added: 2009-07-29 -%% -Type: language -Subtag: xlp -Description: Lepontic -Added: 2009-07-29 -%% -Type: language -Subtag: xls -Description: Lusitanian -Added: 2009-07-29 -%% -Type: language -Subtag: xlu -Description: Cuneiform Luwian -Added: 2009-07-29 -%% -Type: language -Subtag: xly -Description: Elymian -Added: 2009-07-29 -%% -Type: language -Subtag: xma -Description: Mushungulu -Added: 2009-07-29 -%% -Type: language -Subtag: xmb -Description: Mbonga -Added: 2009-07-29 -%% -Type: language -Subtag: xmc -Description: Makhuwa-Marrevone -Added: 2009-07-29 -%% -Type: language -Subtag: xmd -Description: Mbudum -Added: 2009-07-29 -%% -Type: language -Subtag: xme -Description: Median -Added: 2009-07-29 -%% -Type: language -Subtag: xmf -Description: Mingrelian -Added: 2009-07-29 -%% -Type: language -Subtag: xmg -Description: Mengaka -Added: 2009-07-29 -%% -Type: language -Subtag: xmh -Description: Kugu-Muminh -Added: 2009-07-29 -%% -Type: language -Subtag: xmj -Description: Majera -Added: 2009-07-29 -%% -Type: language -Subtag: xmk -Description: Ancient Macedonian -Added: 2009-07-29 -%% -Type: language -Subtag: xml -Description: Malaysian Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: xmm -Description: Manado Malay -Added: 2009-07-29 -Macrolanguage: ms -%% -Type: language -Subtag: xmn -Description: Manichaean Middle Persian -Added: 2009-07-29 -%% -Type: language -Subtag: xmo -Description: Morerebi -Added: 2009-07-29 -%% -Type: language -Subtag: xmp -Description: Kuku-Mu'inh -Added: 2009-07-29 -%% -Type: language -Subtag: xmq -Description: Kuku-Mangk -Added: 2009-07-29 -%% -Type: language -Subtag: xmr -Description: Meroitic -Added: 2009-07-29 -%% -Type: language -Subtag: xms -Description: Moroccan Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: xmt -Description: Matbat -Added: 2009-07-29 -%% -Type: language -Subtag: xmu -Description: Kamu -Added: 2009-07-29 -%% -Type: language -Subtag: xmv -Description: Antankarana Malagasy -Description: Tankarana Malagasy -Added: 2009-07-29 -Macrolanguage: mg -%% -Type: language -Subtag: xmw -Description: Tsimihety Malagasy -Added: 2009-07-29 -Macrolanguage: mg -%% -Type: language -Subtag: xmx -Description: Salawati -Description: Maden -Added: 2009-07-29 -%% -Type: language -Subtag: xmy -Description: Mayaguduna -Added: 2009-07-29 -%% -Type: language -Subtag: xmz -Description: Mori Bawah -Added: 2009-07-29 -%% -Type: language -Subtag: xna -Description: Ancient North Arabian -Added: 2009-07-29 -%% -Type: language -Subtag: xnb -Description: Kanakanabu -Added: 2009-07-29 -%% -Type: language -Subtag: xnd -Description: Na-Dene languages -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: xng -Description: Middle Mongolian -Added: 2009-07-29 -%% -Type: language -Subtag: xnh -Description: Kuanhua -Added: 2009-07-29 -%% -Type: language -Subtag: xni -Description: Ngarigu -Added: 2013-09-10 -%% -Type: language -Subtag: xnj -Description: Ngoni (Tanzania) -Added: 2021-02-20 -%% -Type: language -Subtag: xnk -Description: Nganakarti -Added: 2013-09-10 -%% -Type: language -Subtag: xnm -Description: Ngumbarl -Added: 2020-03-28 -%% -Type: language -Subtag: xnn -Description: Northern Kankanay -Added: 2009-07-29 -%% -Type: language -Subtag: xno -Description: Anglo-Norman -Added: 2009-07-29 -%% -Type: language -Subtag: xnq -Description: Ngoni (Mozambique) -Added: 2021-02-20 -%% -Type: language -Subtag: xnr -Description: Kangri -Added: 2009-07-29 -Macrolanguage: doi -%% -Type: language -Subtag: xns -Description: Kanashi -Added: 2009-07-29 -%% -Type: language -Subtag: xnt -Description: Narragansett -Added: 2010-03-11 -%% -Type: language -Subtag: xnu -Description: Nukunul -Added: 2013-09-10 -%% -Type: language -Subtag: xny -Description: Nyiyaparli -Added: 2013-09-10 -%% -Type: language -Subtag: xnz -Description: Kenzi -Description: Mattoki -Added: 2012-08-12 -%% -Type: language -Subtag: xoc -Description: O'chi'chi' -Added: 2009-07-29 -%% -Type: language -Subtag: xod -Description: Kokoda -Added: 2009-07-29 -%% -Type: language -Subtag: xog -Description: Soga -Added: 2009-07-29 -%% -Type: language -Subtag: xoi -Description: Kominimung -Added: 2009-07-29 -%% -Type: language -Subtag: xok -Description: Xokleng -Added: 2009-07-29 -%% -Type: language -Subtag: xom -Description: Komo (Sudan) -Added: 2009-07-29 -%% -Type: language -Subtag: xon -Description: Konkomba -Added: 2009-07-29 -%% -Type: language -Subtag: xoo -Description: Xukurú -Added: 2009-07-29 -%% -Type: language -Subtag: xop -Description: Kopar -Added: 2009-07-29 -%% -Type: language -Subtag: xor -Description: Korubo -Added: 2009-07-29 -%% -Type: language -Subtag: xow -Description: Kowaki -Added: 2009-07-29 -%% -Type: language -Subtag: xpa -Description: Pirriya -Added: 2013-09-10 -%% -Type: language -Subtag: xpb -Description: Northeastern Tasmanian -Description: Pyemmairrener -Added: 2020-03-28 -%% -Type: language -Subtag: xpc -Description: Pecheneg -Added: 2009-07-29 -%% -Type: language -Subtag: xpd -Description: Oyster Bay Tasmanian -Added: 2020-03-28 -%% -Type: language -Subtag: xpe -Description: Liberia Kpelle -Added: 2009-07-29 -Macrolanguage: kpe -%% -Type: language -Subtag: xpf -Description: Southeast Tasmanian -Description: Nuenonne -Added: 2020-03-28 -%% -Type: language -Subtag: xpg -Description: Phrygian -Added: 2009-07-29 -%% -Type: language -Subtag: xph -Description: North Midlands Tasmanian -Description: Tyerrenoterpanner -Added: 2020-03-28 -%% -Type: language -Subtag: xpi -Description: Pictish -Added: 2009-07-29 -%% -Type: language -Subtag: xpj -Description: Mpalitjanh -Added: 2012-08-12 -%% -Type: language -Subtag: xpk -Description: Kulina Pano -Added: 2009-07-29 -%% -Type: language -Subtag: xpl -Description: Port Sorell Tasmanian -Added: 2020-03-28 -%% -Type: language -Subtag: xpm -Description: Pumpokol -Added: 2009-07-29 -%% -Type: language -Subtag: xpn -Description: Kapinawá -Added: 2009-07-29 -%% -Type: language -Subtag: xpo -Description: Pochutec -Added: 2009-07-29 -%% -Type: language -Subtag: xpp -Description: Puyo-Paekche -Added: 2009-07-29 -%% -Type: language -Subtag: xpq -Description: Mohegan-Pequot -Added: 2010-03-11 -%% -Type: language -Subtag: xpr -Description: Parthian -Added: 2009-07-29 -%% -Type: language -Subtag: xps -Description: Pisidian -Added: 2009-07-29 -%% -Type: language -Subtag: xpt -Description: Punthamara -Added: 2013-09-10 -%% -Type: language -Subtag: xpu -Description: Punic -Added: 2009-07-29 -%% -Type: language -Subtag: xpv -Description: Northern Tasmanian -Description: Tommeginne -Added: 2020-03-28 -%% -Type: language -Subtag: xpw -Description: Northwestern Tasmanian -Description: Peerapper -Added: 2020-03-28 -%% -Type: language -Subtag: xpx -Description: Southwestern Tasmanian -Description: Toogee -Added: 2020-03-28 -%% -Type: language -Subtag: xpy -Description: Puyo -Added: 2009-07-29 -%% -Type: language -Subtag: xpz -Description: Bruny Island Tasmanian -Added: 2020-03-28 -%% -Type: language -Subtag: xqa -Description: Karakhanid -Added: 2009-07-29 -%% -Type: language -Subtag: xqt -Description: Qatabanian -Added: 2009-07-29 -%% -Type: language -Subtag: xra -Description: Krahô -Added: 2009-07-29 -%% -Type: language -Subtag: xrb -Description: Eastern Karaboro -Added: 2009-07-29 -%% -Type: language -Subtag: xrd -Description: Gundungurra -Added: 2013-09-10 -%% -Type: language -Subtag: xre -Description: Kreye -Added: 2009-07-29 -%% -Type: language -Subtag: xrg -Description: Minang -Added: 2013-09-10 -%% -Type: language -Subtag: xri -Description: Krikati-Timbira -Added: 2009-07-29 -%% -Type: language -Subtag: xrm -Description: Armazic -Added: 2009-07-29 -%% -Type: language -Subtag: xrn -Description: Arin -Added: 2009-07-29 -%% -Type: language -Subtag: xrq -Description: Karranga -Added: 2013-09-10 -Deprecated: 2020-03-28 -Preferred-Value: dmw -%% -Type: language -Subtag: xrr -Description: Raetic -Added: 2009-07-29 -%% -Type: language -Subtag: xrt -Description: Aranama-Tamique -Added: 2009-07-29 -%% -Type: language -Subtag: xru -Description: Marriammu -Added: 2009-07-29 -%% -Type: language -Subtag: xrw -Description: Karawa -Added: 2009-07-29 -%% -Type: language -Subtag: xsa -Description: Sabaean -Added: 2009-07-29 -%% -Type: language -Subtag: xsb -Description: Sambal -Added: 2009-07-29 -%% -Type: language -Subtag: xsc -Description: Scythian -Added: 2009-07-29 -%% -Type: language -Subtag: xsd -Description: Sidetic -Added: 2009-07-29 -%% -Type: language -Subtag: xse -Description: Sempan -Added: 2009-07-29 -%% -Type: language -Subtag: xsh -Description: Shamang -Added: 2009-07-29 -%% -Type: language -Subtag: xsi -Description: Sio -Added: 2009-07-29 -%% -Type: language -Subtag: xsj -Description: Subi -Added: 2009-07-29 -Comments: see also suj -%% -Type: language -Subtag: xsl -Description: South Slavey -Added: 2009-07-29 -Macrolanguage: den -%% -Type: language -Subtag: xsm -Description: Kasem -Added: 2009-07-29 -%% -Type: language -Subtag: xsn -Description: Sanga (Nigeria) -Added: 2009-07-29 -%% -Type: language -Subtag: xso -Description: Solano -Added: 2009-07-29 -%% -Type: language -Subtag: xsp -Description: Silopi -Added: 2009-07-29 -%% -Type: language -Subtag: xsq -Description: Makhuwa-Saka -Added: 2009-07-29 -%% -Type: language -Subtag: xsr -Description: Sherpa -Added: 2009-07-29 -%% -Type: language -Subtag: xss -Description: Assan -Added: 2009-07-29 -Deprecated: 2023-03-17 -Preferred-Value: zko -%% -Type: language -Subtag: xsu -Description: Sanumá -Added: 2009-07-29 -%% -Type: language -Subtag: xsv -Description: Sudovian -Added: 2009-07-29 -%% -Type: language -Subtag: xsy -Description: Saisiyat -Added: 2009-07-29 -%% -Type: language -Subtag: xta -Description: Alcozauca Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: xtb -Description: Chazumba Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: xtc -Description: Katcha-Kadugli-Miri -Added: 2009-07-29 -%% -Type: language -Subtag: xtd -Description: Diuxi-Tilantongo Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: xte -Description: Ketengban -Added: 2009-07-29 -%% -Type: language -Subtag: xtg -Description: Transalpine Gaulish -Added: 2009-07-29 -%% -Type: language -Subtag: xth -Description: Yitha Yitha -Added: 2013-09-10 -%% -Type: language -Subtag: xti -Description: Sinicahua Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: xtj -Description: San Juan Teita Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: xtl -Description: Tijaltepec Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: xtm -Description: Magdalena Peñasco Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: xtn -Description: Northern Tlaxiaco Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: xto -Description: Tokharian A -Added: 2009-07-29 -%% -Type: language -Subtag: xtp -Description: San Miguel Piedras Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: xtq -Description: Tumshuqese -Added: 2009-07-29 -%% -Type: language -Subtag: xtr -Description: Early Tripuri -Added: 2009-07-29 -%% -Type: language -Subtag: xts -Description: Sindihui Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: xtt -Description: Tacahua Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: xtu -Description: Cuyamecalco Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: xtv -Description: Thawa -Added: 2013-09-10 -%% -Type: language -Subtag: xtw -Description: Tawandê -Added: 2009-07-29 -%% -Type: language -Subtag: xty -Description: Yoloxochitl Mixtec -Added: 2009-07-29 -%% -Type: language -Subtag: xtz -Description: Tasmanian -Added: 2009-07-29 -Deprecated: 2020-03-28 -Comments: see xpb, xpd, xpf, xph, xpl, xpv, xpw, xpx, xpz -%% -Type: language -Subtag: xua -Description: Alu Kurumba -Added: 2009-07-29 -%% -Type: language -Subtag: xub -Description: Betta Kurumba -Added: 2009-07-29 -%% -Type: language -Subtag: xud -Description: Umiida -Added: 2012-08-12 -%% -Type: language -Subtag: xug -Description: Kunigami -Added: 2009-07-29 -%% -Type: language -Subtag: xuj -Description: Jennu Kurumba -Added: 2009-07-29 -%% -Type: language -Subtag: xul -Description: Ngunawal -Description: Nunukul -Added: 2013-09-10 -%% -Type: language -Subtag: xum -Description: Umbrian -Added: 2009-07-29 -%% -Type: language -Subtag: xun -Description: Unggaranggu -Added: 2012-08-12 -%% -Type: language -Subtag: xuo -Description: Kuo -Added: 2009-07-29 -%% -Type: language -Subtag: xup -Description: Upper Umpqua -Added: 2009-07-29 -%% -Type: language -Subtag: xur -Description: Urartian -Added: 2009-07-29 -%% -Type: language -Subtag: xut -Description: Kuthant -Added: 2009-07-29 -%% -Type: language -Subtag: xuu -Description: Kxoe -Description: Khwedam -Added: 2009-07-29 -%% -Type: language -Subtag: xve -Description: Venetic -Added: 2009-07-29 -%% -Type: language -Subtag: xvi -Description: Kamviri -Added: 2009-07-29 -%% -Type: language -Subtag: xvn -Description: Vandalic -Added: 2009-07-29 -%% -Type: language -Subtag: xvo -Description: Volscian -Added: 2009-07-29 -%% -Type: language -Subtag: xvs -Description: Vestinian -Added: 2009-07-29 -%% -Type: language -Subtag: xwa -Description: Kwaza -Added: 2009-07-29 -%% -Type: language -Subtag: xwc -Description: Woccon -Added: 2009-07-29 -%% -Type: language -Subtag: xwd -Description: Wadi Wadi -Added: 2013-09-10 -%% -Type: language -Subtag: xwe -Description: Xwela Gbe -Added: 2009-07-29 -%% -Type: language -Subtag: xwg -Description: Kwegu -Added: 2009-07-29 -%% -Type: language -Subtag: xwj -Description: Wajuk -Added: 2013-09-10 -%% -Type: language -Subtag: xwk -Description: Wangkumara -Added: 2013-09-10 -%% -Type: language -Subtag: xwl -Description: Western Xwla Gbe -Added: 2009-07-29 -%% -Type: language -Subtag: xwo -Description: Written Oirat -Added: 2009-07-29 -%% -Type: language -Subtag: xwr -Description: Kwerba Mamberamo -Added: 2009-07-29 -%% -Type: language -Subtag: xwt -Description: Wotjobaluk -Added: 2013-09-10 -%% -Type: language -Subtag: xww -Description: Wemba Wemba -Added: 2013-09-10 -%% -Type: language -Subtag: xxb -Description: Boro (Ghana) -Added: 2009-07-29 -%% -Type: language -Subtag: xxk -Description: Ke'o -Added: 2009-07-29 -%% -Type: language -Subtag: xxm -Description: Minkin -Added: 2013-09-10 -%% -Type: language -Subtag: xxr -Description: Koropó -Added: 2009-07-29 -%% -Type: language -Subtag: xxt -Description: Tambora -Added: 2009-07-29 -%% -Type: language -Subtag: xya -Description: Yaygir -Added: 2013-09-10 -%% -Type: language -Subtag: xyb -Description: Yandjibara -Added: 2013-09-10 -%% -Type: language -Subtag: xyj -Description: Mayi-Yapi -Added: 2013-09-10 -%% -Type: language -Subtag: xyk -Description: Mayi-Kulan -Added: 2013-09-10 -%% -Type: language -Subtag: xyl -Description: Yalakalore -Added: 2009-07-29 -%% -Type: language -Subtag: xyt -Description: Mayi-Thakurti -Added: 2013-09-10 -%% -Type: language -Subtag: xyy -Description: Yorta Yorta -Added: 2012-08-12 -%% -Type: language -Subtag: xzh -Description: Zhang-Zhung -Added: 2009-07-29 -%% -Type: language -Subtag: xzm -Description: Zemgalian -Added: 2009-07-29 -%% -Type: language -Subtag: xzp -Description: Ancient Zapotec -Added: 2009-07-29 -%% -Type: language -Subtag: yaa -Description: Yaminahua -Added: 2009-07-29 -%% -Type: language -Subtag: yab -Description: Yuhup -Added: 2009-07-29 -%% -Type: language -Subtag: yac -Description: Pass Valley Yali -Added: 2009-07-29 -%% -Type: language -Subtag: yad -Description: Yagua -Added: 2009-07-29 -%% -Type: language -Subtag: yae -Description: Pumé -Added: 2009-07-29 -%% -Type: language -Subtag: yaf -Description: Yaka (Democratic Republic of Congo) -Added: 2009-07-29 -%% -Type: language -Subtag: yag -Description: Yámana -Added: 2009-07-29 -%% -Type: language -Subtag: yah -Description: Yazgulyam -Added: 2009-07-29 -%% -Type: language -Subtag: yai -Description: Yagnobi -Added: 2009-07-29 -%% -Type: language -Subtag: yaj -Description: Banda-Yangere -Added: 2009-07-29 -%% -Type: language -Subtag: yak -Description: Yakama -Added: 2009-07-29 -%% -Type: language -Subtag: yal -Description: Yalunka -Added: 2009-07-29 -%% -Type: language -Subtag: yam -Description: Yamba -Added: 2009-07-29 -%% -Type: language -Subtag: yan -Description: Mayangna -Added: 2010-03-11 -%% -Type: language -Subtag: yao -Description: Yao -Added: 2005-10-16 -%% -Type: language -Subtag: yap -Description: Yapese -Added: 2005-10-16 -%% -Type: language -Subtag: yaq -Description: Yaqui -Added: 2009-07-29 -%% -Type: language -Subtag: yar -Description: Yabarana -Added: 2009-07-29 -%% -Type: language -Subtag: yas -Description: Nugunu (Cameroon) -Added: 2009-07-29 -%% -Type: language -Subtag: yat -Description: Yambeta -Added: 2009-07-29 -%% -Type: language -Subtag: yau -Description: Yuwana -Added: 2009-07-29 -%% -Type: language -Subtag: yav -Description: Yangben -Added: 2009-07-29 -%% -Type: language -Subtag: yaw -Description: Yawalapití -Added: 2009-07-29 -%% -Type: language -Subtag: yax -Description: Yauma -Added: 2009-07-29 -%% -Type: language -Subtag: yay -Description: Agwagwune -Added: 2009-07-29 -%% -Type: language -Subtag: yaz -Description: Lokaa -Added: 2009-07-29 -%% -Type: language -Subtag: yba -Description: Yala -Added: 2009-07-29 -%% -Type: language -Subtag: ybb -Description: Yemba -Added: 2009-07-29 -%% -Type: language -Subtag: ybd -Description: Yangbye -Added: 2009-07-29 -Deprecated: 2012-08-12 -Preferred-Value: rki -%% -Type: language -Subtag: ybe -Description: West Yugur -Added: 2009-07-29 -%% -Type: language -Subtag: ybh -Description: Yakha -Added: 2009-07-29 -%% -Type: language -Subtag: ybi -Description: Yamphu -Added: 2009-07-29 -%% -Type: language -Subtag: ybj -Description: Hasha -Added: 2009-07-29 -%% -Type: language -Subtag: ybk -Description: Bokha -Added: 2009-07-29 -%% -Type: language -Subtag: ybl -Description: Yukuben -Added: 2009-07-29 -%% -Type: language -Subtag: ybm -Description: Yaben -Added: 2009-07-29 -%% -Type: language -Subtag: ybn -Description: Yabaâna -Added: 2009-07-29 -%% -Type: language -Subtag: ybo -Description: Yabong -Added: 2009-07-29 -%% -Type: language -Subtag: ybx -Description: Yawiyo -Added: 2009-07-29 -%% -Type: language -Subtag: yby -Description: Yaweyuha -Added: 2009-07-29 -%% -Type: language -Subtag: ych -Description: Chesu -Added: 2009-07-29 -%% -Type: language -Subtag: ycl -Description: Lolopo -Added: 2009-07-29 -%% -Type: language -Subtag: ycn -Description: Yucuna -Added: 2009-07-29 -%% -Type: language -Subtag: ycp -Description: Chepya -Added: 2009-07-29 -%% -Type: language -Subtag: ycr -Description: Yilan Creole -Added: 2023-03-17 -%% -Type: language -Subtag: yda -Description: Yanda -Added: 2013-09-10 -%% -Type: language -Subtag: ydd -Description: Eastern Yiddish -Added: 2009-07-29 -Macrolanguage: yi -%% -Type: language -Subtag: yde -Description: Yangum Dey -Added: 2009-07-29 -%% -Type: language -Subtag: ydg -Description: Yidgha -Added: 2009-07-29 -%% -Type: language -Subtag: ydk -Description: Yoidik -Added: 2009-07-29 -%% -Type: language -Subtag: yds -Description: Yiddish Sign Language -Added: 2009-07-29 -Deprecated: 2015-02-12 -%% -Type: language -Subtag: yea -Description: Ravula -Added: 2009-07-29 -%% -Type: language -Subtag: yec -Description: Yeniche -Added: 2009-07-29 -%% -Type: language -Subtag: yee -Description: Yimas -Added: 2009-07-29 -%% -Type: language -Subtag: yei -Description: Yeni -Added: 2009-07-29 -%% -Type: language -Subtag: yej -Description: Yevanic -Added: 2009-07-29 -%% -Type: language -Subtag: yel -Description: Yela -Added: 2009-07-29 -%% -Type: language -Subtag: yen -Description: Yendang -Added: 2009-07-29 -Deprecated: 2012-08-12 -Comments: see ynq, yot -%% -Type: language -Subtag: yer -Description: Tarok -Added: 2009-07-29 -%% -Type: language -Subtag: yes -Description: Nyankpa -Added: 2009-07-29 -%% -Type: language -Subtag: yet -Description: Yetfa -Added: 2009-07-29 -%% -Type: language -Subtag: yeu -Description: Yerukula -Added: 2009-07-29 -%% -Type: language -Subtag: yev -Description: Yapunda -Added: 2009-07-29 -%% -Type: language -Subtag: yey -Description: Yeyi -Added: 2009-07-29 -%% -Type: language -Subtag: yga -Description: Malyangapa -Added: 2012-08-12 -%% -Type: language -Subtag: ygi -Description: Yiningayi -Added: 2013-09-10 -%% -Type: language -Subtag: ygl -Description: Yangum Gel -Added: 2009-07-29 -%% -Type: language -Subtag: ygm -Description: Yagomi -Added: 2009-07-29 -%% -Type: language -Subtag: ygp -Description: Gepo -Added: 2009-07-29 -%% -Type: language -Subtag: ygr -Description: Yagaria -Added: 2009-07-29 -%% -Type: language -Subtag: ygs -Description: Yolŋu Sign Language -Added: 2014-02-28 -%% -Type: language -Subtag: ygu -Description: Yugul -Added: 2013-09-10 -%% -Type: language -Subtag: ygw -Description: Yagwoia -Added: 2009-07-29 -%% -Type: language -Subtag: yha -Description: Baha Buyang -Added: 2009-07-29 -%% -Type: language -Subtag: yhd -Description: Judeo-Iraqi Arabic -Added: 2009-07-29 -Macrolanguage: jrb -%% -Type: language -Subtag: yhl -Description: Hlepho Phowa -Added: 2009-07-29 -%% -Type: language -Subtag: yhs -Description: Yan-nhaŋu Sign Language -Added: 2015-04-17 -%% -Type: language -Subtag: yia -Description: Yinggarda -Added: 2009-07-29 -%% -Type: language -Subtag: yif -Description: Ache -Added: 2009-07-29 -%% -Type: language -Subtag: yig -Description: Wusa Nasu -Added: 2009-07-29 -%% -Type: language -Subtag: yih -Description: Western Yiddish -Added: 2009-07-29 -Macrolanguage: yi -%% -Type: language -Subtag: yii -Description: Yidiny -Added: 2009-07-29 -%% -Type: language -Subtag: yij -Description: Yindjibarndi -Added: 2009-07-29 -%% -Type: language -Subtag: yik -Description: Dongshanba Lalo -Added: 2009-07-29 -%% -Type: language -Subtag: yil -Description: Yindjilandji -Added: 2009-07-29 -%% -Type: language -Subtag: yim -Description: Yimchungru Naga -Added: 2009-07-29 -%% -Type: language -Subtag: yin -Description: Riang Lai -Description: Yinchia -Added: 2009-07-29 -%% -Type: language -Subtag: yip -Description: Pholo -Added: 2009-07-29 -%% -Type: language -Subtag: yiq -Description: Miqie -Added: 2009-07-29 -%% -Type: language -Subtag: yir -Description: North Awyu -Added: 2009-07-29 -%% -Type: language -Subtag: yis -Description: Yis -Added: 2009-07-29 -%% -Type: language -Subtag: yit -Description: Eastern Lalu -Added: 2009-07-29 -%% -Type: language -Subtag: yiu -Description: Awu -Added: 2009-07-29 -%% -Type: language -Subtag: yiv -Description: Northern Nisu -Added: 2009-07-29 -%% -Type: language -Subtag: yix -Description: Axi Yi -Added: 2009-07-29 -%% -Type: language -Subtag: yiy -Description: Yir Yoront -Added: 2009-07-29 -Deprecated: 2013-09-10 -Comments: see yrm, yyr -%% -Type: language -Subtag: yiz -Description: Azhe -Added: 2009-07-29 -%% -Type: language -Subtag: yka -Description: Yakan -Added: 2009-07-29 -%% -Type: language -Subtag: ykg -Description: Northern Yukaghir -Added: 2009-07-29 -%% -Type: language -Subtag: ykh -Description: Khamnigan Mongol -Added: 2023-03-17 -%% -Type: language -Subtag: yki -Description: Yoke -Added: 2009-07-29 -%% -Type: language -Subtag: ykk -Description: Yakaikeke -Added: 2009-07-29 -%% -Type: language -Subtag: ykl -Description: Khlula -Added: 2009-07-29 -%% -Type: language -Subtag: ykm -Description: Kap -Added: 2009-07-29 -%% -Type: language -Subtag: ykn -Description: Kua-nsi -Added: 2012-08-12 -%% -Type: language -Subtag: yko -Description: Iyasa -Description: Yasa -Added: 2009-07-29 -%% -Type: language -Subtag: ykr -Description: Yekora -Added: 2009-07-29 -%% -Type: language -Subtag: ykt -Description: Kathu -Added: 2009-07-29 -%% -Type: language -Subtag: yku -Description: Kuamasi -Added: 2012-08-12 -%% -Type: language -Subtag: yky -Description: Yakoma -Added: 2009-07-29 -%% -Type: language -Subtag: yla -Description: Yaul -Added: 2009-07-29 -%% -Type: language -Subtag: ylb -Description: Yaleba -Added: 2010-03-11 -%% -Type: language -Subtag: yle -Description: Yele -Added: 2009-07-29 -%% -Type: language -Subtag: ylg -Description: Yelogu -Added: 2009-07-29 -%% -Type: language -Subtag: yli -Description: Angguruk Yali -Added: 2009-07-29 -%% -Type: language -Subtag: yll -Description: Yil -Added: 2009-07-29 -%% -Type: language -Subtag: ylm -Description: Limi -Added: 2009-07-29 -%% -Type: language -Subtag: yln -Description: Langnian Buyang -Added: 2009-07-29 -%% -Type: language -Subtag: ylo -Description: Naluo Yi -Added: 2009-07-29 -%% -Type: language -Subtag: ylr -Description: Yalarnnga -Added: 2009-07-29 -%% -Type: language -Subtag: ylu -Description: Aribwaung -Added: 2009-07-29 -%% -Type: language -Subtag: yly -Description: Nyâlayu -Description: Nyelâyu -Added: 2009-07-29 -%% -Type: language -Subtag: yma -Description: Yamphe -Added: 2009-07-29 -Deprecated: 2012-08-12 -Preferred-Value: lrr -%% -Type: language -Subtag: ymb -Description: Yambes -Added: 2009-07-29 -%% -Type: language -Subtag: ymc -Description: Southern Muji -Added: 2009-07-29 -%% -Type: language -Subtag: ymd -Description: Muda -Added: 2009-07-29 -%% -Type: language -Subtag: yme -Description: Yameo -Added: 2009-07-29 -%% -Type: language -Subtag: ymg -Description: Yamongeri -Added: 2009-07-29 -%% -Type: language -Subtag: ymh -Description: Mili -Added: 2009-07-29 -%% -Type: language -Subtag: ymi -Description: Moji -Added: 2009-07-29 -%% -Type: language -Subtag: ymk -Description: Makwe -Added: 2009-07-29 -%% -Type: language -Subtag: yml -Description: Iamalele -Added: 2009-07-29 -%% -Type: language -Subtag: ymm -Description: Maay -Added: 2009-07-29 -%% -Type: language -Subtag: ymn -Description: Yamna -Description: Sunum -Added: 2009-07-29 -%% -Type: language -Subtag: ymo -Description: Yangum Mon -Added: 2009-07-29 -%% -Type: language -Subtag: ymp -Description: Yamap -Added: 2009-07-29 -%% -Type: language -Subtag: ymq -Description: Qila Muji -Added: 2009-07-29 -%% -Type: language -Subtag: ymr -Description: Malasar -Added: 2009-07-29 -%% -Type: language -Subtag: yms -Description: Mysian -Added: 2009-07-29 -%% -Type: language -Subtag: ymt -Description: Mator-Taygi-Karagas -Added: 2009-07-29 -Deprecated: 2015-02-12 -Preferred-Value: mtm -%% -Type: language -Subtag: ymx -Description: Northern Muji -Added: 2009-07-29 -%% -Type: language -Subtag: ymz -Description: Muzi -Added: 2009-07-29 -%% -Type: language -Subtag: yna -Description: Aluo -Added: 2009-07-29 -%% -Type: language -Subtag: ynb -Description: Yamben -Added: 2025-02-06 -%% -Type: language -Subtag: ynd -Description: Yandruwandha -Added: 2009-07-29 -%% -Type: language -Subtag: yne -Description: Lang'e -Added: 2009-07-29 -%% -Type: language -Subtag: yng -Description: Yango -Added: 2009-07-29 -%% -Type: language -Subtag: ynh -Description: Yangho -Added: 2009-07-29 -Deprecated: 2015-02-12 -%% -Type: language -Subtag: ynk -Description: Naukan Yupik -Added: 2009-07-29 -%% -Type: language -Subtag: ynl -Description: Yangulam -Added: 2009-07-29 -%% -Type: language -Subtag: ynn -Description: Yana -Added: 2009-07-29 -%% -Type: language -Subtag: yno -Description: Yong -Added: 2009-07-29 -%% -Type: language -Subtag: ynq -Description: Yendang -Added: 2012-08-12 -%% -Type: language -Subtag: yns -Description: Yansi -Added: 2009-07-29 -%% -Type: language -Subtag: ynu -Description: Yahuna -Added: 2009-07-29 -%% -Type: language -Subtag: yob -Description: Yoba -Added: 2009-07-29 -%% -Type: language -Subtag: yog -Description: Yogad -Added: 2009-07-29 -%% -Type: language -Subtag: yoi -Description: Yonaguni -Added: 2009-07-29 -%% -Type: language -Subtag: yok -Description: Yokuts -Added: 2009-07-29 -%% -Type: language -Subtag: yol -Description: Yola -Added: 2009-07-29 -Deprecated: 2026-04-09 -Preferred-Value: enm -%% -Type: language -Subtag: yom -Description: Yombe -Added: 2009-07-29 -%% -Type: language -Subtag: yon -Description: Yongkom -Added: 2009-07-29 -%% -Type: language -Subtag: yos -Description: Yos -Added: 2009-07-29 -Deprecated: 2013-09-10 -Preferred-Value: zom -%% -Type: language -Subtag: yot -Description: Yotti -Added: 2012-08-12 -%% -Type: language -Subtag: yox -Description: Yoron -Added: 2009-07-29 -%% -Type: language -Subtag: yoy -Description: Yoy -Added: 2009-07-29 -%% -Type: language -Subtag: ypa -Description: Phala -Added: 2009-07-29 -%% -Type: language -Subtag: ypb -Description: Labo Phowa -Added: 2009-07-29 -%% -Type: language -Subtag: ypg -Description: Phola -Added: 2009-07-29 -%% -Type: language -Subtag: yph -Description: Phupha -Added: 2009-07-29 -%% -Type: language -Subtag: ypk -Description: Yupik languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: ypm -Description: Phuma -Added: 2009-07-29 -%% -Type: language -Subtag: ypn -Description: Ani Phowa -Added: 2009-07-29 -%% -Type: language -Subtag: ypo -Description: Alo Phola -Added: 2009-07-29 -%% -Type: language -Subtag: ypp -Description: Phupa -Added: 2009-07-29 -%% -Type: language -Subtag: ypz -Description: Phuza -Added: 2009-07-29 -%% -Type: language -Subtag: yra -Description: Yerakai -Added: 2009-07-29 -%% -Type: language -Subtag: yrb -Description: Yareba -Added: 2009-07-29 -%% -Type: language -Subtag: yre -Description: Yaouré -Added: 2009-07-29 -%% -Type: language -Subtag: yri -Description: Yarí -Added: 2009-07-29 -Deprecated: 2016-05-30 -%% -Type: language -Subtag: yrk -Description: Nenets -Added: 2009-07-29 -%% -Type: language -Subtag: yrl -Description: Nhengatu -Added: 2009-07-29 -%% -Type: language -Subtag: yrm -Description: Yirrk-Mel -Added: 2013-09-10 -%% -Type: language -Subtag: yrn -Description: Yerong -Added: 2009-07-29 -%% -Type: language -Subtag: yro -Description: Yaroamë -Added: 2016-05-30 -%% -Type: language -Subtag: yrs -Description: Yarsun -Added: 2009-07-29 -%% -Type: language -Subtag: yrw -Description: Yarawata -Added: 2009-07-29 -%% -Type: language -Subtag: yry -Description: Yarluyandi -Added: 2013-09-10 -%% -Type: language -Subtag: ysc -Description: Yassic -Added: 2009-07-29 -%% -Type: language -Subtag: ysd -Description: Samatao -Added: 2009-07-29 -%% -Type: language -Subtag: ysg -Description: Sonaga -Added: 2012-08-12 -%% -Type: language -Subtag: ysl -Description: Yugoslavian Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: ysm -Description: Myanmar Sign Language -Added: 2021-02-20 -%% -Type: language -Subtag: ysn -Description: Sani -Added: 2009-07-29 -%% -Type: language -Subtag: yso -Description: Nisi (China) -Added: 2009-07-29 -%% -Type: language -Subtag: ysp -Description: Southern Lolopo -Added: 2009-07-29 -%% -Type: language -Subtag: ysr -Description: Sirenik Yupik -Added: 2009-07-29 -%% -Type: language -Subtag: yss -Description: Yessan-Mayo -Added: 2009-07-29 -%% -Type: language -Subtag: ysy -Description: Sanie -Added: 2009-07-29 -%% -Type: language -Subtag: yta -Description: Talu -Added: 2009-07-29 -%% -Type: language -Subtag: ytl -Description: Tanglang -Added: 2009-07-29 -%% -Type: language -Subtag: ytp -Description: Thopho -Added: 2009-07-29 -%% -Type: language -Subtag: ytw -Description: Yout Wam -Added: 2010-03-11 -%% -Type: language -Subtag: yty -Description: Yatay -Added: 2013-09-10 -%% -Type: language -Subtag: yua -Description: Yucateco -Description: Yucatec Maya -Added: 2009-07-29 -%% -Type: language -Subtag: yub -Description: Yugambal -Added: 2009-07-29 -%% -Type: language -Subtag: yuc -Description: Yuchi -Added: 2009-07-29 -%% -Type: language -Subtag: yud -Description: Judeo-Tripolitanian Arabic -Added: 2009-07-29 -Macrolanguage: jrb -%% -Type: language -Subtag: yue -Description: Yue Chinese -Description: Cantonese -Added: 2009-07-29 -Macrolanguage: zh -%% -Type: language -Subtag: yuf -Description: Havasupai-Walapai-Yavapai -Added: 2009-07-29 -%% -Type: language -Subtag: yug -Description: Yug -Added: 2009-07-29 -%% -Type: language -Subtag: yui -Description: Yurutí -Added: 2009-07-29 -%% -Type: language -Subtag: yuj -Description: Karkar-Yuri -Added: 2009-07-29 -%% -Type: language -Subtag: yuk -Description: Yuki -Added: 2009-07-29 -%% -Type: language -Subtag: yul -Description: Yulu -Added: 2009-07-29 -%% -Type: language -Subtag: yum -Description: Quechan -Added: 2009-07-29 -%% -Type: language -Subtag: yun -Description: Bena (Nigeria) -Added: 2009-07-29 -%% -Type: language -Subtag: yup -Description: Yukpa -Added: 2009-07-29 -%% -Type: language -Subtag: yuq -Description: Yuqui -Added: 2009-07-29 -%% -Type: language -Subtag: yur -Description: Yurok -Added: 2009-07-29 -%% -Type: language -Subtag: yut -Description: Yopno -Added: 2009-07-29 -%% -Type: language -Subtag: yuu -Description: Yugh -Added: 2009-07-29 -Deprecated: 2014-02-28 -Preferred-Value: yug -%% -Type: language -Subtag: yuw -Description: Yau (Morobe Province) -Added: 2009-07-29 -%% -Type: language -Subtag: yux -Description: Southern Yukaghir -Added: 2009-07-29 -%% -Type: language -Subtag: yuy -Description: East Yugur -Added: 2009-07-29 -%% -Type: language -Subtag: yuz -Description: Yuracare -Added: 2009-07-29 -%% -Type: language -Subtag: yva -Description: Yawa -Added: 2009-07-29 -%% -Type: language -Subtag: yvt -Description: Yavitero -Added: 2009-07-29 -%% -Type: language -Subtag: ywa -Description: Kalou -Added: 2009-07-29 -%% -Type: language -Subtag: ywg -Description: Yinhawangka -Added: 2013-09-10 -%% -Type: language -Subtag: ywl -Description: Western Lalu -Added: 2009-07-29 -%% -Type: language -Subtag: ywn -Description: Yawanawa -Added: 2009-07-29 -%% -Type: language -Subtag: ywq -Description: Wuding-Luquan Yi -Added: 2009-07-29 -%% -Type: language -Subtag: ywr -Description: Yawuru -Added: 2009-07-29 -%% -Type: language -Subtag: ywt -Description: Xishanba Lalo -Description: Central Lalo -Added: 2009-07-29 -%% -Type: language -Subtag: ywu -Description: Wumeng Nasu -Added: 2009-07-29 -%% -Type: language -Subtag: yww -Description: Yawarawarga -Added: 2009-07-29 -%% -Type: language -Subtag: yxa -Description: Mayawali -Added: 2013-09-10 -%% -Type: language -Subtag: yxg -Description: Yagara -Added: 2012-08-12 -%% -Type: language -Subtag: yxl -Description: Yardliyawarra -Added: 2013-09-10 -%% -Type: language -Subtag: yxm -Description: Yinwum -Added: 2013-09-10 -%% -Type: language -Subtag: yxu -Description: Yuyu -Added: 2013-09-10 -%% -Type: language -Subtag: yxy -Description: Yabula Yabula -Added: 2012-08-12 -%% -Type: language -Subtag: yyr -Description: Yir Yoront -Added: 2013-09-03 -%% -Type: language -Subtag: yyu -Description: Yau (Sandaun Province) -Added: 2009-07-29 -%% -Type: language -Subtag: yyz -Description: Ayizi -Added: 2009-07-29 -%% -Type: language -Subtag: yzg -Description: E'ma Buyang -Added: 2009-07-29 -%% -Type: language -Subtag: yzk -Description: Zokhuo -Added: 2009-07-29 -%% -Type: language -Subtag: zaa -Description: Sierra de Juárez Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zab -Description: Western Tlacolula Valley Zapotec -Description: San Juan Guelavía Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zac -Description: Ocotlán Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zad -Description: Cajonos Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zae -Description: Yareni Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zaf -Description: Ayoquesco Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zag -Description: Zaghawa -Added: 2009-07-29 -%% -Type: language -Subtag: zah -Description: Zangwal -Added: 2009-07-29 -%% -Type: language -Subtag: zai -Description: Isthmus Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zaj -Description: Zaramo -Added: 2009-07-29 -%% -Type: language -Subtag: zak -Description: Zanaki -Added: 2009-07-29 -%% -Type: language -Subtag: zal -Description: Zauzou -Added: 2009-07-29 -%% -Type: language -Subtag: zam -Description: Miahuatlán Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zao -Description: Ozolotepec Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zap -Description: Zapotec -Added: 2005-10-16 -Scope: macrolanguage -%% -Type: language -Subtag: zaq -Description: Aloápam Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zar -Description: Rincón Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zas -Description: Santo Domingo Albarradas Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zat -Description: Tabaa Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zau -Description: Zangskari -Added: 2009-07-29 -%% -Type: language -Subtag: zav -Description: Yatzachi Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zaw -Description: Mitla Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zax -Description: Xadani Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zay -Description: Zayse-Zergulla -Description: Zaysete -Added: 2009-07-29 -%% -Type: language -Subtag: zaz -Description: Zari -Added: 2009-07-29 -%% -Type: language -Subtag: zba -Description: Balaibalan -Added: 2020-03-28 -%% -Type: language -Subtag: zbc -Description: Central Berawan -Added: 2009-07-29 -%% -Type: language -Subtag: zbe -Description: East Berawan -Added: 2009-07-29 -%% -Type: language -Subtag: zbl -Description: Blissymbols -Description: Bliss -Description: Blissymbolics -Added: 2007-08-21 -Suppress-Script: Blis -%% -Type: language -Subtag: zbt -Description: Batui -Added: 2009-07-29 -%% -Type: language -Subtag: zbu -Description: Bu (Bauchi State) -Added: 2021-02-20 -%% -Type: language -Subtag: zbw -Description: West Berawan -Added: 2009-07-29 -%% -Type: language -Subtag: zca -Description: Coatecas Altas Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zcd -Description: Las Delicias Zapotec -Added: 2022-02-25 -Macrolanguage: zap -%% -Type: language -Subtag: zch -Description: Central Hongshuihe Zhuang -Added: 2009-07-29 -Macrolanguage: za -%% -Type: language -Subtag: zdj -Description: Ngazidja Comorian -Added: 2009-07-29 -%% -Type: language -Subtag: zea -Description: Zeeuws -Added: 2009-07-29 -%% -Type: language -Subtag: zeg -Description: Zenag -Added: 2009-07-29 -%% -Type: language -Subtag: zeh -Description: Eastern Hongshuihe Zhuang -Added: 2009-07-29 -Macrolanguage: za -%% -Type: language -Subtag: zem -Description: Zeem -Added: 2023-03-17 -%% -Type: language -Subtag: zen -Description: Zenaga -Added: 2005-10-16 -%% -Type: language -Subtag: zga -Description: Kinga -Added: 2009-07-29 -%% -Type: language -Subtag: zgb -Description: Guibei Zhuang -Added: 2009-07-29 -Macrolanguage: za -%% -Type: language -Subtag: zgh -Description: Standard Moroccan Tamazight -Added: 2013-01-25 -%% -Type: language -Subtag: zgm -Description: Minz Zhuang -Added: 2009-07-29 -Macrolanguage: za -%% -Type: language -Subtag: zgn -Description: Guibian Zhuang -Added: 2009-07-29 -Macrolanguage: za -%% -Type: language -Subtag: zgr -Description: Magori -Added: 2009-07-29 -%% -Type: language -Subtag: zhb -Description: Zhaba -Added: 2009-07-29 -%% -Type: language -Subtag: zhd -Description: Dai Zhuang -Added: 2009-07-29 -Macrolanguage: za -%% -Type: language -Subtag: zhi -Description: Zhire -Added: 2009-07-29 -%% -Type: language -Subtag: zhk -Description: Kurdish Sign Language -Added: 2026-05-05 -%% -Type: language -Subtag: zhn -Description: Nong Zhuang -Added: 2009-07-29 -Macrolanguage: za -%% -Type: language -Subtag: zhw -Description: Zhoa -Added: 2009-07-29 -%% -Type: language -Subtag: zhx -Description: Chinese (family) -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: zia -Description: Zia -Added: 2009-07-29 -%% -Type: language -Subtag: zib -Description: Zimbabwe Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: zik -Description: Zimakani -Added: 2009-07-29 -%% -Type: language -Subtag: zil -Description: Zialo -Added: 2011-08-16 -%% -Type: language -Subtag: zim -Description: Mesme -Added: 2009-07-29 -%% -Type: language -Subtag: zin -Description: Zinza -Added: 2009-07-29 -%% -Type: language -Subtag: zir -Description: Ziriya -Added: 2009-07-29 -Deprecated: 2020-03-28 -Preferred-Value: scv -%% -Type: language -Subtag: ziw -Description: Zigula -Added: 2009-07-29 -%% -Type: language -Subtag: ziz -Description: Zizilivakan -Added: 2009-07-29 -%% -Type: language -Subtag: zka -Description: Kaimbulawa -Added: 2009-07-29 -%% -Type: language -Subtag: zkb -Description: Koibal -Added: 2009-07-29 -Deprecated: 2023-03-17 -Preferred-Value: kjh -%% -Type: language -Subtag: zkd -Description: Kadu -Added: 2012-08-12 -%% -Type: language -Subtag: zkg -Description: Koguryo -Added: 2009-07-29 -%% -Type: language -Subtag: zkh -Description: Khorezmian -Added: 2009-07-29 -%% -Type: language -Subtag: zkk -Description: Karankawa -Added: 2009-07-29 -%% -Type: language -Subtag: zkn -Description: Kanan -Added: 2012-08-12 -%% -Type: language -Subtag: zko -Description: Kott -Added: 2009-07-29 -%% -Type: language -Subtag: zkp -Description: São Paulo Kaingáng -Added: 2009-07-29 -%% -Type: language -Subtag: zkr -Description: Zakhring -Added: 2009-07-29 -%% -Type: language -Subtag: zkt -Description: Kitan -Added: 2009-07-29 -%% -Type: language -Subtag: zku -Description: Kaurna -Added: 2009-07-29 -%% -Type: language -Subtag: zkv -Description: Krevinian -Added: 2009-07-29 -%% -Type: language -Subtag: zkz -Description: Khazar -Added: 2009-07-29 -%% -Type: language -Subtag: zla -Description: Zula -Added: 2021-02-20 -%% -Type: language -Subtag: zle -Description: East Slavic languages -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: zlj -Description: Liujiang Zhuang -Added: 2009-07-29 -Macrolanguage: za -%% -Type: language -Subtag: zlm -Description: Malay (individual language) -Added: 2009-07-29 -Macrolanguage: ms -%% -Type: language -Subtag: zln -Description: Lianshan Zhuang -Added: 2009-07-29 -Macrolanguage: za -%% -Type: language -Subtag: zlq -Description: Liuqian Zhuang -Added: 2009-07-29 -Macrolanguage: za -%% -Type: language -Subtag: zls -Description: South Slavic languages -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: zlu -Description: Zul -Added: 2023-03-17 -%% -Type: language -Subtag: zlw -Description: West Slavic languages -Added: 2009-07-29 -Scope: collection -%% -Type: language -Subtag: zma -Description: Manda (Australia) -Added: 2009-07-29 -%% -Type: language -Subtag: zmb -Description: Zimba -Added: 2009-07-29 -%% -Type: language -Subtag: zmc -Description: Margany -Added: 2009-07-29 -%% -Type: language -Subtag: zmd -Description: Maridan -Added: 2009-07-29 -%% -Type: language -Subtag: zme -Description: Mangerr -Added: 2009-07-29 -%% -Type: language -Subtag: zmf -Description: Mfinu -Added: 2009-07-29 -%% -Type: language -Subtag: zmg -Description: Marti Ke -Added: 2009-07-29 -%% -Type: language -Subtag: zmh -Description: Makolkol -Added: 2009-07-29 -%% -Type: language -Subtag: zmi -Description: Negeri Sembilan Malay -Added: 2009-07-29 -Macrolanguage: ms -%% -Type: language -Subtag: zmj -Description: Maridjabin -Added: 2009-07-29 -%% -Type: language -Subtag: zmk -Description: Mandandanyi -Added: 2009-07-29 -%% -Type: language -Subtag: zml -Description: Matngala -Added: 2009-07-29 -%% -Type: language -Subtag: zmm -Description: Marimanindji -Description: Marramaninyshi -Added: 2009-07-29 -%% -Type: language -Subtag: zmn -Description: Mbangwe -Added: 2009-07-29 -%% -Type: language -Subtag: zmo -Description: Molo -Added: 2009-07-29 -%% -Type: language -Subtag: zmp -Description: Mbuun -Added: 2009-07-29 -%% -Type: language -Subtag: zmq -Description: Mituku -Added: 2009-07-29 -%% -Type: language -Subtag: zmr -Description: Maranunggu -Added: 2009-07-29 -%% -Type: language -Subtag: zms -Description: Mbesa -Added: 2009-07-29 -%% -Type: language -Subtag: zmt -Description: Maringarr -Added: 2009-07-29 -%% -Type: language -Subtag: zmu -Description: Muruwari -Added: 2009-07-29 -%% -Type: language -Subtag: zmv -Description: Mbariman-Gudhinma -Added: 2009-07-29 -%% -Type: language -Subtag: zmw -Description: Mbo (Democratic Republic of Congo) -Added: 2009-07-29 -%% -Type: language -Subtag: zmx -Description: Bomitaba -Added: 2009-07-29 -%% -Type: language -Subtag: zmy -Description: Mariyedi -Added: 2009-07-29 -%% -Type: language -Subtag: zmz -Description: Mbandja -Added: 2009-07-29 -%% -Type: language -Subtag: zna -Description: Zan Gula -Added: 2009-07-29 -%% -Type: language -Subtag: znd -Description: Zande languages -Added: 2005-10-16 -Scope: collection -%% -Type: language -Subtag: zne -Description: Zande (individual language) -Added: 2009-07-29 -%% -Type: language -Subtag: zng -Description: Mang -Added: 2009-07-29 -%% -Type: language -Subtag: znk -Description: Manangkari -Added: 2009-07-29 -%% -Type: language -Subtag: zns -Description: Mangas -Added: 2009-07-29 -%% -Type: language -Subtag: zoc -Description: Copainalá Zoque -Added: 2009-07-29 -%% -Type: language -Subtag: zoh -Description: Chimalapa Zoque -Added: 2009-07-29 -%% -Type: language -Subtag: zom -Description: Zou -Added: 2009-07-29 -%% -Type: language -Subtag: zoo -Description: Asunción Mixtepec Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zoq -Description: Tabasco Zoque -Added: 2009-07-29 -%% -Type: language -Subtag: zor -Description: Rayón Zoque -Added: 2009-07-29 -%% -Type: language -Subtag: zos -Description: Francisco León Zoque -Added: 2009-07-29 -%% -Type: language -Subtag: zpa -Description: Lachiguiri Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zpb -Description: Yautepec Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zpc -Description: Choapan Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zpd -Description: Southeastern Ixtlán Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zpe -Description: Petapa Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zpf -Description: San Pedro Quiatoni Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zpg -Description: Guevea De Humboldt Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zph -Description: Totomachapan Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zpi -Description: Santa María Quiegolani Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zpj -Description: Quiavicuzas Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zpk -Description: Tlacolulita Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zpl -Description: Lachixío Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zpm -Description: Mixtepec Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zpn -Description: Santa Inés Yatzechi Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zpo -Description: Amatlán Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zpp -Description: El Alto Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zpq -Description: Zoogocho Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zpr -Description: Santiago Xanica Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zps -Description: Coatlán Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zpt -Description: San Vicente Coatlán Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zpu -Description: Yalálag Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zpv -Description: Chichicapan Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zpw -Description: Zaniza Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zpx -Description: San Baltazar Loxicha Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zpy -Description: Mazaltepec Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zpz -Description: Texmelucan Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zqe -Description: Qiubei Zhuang -Added: 2009-07-29 -Macrolanguage: za -%% -Type: language -Subtag: zra -Description: Kara (Korea) -Added: 2009-07-29 -%% -Type: language -Subtag: zrg -Description: Mirgan -Added: 2009-07-29 -%% -Type: language -Subtag: zrn -Description: Zerenkel -Added: 2009-07-29 -%% -Type: language -Subtag: zro -Description: Záparo -Added: 2009-07-29 -%% -Type: language -Subtag: zrp -Description: Zarphatic -Added: 2009-07-29 -%% -Type: language -Subtag: zrs -Description: Mairasi -Added: 2009-07-29 -%% -Type: language -Subtag: zsa -Description: Sarasira -Added: 2009-07-29 -%% -Type: language -Subtag: zsk -Description: Kaskean -Added: 2009-07-29 -%% -Type: language -Subtag: zsl -Description: Zambian Sign Language -Added: 2009-07-29 -%% -Type: language -Subtag: zsm -Description: Standard Malay -Added: 2009-07-29 -Macrolanguage: ms -%% -Type: language -Subtag: zsr -Description: Southern Rincon Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zsu -Description: Sukurum -Added: 2009-07-29 -%% -Type: language -Subtag: zte -Description: Elotepec Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: ztg -Description: Xanaguía Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: ztl -Description: Lapaguía-Guivini Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: ztm -Description: San Agustín Mixtepec Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: ztn -Description: Santa Catarina Albarradas Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: ztp -Description: Loxicha Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: ztq -Description: Quioquitani-Quierí Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zts -Description: Tilquiapan Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: ztt -Description: Tejalapan Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: ztu -Description: Güilá Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: ztx -Description: Zaachila Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zty -Description: Yatee Zapotec -Added: 2009-07-29 -Macrolanguage: zap -%% -Type: language -Subtag: zua -Description: Zeem -Added: 2009-07-29 -Deprecated: 2023-03-17 -Comments: see cxh, dsk, dyr, tvi, zem -%% -Type: language -Subtag: zuh -Description: Tokano -Added: 2009-07-29 -%% -Type: language -Subtag: zum -Description: Kumzari -Added: 2009-07-29 -%% -Type: language -Subtag: zun -Description: Zuni -Added: 2005-10-16 -%% -Type: language -Subtag: zuy -Description: Zumaya -Added: 2009-07-29 -%% -Type: language -Subtag: zwa -Description: Zay -Added: 2009-07-29 -%% -Type: language -Subtag: zxx -Description: No linguistic content -Description: Not applicable -Added: 2006-03-08 -Scope: special -%% -Type: language -Subtag: zyb -Description: Yongbei Zhuang -Added: 2009-07-29 -Macrolanguage: za -%% -Type: language -Subtag: zyg -Description: Yang Zhuang -Added: 2009-07-29 -Macrolanguage: za -%% -Type: language -Subtag: zyj -Description: Youjiang Zhuang -Added: 2009-07-29 -Macrolanguage: za -%% -Type: language -Subtag: zyn -Description: Yongnan Zhuang -Added: 2009-07-29 -Macrolanguage: za -%% -Type: language -Subtag: zyp -Description: Zyphe Chin -Added: 2009-07-29 -%% -Type: language -Subtag: zza -Description: Zaza -Description: Dimili -Description: Dimli (macrolanguage) -Description: Kirdki -Description: Kirmanjki (macrolanguage) -Description: Zazaki -Added: 2006-08-24 -Scope: macrolanguage -%% -Type: language -Subtag: zzj -Description: Zuojiang Zhuang -Added: 2009-07-29 -Macrolanguage: za -%% -Type: extlang -Subtag: aao -Description: Algerian Saharan Arabic -Added: 2009-07-29 -Preferred-Value: aao -Prefix: ar -Macrolanguage: ar -%% -Type: extlang -Subtag: abh -Description: Tajiki Arabic -Added: 2009-07-29 -Preferred-Value: abh -Prefix: ar -Macrolanguage: ar -%% -Type: extlang -Subtag: abv -Description: Baharna Arabic -Added: 2009-07-29 -Preferred-Value: abv -Prefix: ar -Macrolanguage: ar -%% -Type: extlang -Subtag: acm -Description: Mesopotamian Arabic -Added: 2009-07-29 -Preferred-Value: acm -Prefix: ar -Macrolanguage: ar -%% -Type: extlang -Subtag: acq -Description: Ta'izzi-Adeni Arabic -Added: 2009-07-29 -Preferred-Value: acq -Prefix: ar -Macrolanguage: ar -%% -Type: extlang -Subtag: acw -Description: Hijazi Arabic -Added: 2009-07-29 -Preferred-Value: acw -Prefix: ar -Macrolanguage: ar -%% -Type: extlang -Subtag: acx -Description: Omani Arabic -Added: 2009-07-29 -Preferred-Value: acx -Prefix: ar -Macrolanguage: ar -%% -Type: extlang -Subtag: acy -Description: Cypriot Arabic -Added: 2009-07-29 -Preferred-Value: acy -Prefix: ar -Macrolanguage: ar -%% -Type: extlang -Subtag: adf -Description: Dhofari Arabic -Added: 2009-07-29 -Preferred-Value: adf -Prefix: ar -Macrolanguage: ar -%% -Type: extlang -Subtag: ads -Description: Adamorobe Sign Language -Added: 2009-07-29 -Preferred-Value: ads -Prefix: sgn -%% -Type: extlang -Subtag: aeb -Description: Tunisian Arabic -Added: 2009-07-29 -Preferred-Value: aeb -Prefix: ar -Macrolanguage: ar -%% -Type: extlang -Subtag: aec -Description: Saidi Arabic -Added: 2009-07-29 -Preferred-Value: aec -Prefix: ar -Macrolanguage: ar -%% -Type: extlang -Subtag: aed -Description: Argentine Sign Language -Added: 2009-07-29 -Preferred-Value: aed -Prefix: sgn -%% -Type: extlang -Subtag: aen -Description: Armenian Sign Language -Added: 2009-07-29 -Preferred-Value: aen -Prefix: sgn -%% -Type: extlang -Subtag: afb -Description: Gulf Arabic -Added: 2009-07-29 -Preferred-Value: afb -Prefix: ar -Macrolanguage: ar -%% -Type: extlang -Subtag: afg -Description: Afghan Sign Language -Added: 2009-07-29 -Preferred-Value: afg -Prefix: sgn -%% -Type: extlang -Subtag: ajp -Description: South Levantine Arabic -Added: 2009-07-29 -Deprecated: 2023-03-17 -Preferred-Value: ajp -Prefix: ar -Macrolanguage: ar -%% -Type: extlang -Subtag: ajs -Description: Algerian Jewish Sign Language -Added: 2022-02-25 -Preferred-Value: ajs -Prefix: sgn -%% -Type: extlang -Subtag: apc -Description: Levantine Arabic -Added: 2009-07-29 -Preferred-Value: apc -Prefix: ar -Macrolanguage: ar -%% -Type: extlang -Subtag: apd -Description: Sudanese Arabic -Added: 2009-07-29 -Preferred-Value: apd -Prefix: ar -Macrolanguage: ar -%% -Type: extlang -Subtag: arb -Description: Standard Arabic -Added: 2009-07-29 -Preferred-Value: arb -Prefix: ar -Macrolanguage: ar -%% -Type: extlang -Subtag: arq -Description: Algerian Arabic -Added: 2009-07-29 -Preferred-Value: arq -Prefix: ar -Macrolanguage: ar -%% -Type: extlang -Subtag: ars -Description: Najdi Arabic -Added: 2009-07-29 -Preferred-Value: ars -Prefix: ar -Macrolanguage: ar -%% -Type: extlang -Subtag: ary -Description: Moroccan Arabic -Added: 2009-07-29 -Preferred-Value: ary -Prefix: ar -Macrolanguage: ar -%% -Type: extlang -Subtag: arz -Description: Egyptian Arabic -Added: 2009-07-29 -Preferred-Value: arz -Prefix: ar -Macrolanguage: ar -%% -Type: extlang -Subtag: ase -Description: American Sign Language -Added: 2009-07-29 -Preferred-Value: ase -Prefix: sgn -%% -Type: extlang -Subtag: asf -Description: Auslan -Description: Australian Sign Language -Added: 2009-07-29 -Preferred-Value: asf -Prefix: sgn -%% -Type: extlang -Subtag: asp -Description: Algerian Sign Language -Added: 2009-07-29 -Preferred-Value: asp -Prefix: sgn -%% -Type: extlang -Subtag: asq -Description: Austrian Sign Language -Added: 2009-07-29 -Preferred-Value: asq -Prefix: sgn -%% -Type: extlang -Subtag: asw -Description: Australian Aborigines Sign Language -Added: 2009-07-29 -Preferred-Value: asw -Prefix: sgn -%% -Type: extlang -Subtag: auz -Description: Uzbeki Arabic -Added: 2009-07-29 -Preferred-Value: auz -Prefix: ar -Macrolanguage: ar -%% -Type: extlang -Subtag: avl -Description: Eastern Egyptian Bedawi Arabic -Added: 2009-07-29 -Preferred-Value: avl -Prefix: ar -Macrolanguage: ar -%% -Type: extlang -Subtag: ayh -Description: Hadrami Arabic -Added: 2009-07-29 -Preferred-Value: ayh -Prefix: ar -Macrolanguage: ar -%% -Type: extlang -Subtag: ayl -Description: Libyan Arabic -Added: 2009-07-29 -Preferred-Value: ayl -Prefix: ar -Macrolanguage: ar -%% -Type: extlang -Subtag: ayn -Description: Sanaani Arabic -Added: 2009-07-29 -Preferred-Value: ayn -Prefix: ar -Macrolanguage: ar -%% -Type: extlang -Subtag: ayp -Description: North Mesopotamian Arabic -Added: 2009-07-29 -Preferred-Value: ayp -Prefix: ar -Macrolanguage: ar -%% -Type: extlang -Subtag: bbz -Description: Babalia Creole Arabic -Added: 2009-07-29 -Deprecated: 2020-03-28 -Preferred-Value: bbz -Prefix: ar -Macrolanguage: ar -%% -Type: extlang -Subtag: bfi -Description: British Sign Language -Added: 2009-07-29 -Preferred-Value: bfi -Prefix: sgn -%% -Type: extlang -Subtag: bfk -Description: Ban Khor Sign Language -Added: 2009-07-29 -Preferred-Value: bfk -Prefix: sgn -%% -Type: extlang -Subtag: bjn -Description: Banjar -Added: 2009-07-29 -Preferred-Value: bjn -Prefix: ms -Macrolanguage: ms -%% -Type: extlang -Subtag: bog -Description: Bamako Sign Language -Added: 2009-07-29 -Preferred-Value: bog -Prefix: sgn -%% -Type: extlang -Subtag: bqn -Description: Bulgarian Sign Language -Added: 2009-07-29 -Preferred-Value: bqn -Prefix: sgn -%% -Type: extlang -Subtag: bqy -Description: Bengkala Sign Language -Added: 2009-07-29 -Preferred-Value: bqy -Prefix: sgn -%% -Type: extlang -Subtag: btj -Description: Bacanese Malay -Added: 2009-07-29 -Preferred-Value: btj -Prefix: ms -Macrolanguage: ms -%% -Type: extlang -Subtag: bve -Description: Berau Malay -Added: 2009-07-29 -Preferred-Value: bve -Prefix: ms -Macrolanguage: ms -%% -Type: extlang -Subtag: bvl -Description: Bolivian Sign Language -Added: 2009-07-29 -Preferred-Value: bvl -Prefix: sgn -%% -Type: extlang -Subtag: bvu -Description: Bukit Malay -Added: 2009-07-29 -Preferred-Value: bvu -Prefix: ms -Macrolanguage: ms -%% -Type: extlang -Subtag: bzs -Description: Brazilian Sign Language -Added: 2009-07-29 -Preferred-Value: bzs -Prefix: sgn -%% -Type: extlang -Subtag: cdo -Description: Min Dong Chinese -Added: 2009-07-29 -Preferred-Value: cdo -Prefix: zh -Macrolanguage: zh -%% -Type: extlang -Subtag: cds -Description: Chadian Sign Language -Added: 2009-07-29 -Preferred-Value: cds -Prefix: sgn -%% -Type: extlang -Subtag: cjy -Description: Jinyu Chinese -Added: 2009-07-29 -Preferred-Value: cjy -Prefix: zh -Macrolanguage: zh -%% -Type: extlang -Subtag: cmn -Description: Mandarin Chinese -Added: 2009-07-29 -Preferred-Value: cmn -Prefix: zh -Macrolanguage: zh -%% -Type: extlang -Subtag: cnp -Description: Northern Ping Chinese -Description: Northern Pinghua -Added: 2020-03-28 -Preferred-Value: cnp -Prefix: zh -Macrolanguage: zh -%% -Type: extlang -Subtag: coa -Description: Cocos Islands Malay -Added: 2009-07-29 -Preferred-Value: coa -Prefix: ms -Macrolanguage: ms -%% -Type: extlang -Subtag: cpx -Description: Pu-Xian Chinese -Added: 2009-07-29 -Preferred-Value: cpx -Prefix: zh -Macrolanguage: zh -%% -Type: extlang -Subtag: csc -Description: Catalan Sign Language -Description: Lengua de señas catalana -Description: Llengua de Signes Catalana -Added: 2009-07-29 -Preferred-Value: csc -Prefix: sgn -%% -Type: extlang -Subtag: csd -Description: Chiangmai Sign Language -Added: 2009-07-29 -Preferred-Value: csd -Prefix: sgn -%% -Type: extlang -Subtag: cse -Description: Czech Sign Language -Added: 2009-07-29 -Preferred-Value: cse -Prefix: sgn -%% -Type: extlang -Subtag: csf -Description: Cuba Sign Language -Added: 2009-07-29 -Preferred-Value: csf -Prefix: sgn -%% -Type: extlang -Subtag: csg -Description: Chilean Sign Language -Added: 2009-07-29 -Preferred-Value: csg -Prefix: sgn -%% -Type: extlang -Subtag: csl -Description: Chinese Sign Language -Added: 2009-07-29 -Preferred-Value: csl -Prefix: sgn -%% -Type: extlang -Subtag: csn -Description: Colombian Sign Language -Added: 2009-07-29 -Preferred-Value: csn -Prefix: sgn -%% -Type: extlang -Subtag: csp -Description: Southern Ping Chinese -Description: Southern Pinghua -Added: 2020-03-28 -Preferred-Value: csp -Prefix: zh -Macrolanguage: zh -%% -Type: extlang -Subtag: csq -Description: Croatia Sign Language -Added: 2009-07-29 -Preferred-Value: csq -Prefix: sgn -%% -Type: extlang -Subtag: csr -Description: Costa Rican Sign Language -Added: 2009-07-29 -Preferred-Value: csr -Prefix: sgn -%% -Type: extlang -Subtag: csx -Description: Cambodian Sign Language -Added: 2021-02-20 -Preferred-Value: csx -Prefix: sgn -%% -Type: extlang -Subtag: czh -Description: Huizhou Chinese -Added: 2009-07-29 -Preferred-Value: czh -Prefix: zh -Macrolanguage: zh -%% -Type: extlang -Subtag: czo -Description: Min Zhong Chinese -Added: 2009-07-29 -Preferred-Value: czo -Prefix: zh -Macrolanguage: zh -%% -Type: extlang -Subtag: doq -Description: Dominican Sign Language -Added: 2009-07-29 -Preferred-Value: doq -Prefix: sgn -%% -Type: extlang -Subtag: dse -Description: Dutch Sign Language -Added: 2009-07-29 -Preferred-Value: dse -Prefix: sgn -%% -Type: extlang -Subtag: dsl -Description: Danish Sign Language -Added: 2009-07-29 -Preferred-Value: dsl -Prefix: sgn -%% -Type: extlang -Subtag: dsz -Description: Mardin Sign Language -Added: 2022-02-25 -Preferred-Value: dsz -Prefix: sgn -%% -Type: extlang -Subtag: dup -Description: Duano -Added: 2009-07-29 -Preferred-Value: dup -Prefix: ms -Macrolanguage: ms -%% -Type: extlang -Subtag: dyl -Description: Bhutanese Sign Language -Added: 2026-04-09 -Preferred-Value: dyl -Prefix: sgn -%% -Type: extlang -Subtag: ecs -Description: Ecuadorian Sign Language -Added: 2009-07-29 -Preferred-Value: ecs -Prefix: sgn -%% -Type: extlang -Subtag: ehs -Description: Miyakubo Sign Language -Added: 2021-02-20 -Preferred-Value: ehs -Prefix: sgn -%% -Type: extlang -Subtag: esl -Description: Egypt Sign Language -Added: 2009-07-29 -Preferred-Value: esl -Prefix: sgn -%% -Type: extlang -Subtag: esn -Description: Salvadoran Sign Language -Added: 2009-07-29 -Preferred-Value: esn -Prefix: sgn -%% -Type: extlang -Subtag: eso -Description: Estonian Sign Language -Added: 2009-07-29 -Preferred-Value: eso -Prefix: sgn -%% -Type: extlang -Subtag: eth -Description: Ethiopian Sign Language -Added: 2009-07-29 -Preferred-Value: eth -Prefix: sgn -%% -Type: extlang -Subtag: fcs -Description: Quebec Sign Language -Added: 2009-07-29 -Preferred-Value: fcs -Prefix: sgn -%% -Type: extlang -Subtag: fse -Description: Finnish Sign Language -Added: 2009-07-29 -Preferred-Value: fse -Prefix: sgn -%% -Type: extlang -Subtag: fsl -Description: French Sign Language -Added: 2009-07-29 -Preferred-Value: fsl -Prefix: sgn -%% -Type: extlang -Subtag: fss -Description: Finland-Swedish Sign Language -Description: finlandssvenskt teckenspråk -Description: suomenruotsalainen viittomakieli -Added: 2009-07-29 -Preferred-Value: fss -Prefix: sgn -%% -Type: extlang -Subtag: gan -Description: Gan Chinese -Added: 2009-07-29 -Preferred-Value: gan -Prefix: zh -Macrolanguage: zh -%% -Type: extlang -Subtag: gds -Description: Ghandruk Sign Language -Added: 2012-08-12 -Preferred-Value: gds -Prefix: sgn -%% -Type: extlang -Subtag: gom -Description: Goan Konkani -Added: 2009-07-29 -Preferred-Value: gom -Prefix: kok -Macrolanguage: kok -%% -Type: extlang -Subtag: gse -Description: Ghanaian Sign Language -Added: 2009-07-29 -Preferred-Value: gse -Prefix: sgn -%% -Type: extlang -Subtag: gsg -Description: German Sign Language -Added: 2009-07-29 -Preferred-Value: gsg -Prefix: sgn -%% -Type: extlang -Subtag: gsm -Description: Guatemalan Sign Language -Added: 2009-07-29 -Preferred-Value: gsm -Prefix: sgn -%% -Type: extlang -Subtag: gss -Description: Greek Sign Language -Added: 2009-07-29 -Preferred-Value: gss -Prefix: sgn -%% -Type: extlang -Subtag: gus -Description: Guinean Sign Language -Added: 2009-07-29 -Preferred-Value: gus -Prefix: sgn -%% -Type: extlang -Subtag: hab -Description: Hanoi Sign Language -Added: 2009-07-29 -Preferred-Value: hab -Prefix: sgn -%% -Type: extlang -Subtag: haf -Description: Haiphong Sign Language -Added: 2009-07-29 -Preferred-Value: haf -Prefix: sgn -%% -Type: extlang -Subtag: hak -Description: Hakka Chinese -Added: 2009-07-29 -Preferred-Value: hak -Prefix: zh -Macrolanguage: zh -%% -Type: extlang -Subtag: hds -Description: Honduras Sign Language -Added: 2009-07-29 -Preferred-Value: hds -Prefix: sgn -%% -Type: extlang -Subtag: hji -Description: Haji -Added: 2009-07-29 -Preferred-Value: hji -Prefix: ms -Macrolanguage: ms -%% -Type: extlang -Subtag: hks -Description: Hong Kong Sign Language -Description: Heung Kong Sau Yue -Added: 2009-07-29 -Preferred-Value: hks -Prefix: sgn -%% -Type: extlang -Subtag: hnm -Description: Hainanese -Added: 2024-12-12 -Preferred-Value: hnm -Prefix: zh -Macrolanguage: zh -%% -Type: extlang -Subtag: hos -Description: Ho Chi Minh City Sign Language -Added: 2009-07-29 -Preferred-Value: hos -Prefix: sgn -%% -Type: extlang -Subtag: hps -Description: Hawai'i Sign Language (HSL) -Description: Hawai'i Pidgin Sign Language -Added: 2009-07-29 -Preferred-Value: hps -Prefix: sgn -%% -Type: extlang -Subtag: hsh -Description: Hungarian Sign Language -Added: 2009-07-29 -Preferred-Value: hsh -Prefix: sgn -%% -Type: extlang -Subtag: hsl -Description: Hausa Sign Language -Added: 2009-07-29 -Preferred-Value: hsl -Prefix: sgn -%% -Type: extlang -Subtag: hsn -Description: Xiang Chinese -Added: 2009-07-29 -Preferred-Value: hsn -Prefix: zh -Macrolanguage: zh -%% -Type: extlang -Subtag: icl -Description: Icelandic Sign Language -Added: 2009-07-29 -Preferred-Value: icl -Prefix: sgn -%% -Type: extlang -Subtag: iks -Description: Inuit Sign Language -Added: 2015-02-12 -Preferred-Value: iks -Prefix: sgn -%% -Type: extlang -Subtag: ils -Description: International Sign -Added: 2009-07-29 -Preferred-Value: ils -Prefix: sgn -%% -Type: extlang -Subtag: inl -Description: Indonesian Sign Language -Added: 2009-07-29 -Preferred-Value: inl -Prefix: sgn -%% -Type: extlang -Subtag: ins -Description: Indian Sign Language -Added: 2009-07-29 -Preferred-Value: ins -Prefix: sgn -%% -Type: extlang -Subtag: ise -Description: Italian Sign Language -Added: 2009-07-29 -Preferred-Value: ise -Prefix: sgn -%% -Type: extlang -Subtag: isg -Description: Irish Sign Language -Added: 2009-07-29 -Preferred-Value: isg -Prefix: sgn -%% -Type: extlang -Subtag: isr -Description: Israeli Sign Language -Added: 2009-07-29 -Preferred-Value: isr -Prefix: sgn -%% -Type: extlang -Subtag: jak -Description: Jakun -Added: 2009-07-29 -Preferred-Value: jak -Prefix: ms -Macrolanguage: ms -%% -Type: extlang -Subtag: jax -Description: Jambi Malay -Added: 2009-07-29 -Preferred-Value: jax -Prefix: ms -Macrolanguage: ms -%% -Type: extlang -Subtag: jcs -Description: Jamaican Country Sign Language -Added: 2009-07-29 -Preferred-Value: jcs -Prefix: sgn -%% -Type: extlang -Subtag: jhs -Description: Jhankot Sign Language -Added: 2009-07-29 -Preferred-Value: jhs -Prefix: sgn -%% -Type: extlang -Subtag: jks -Description: Amami Koniya Sign Language -Added: 2021-02-20 -Preferred-Value: jks -Prefix: sgn -%% -Type: extlang -Subtag: jls -Description: Jamaican Sign Language -Added: 2010-03-11 -Preferred-Value: jls -Prefix: sgn -%% -Type: extlang -Subtag: jos -Description: Jordanian Sign Language -Added: 2009-07-29 -Preferred-Value: jos -Prefix: sgn -%% -Type: extlang -Subtag: jsl -Description: Japanese Sign Language -Added: 2009-07-29 -Preferred-Value: jsl -Prefix: sgn -%% -Type: extlang -Subtag: jus -Description: Jumla Sign Language -Added: 2009-07-29 -Preferred-Value: jus -Prefix: sgn -%% -Type: extlang -Subtag: kgi -Description: Selangor Sign Language -Added: 2009-07-29 -Preferred-Value: kgi -Prefix: sgn -%% -Type: extlang -Subtag: knn -Description: Konkani (individual language) -Added: 2009-07-29 -Preferred-Value: knn -Prefix: kok -Macrolanguage: kok -%% -Type: extlang -Subtag: kvb -Description: Kubu -Added: 2009-07-29 -Preferred-Value: kvb -Prefix: ms -Macrolanguage: ms -%% -Type: extlang -Subtag: kvk -Description: Korean Sign Language -Added: 2009-07-29 -Preferred-Value: kvk -Prefix: sgn -%% -Type: extlang -Subtag: kvr -Description: Kerinci -Added: 2009-07-29 -Preferred-Value: kvr -Prefix: ms -Macrolanguage: ms -%% -Type: extlang -Subtag: kxd -Description: Brunei -Added: 2009-07-29 -Preferred-Value: kxd -Prefix: ms -Macrolanguage: ms -%% -Type: extlang -Subtag: lbs -Description: Libyan Sign Language -Added: 2009-07-29 -Preferred-Value: lbs -Prefix: sgn -%% -Type: extlang -Subtag: lce -Description: Loncong -Description: Sekak -Added: 2009-07-29 -Preferred-Value: lce -Prefix: ms -Macrolanguage: ms -%% -Type: extlang -Subtag: lcf -Description: Lubu -Added: 2009-07-29 -Preferred-Value: lcf -Prefix: ms -Macrolanguage: ms -%% -Type: extlang -Subtag: lgs -Description: Guinea-Bissau Sign Language -Description: Língua Gestual Guineense -Added: 2023-03-17 -Preferred-Value: lgs -Prefix: sgn -%% -Type: extlang -Subtag: liw -Description: Col -Added: 2009-07-29 -Preferred-Value: liw -Prefix: ms -Macrolanguage: ms -%% -Type: extlang -Subtag: lls -Description: Lithuanian Sign Language -Added: 2009-07-29 -Preferred-Value: lls -Prefix: sgn -%% -Type: extlang -Subtag: lsb -Description: Burundian Sign Language -Description: Langue des Signes Burundaise -Added: 2021-02-20 -Preferred-Value: lsb -Prefix: sgn -%% -Type: extlang -Subtag: lsc -Description: Albarradas Sign Language -Description: Lengua de señas Albarradas -Added: 2022-02-25 -Preferred-Value: lsc -Prefix: sgn -%% -Type: extlang -Subtag: lsg -Description: Lyons Sign Language -Added: 2009-07-29 -Deprecated: 2018-03-08 -Preferred-Value: lsg -Prefix: sgn -%% -Type: extlang -Subtag: lsl -Description: Latvian Sign Language -Added: 2009-07-29 -Preferred-Value: lsl -Prefix: sgn -%% -Type: extlang -Subtag: lsn -Description: Tibetan Sign Language -Added: 2019-04-16 -Preferred-Value: lsn -Prefix: sgn -%% -Type: extlang -Subtag: lso -Description: Laos Sign Language -Added: 2009-07-29 -Preferred-Value: lso -Prefix: sgn -%% -Type: extlang -Subtag: lsp -Description: Panamanian Sign Language -Description: Lengua de Señas Panameñas -Added: 2009-07-29 -Preferred-Value: lsp -Prefix: sgn -%% -Type: extlang -Subtag: lst -Description: Trinidad and Tobago Sign Language -Added: 2009-07-29 -Preferred-Value: lst -Prefix: sgn -%% -Type: extlang -Subtag: lsv -Description: Sivia Sign Language -Added: 2019-04-16 -Preferred-Value: lsv -Prefix: sgn -%% -Type: extlang -Subtag: lsw -Description: Seychelles Sign Language -Description: Lalang Siny Seselwa -Description: Langue des Signes Seychelloise -Added: 2022-02-25 -Preferred-Value: lsw -Prefix: sgn -%% -Type: extlang -Subtag: lsy -Description: Mauritian Sign Language -Added: 2010-03-11 -Preferred-Value: lsy -Prefix: sgn -%% -Type: extlang -Subtag: ltg -Description: Latgalian -Added: 2010-03-11 -Preferred-Value: ltg -Prefix: lv -Macrolanguage: lv -%% -Type: extlang -Subtag: luh -Description: Leizhou Chinese -Added: 2024-12-12 -Preferred-Value: luh -Prefix: zh -Macrolanguage: zh -%% -Type: extlang -Subtag: lvs -Description: Standard Latvian -Added: 2010-03-11 -Preferred-Value: lvs -Prefix: lv -Macrolanguage: lv -%% -Type: extlang -Subtag: lws -Description: Malawian Sign Language -Added: 2018-03-08 -Preferred-Value: lws -Prefix: sgn -%% -Type: extlang -Subtag: lzh -Description: Literary Chinese -Added: 2009-07-29 -Preferred-Value: lzh -Prefix: zh -Macrolanguage: zh -%% -Type: extlang -Subtag: max -Description: North Moluccan Malay -Added: 2009-07-29 -Preferred-Value: max -Prefix: ms -Macrolanguage: ms -%% -Type: extlang -Subtag: mdl -Description: Maltese Sign Language -Added: 2009-07-29 -Preferred-Value: mdl -Prefix: sgn -%% -Type: extlang -Subtag: meo -Description: Kedah Malay -Added: 2009-07-29 -Preferred-Value: meo -Prefix: ms -Macrolanguage: ms -%% -Type: extlang -Subtag: mfa -Description: Pattani Malay -Added: 2009-07-29 -Preferred-Value: mfa -Prefix: ms -Macrolanguage: ms -%% -Type: extlang -Subtag: mfb -Description: Bangka -Added: 2009-07-29 -Preferred-Value: mfb -Prefix: ms -Macrolanguage: ms -%% -Type: extlang -Subtag: mfs -Description: Mexican Sign Language -Added: 2009-07-29 -Preferred-Value: mfs -Prefix: sgn -%% -Type: extlang -Subtag: min -Description: Minangkabau -Added: 2009-07-29 -Preferred-Value: min -Prefix: ms -Macrolanguage: ms -%% -Type: extlang -Subtag: mnp -Description: Min Bei Chinese -Added: 2009-07-29 -Preferred-Value: mnp -Prefix: zh -Macrolanguage: zh -%% -Type: extlang -Subtag: mqg -Description: Kota Bangun Kutai Malay -Added: 2009-07-29 -Preferred-Value: mqg -Prefix: ms -Macrolanguage: ms -%% -Type: extlang -Subtag: mre -Description: Martha's Vineyard Sign Language -Added: 2009-07-29 -Preferred-Value: mre -Prefix: sgn -%% -Type: extlang -Subtag: msd -Description: Yucatec Maya Sign Language -Added: 2009-07-29 -Preferred-Value: msd -Prefix: sgn -%% -Type: extlang -Subtag: msi -Description: Sabah Malay -Added: 2009-07-29 -Preferred-Value: msi -Prefix: ms -Macrolanguage: ms -%% -Type: extlang -Subtag: msr -Description: Mongolian Sign Language -Added: 2009-07-29 -Preferred-Value: msr -Prefix: sgn -%% -Type: extlang -Subtag: mui -Description: Musi -Added: 2009-07-29 -Preferred-Value: mui -Prefix: ms -Macrolanguage: ms -%% -Type: extlang -Subtag: mzc -Description: Madagascar Sign Language -Added: 2009-07-29 -Preferred-Value: mzc -Prefix: sgn -%% -Type: extlang -Subtag: mzg -Description: Monastic Sign Language -Added: 2009-07-29 -Preferred-Value: mzg -Prefix: sgn -%% -Type: extlang -Subtag: mzy -Description: Mozambican Sign Language -Added: 2009-07-29 -Preferred-Value: mzy -Prefix: sgn -%% -Type: extlang -Subtag: nan -Description: Min Nan Chinese -Added: 2009-07-29 -Preferred-Value: nan -Prefix: zh -Macrolanguage: zh -%% -Type: extlang -Subtag: nbs -Description: Namibian Sign Language -Added: 2009-07-29 -Preferred-Value: nbs -Prefix: sgn -%% -Type: extlang -Subtag: ncs -Description: Nicaraguan Sign Language -Added: 2009-07-29 -Preferred-Value: ncs -Prefix: sgn -%% -Type: extlang -Subtag: nsi -Description: Nigerian Sign Language -Added: 2009-07-29 -Preferred-Value: nsi -Prefix: sgn -%% -Type: extlang -Subtag: nsl -Description: Norwegian Sign Language -Added: 2009-07-29 -Preferred-Value: nsl -Prefix: sgn -%% -Type: extlang -Subtag: nsp -Description: Nepalese Sign Language -Added: 2009-07-29 -Preferred-Value: nsp -Prefix: sgn -%% -Type: extlang -Subtag: nsr -Description: Maritime Sign Language -Added: 2009-07-29 -Preferred-Value: nsr -Prefix: sgn -%% -Type: extlang -Subtag: nzs -Description: New Zealand Sign Language -Added: 2009-07-29 -Preferred-Value: nzs -Prefix: sgn -%% -Type: extlang -Subtag: okl -Description: Old Kentish Sign Language -Added: 2009-07-29 -Preferred-Value: okl -Prefix: sgn -%% -Type: extlang -Subtag: orn -Description: Orang Kanaq -Added: 2009-07-29 -Preferred-Value: orn -Prefix: ms -Macrolanguage: ms -%% -Type: extlang -Subtag: ors -Description: Orang Seletar -Added: 2009-07-29 -Preferred-Value: ors -Prefix: ms -Macrolanguage: ms -%% -Type: extlang -Subtag: pel -Description: Pekal -Added: 2009-07-29 -Preferred-Value: pel -Prefix: ms -Macrolanguage: ms -%% -Type: extlang -Subtag: pga -Description: Sudanese Creole Arabic -Added: 2009-07-29 -Preferred-Value: pga -Prefix: ar -Macrolanguage: ar -%% -Type: extlang -Subtag: pgz -Description: Papua New Guinean Sign Language -Added: 2016-05-30 -Preferred-Value: pgz -Prefix: sgn -%% -Type: extlang -Subtag: pks -Description: Pakistan Sign Language -Added: 2009-07-29 -Preferred-Value: pks -Prefix: sgn -%% -Type: extlang -Subtag: prl -Description: Peruvian Sign Language -Added: 2009-07-29 -Preferred-Value: prl -Prefix: sgn -%% -Type: extlang -Subtag: prz -Description: Providencia Sign Language -Added: 2009-07-29 -Preferred-Value: prz -Prefix: sgn -%% -Type: extlang -Subtag: psc -Description: Iranian Sign Language -Description: Persian Sign Language -Added: 2009-07-29 -Preferred-Value: psc -Prefix: sgn -%% -Type: extlang -Subtag: psd -Description: Plains Indian Sign Language -Added: 2009-07-29 -Preferred-Value: psd -Prefix: sgn -%% -Type: extlang -Subtag: pse -Description: Central Malay -Added: 2009-07-29 -Preferred-Value: pse -Prefix: ms -Macrolanguage: ms -%% -Type: extlang -Subtag: psg -Description: Penang Sign Language -Added: 2009-07-29 -Preferred-Value: psg -Prefix: sgn -%% -Type: extlang -Subtag: psl -Description: Puerto Rican Sign Language -Added: 2009-07-29 -Preferred-Value: psl -Prefix: sgn -%% -Type: extlang -Subtag: pso -Description: Polish Sign Language -Added: 2009-07-29 -Preferred-Value: pso -Prefix: sgn -%% -Type: extlang -Subtag: psp -Description: Philippine Sign Language -Added: 2009-07-29 -Preferred-Value: psp -Prefix: sgn -%% -Type: extlang -Subtag: psr -Description: Portuguese Sign Language -Added: 2009-07-29 -Preferred-Value: psr -Prefix: sgn -%% -Type: extlang -Subtag: pys -Description: Paraguayan Sign Language -Description: Lengua de Señas del Paraguay -Added: 2010-03-11 -Preferred-Value: pys -Prefix: sgn -%% -Type: extlang -Subtag: rib -Description: Bribri Sign Language -Added: 2022-02-25 -Preferred-Value: rib -Prefix: sgn -%% -Type: extlang -Subtag: rms -Description: Romanian Sign Language -Added: 2009-07-29 -Preferred-Value: rms -Prefix: sgn -%% -Type: extlang -Subtag: rnb -Description: Brunca Sign Language -Added: 2022-02-25 -Preferred-Value: rnb -Prefix: sgn -%% -Type: extlang -Subtag: rsi -Description: Rennellese Sign Language -Added: 2009-07-29 -Deprecated: 2017-02-23 -Preferred-Value: rsi -Prefix: sgn -%% -Type: extlang -Subtag: rsl -Description: Russian Sign Language -Added: 2009-07-29 -Preferred-Value: rsl -Prefix: sgn -%% -Type: extlang -Subtag: rsm -Description: Miriwoong Sign Language -Added: 2016-05-30 -Preferred-Value: rsm -Prefix: sgn -%% -Type: extlang -Subtag: rsn -Description: Rwandan Sign Language -Added: 2022-02-25 -Preferred-Value: rsn -Prefix: sgn -%% -Type: extlang -Subtag: sdl -Description: Saudi Arabian Sign Language -Added: 2009-07-29 -Preferred-Value: sdl -Prefix: sgn -%% -Type: extlang -Subtag: sfb -Description: Langue des signes de Belgique Francophone -Description: French Belgian Sign Language -Added: 2009-07-29 -Preferred-Value: sfb -Prefix: sgn -%% -Type: extlang -Subtag: sfs -Description: South African Sign Language -Added: 2009-07-29 -Preferred-Value: sfs -Prefix: sgn -%% -Type: extlang -Subtag: sgg -Description: Swiss-German Sign Language -Added: 2009-07-29 -Preferred-Value: sgg -Prefix: sgn -%% -Type: extlang -Subtag: sgx -Description: Sierra Leone Sign Language -Added: 2009-07-29 -Preferred-Value: sgx -Prefix: sgn -%% -Type: extlang -Subtag: shu -Description: Chadian Arabic -Added: 2009-07-29 -Preferred-Value: shu -Prefix: ar -Macrolanguage: ar -%% -Type: extlang -Subtag: sjc -Description: Shaojiang Chinese -Added: 2024-12-12 -Preferred-Value: sjc -Prefix: zh -Macrolanguage: zh -%% -Type: extlang -Subtag: slf -Description: Swiss-Italian Sign Language -Added: 2009-07-29 -Preferred-Value: slf -Prefix: sgn -%% -Type: extlang -Subtag: sls -Description: Singapore Sign Language -Added: 2009-07-29 -Preferred-Value: sls -Prefix: sgn -%% -Type: extlang -Subtag: sqk -Description: Albanian Sign Language -Added: 2012-08-12 -Preferred-Value: sqk -Prefix: sgn -%% -Type: extlang -Subtag: sqs -Description: Sri Lankan Sign Language -Added: 2009-07-29 -Preferred-Value: sqs -Prefix: sgn -%% -Type: extlang -Subtag: sqx -Description: Kufr Qassem Sign Language (KQSL) -Added: 2021-02-20 -Preferred-Value: sqx -Prefix: sgn -%% -Type: extlang -Subtag: ssh -Description: Shihhi Arabic -Added: 2009-07-29 -Preferred-Value: ssh -Prefix: ar -Macrolanguage: ar -%% -Type: extlang -Subtag: ssp -Description: Spanish Sign Language -Added: 2009-07-29 -Preferred-Value: ssp -Prefix: sgn -%% -Type: extlang -Subtag: ssr -Description: Swiss-French Sign Language -Added: 2009-07-29 -Preferred-Value: ssr -Prefix: sgn -%% -Type: extlang -Subtag: svk -Description: Slovakian Sign Language -Added: 2009-07-29 -Preferred-Value: svk -Prefix: sgn -%% -Type: extlang -Subtag: swc -Description: Congo Swahili -Added: 2009-07-29 -Preferred-Value: swc -Prefix: sw -Macrolanguage: sw -%% -Type: extlang -Subtag: swh -Description: Swahili (individual language) -Description: Kiswahili -Added: 2009-07-29 -Preferred-Value: swh -Prefix: sw -Macrolanguage: sw -%% -Type: extlang -Subtag: swl -Description: Swedish Sign Language -Added: 2009-07-29 -Preferred-Value: swl -Prefix: sgn -%% -Type: extlang -Subtag: syy -Description: Al-Sayyid Bedouin Sign Language -Added: 2009-07-29 -Preferred-Value: syy -Prefix: sgn -%% -Type: extlang -Subtag: szs -Description: Solomon Islands Sign Language -Added: 2017-02-23 -Preferred-Value: szs -Prefix: sgn -%% -Type: extlang -Subtag: tmw -Description: Temuan -Added: 2009-07-29 -Preferred-Value: tmw -Prefix: ms -Macrolanguage: ms -%% -Type: extlang -Subtag: tse -Description: Tunisian Sign Language -Added: 2009-07-29 -Preferred-Value: tse -Prefix: sgn -%% -Type: extlang -Subtag: tsm -Description: Turkish Sign Language -Description: Türk İşaret Dili -Added: 2009-07-29 -Preferred-Value: tsm -Prefix: sgn -%% -Type: extlang -Subtag: tsq -Description: Thai Sign Language -Added: 2009-07-29 -Preferred-Value: tsq -Prefix: sgn -%% -Type: extlang -Subtag: tss -Description: Taiwan Sign Language -Added: 2009-07-29 -Preferred-Value: tss -Prefix: sgn -%% -Type: extlang -Subtag: tsy -Description: Tebul Sign Language -Added: 2009-07-29 -Preferred-Value: tsy -Prefix: sgn -%% -Type: extlang -Subtag: tza -Description: Tanzanian Sign Language -Added: 2009-07-29 -Preferred-Value: tza -Prefix: sgn -%% -Type: extlang -Subtag: ugn -Description: Ugandan Sign Language -Added: 2009-07-29 -Preferred-Value: ugn -Prefix: sgn -%% -Type: extlang -Subtag: ugy -Description: Uruguayan Sign Language -Added: 2009-07-29 -Preferred-Value: ugy -Prefix: sgn -%% -Type: extlang -Subtag: ukl -Description: Ukrainian Sign Language -Added: 2009-07-29 -Preferred-Value: ukl -Prefix: sgn -%% -Type: extlang -Subtag: uks -Description: Urubú-Kaapor Sign Language -Description: Kaapor Sign Language -Added: 2009-07-29 -Preferred-Value: uks -Prefix: sgn -%% -Type: extlang -Subtag: urk -Description: Urak Lawoi' -Added: 2009-07-29 -Preferred-Value: urk -Prefix: ms -Macrolanguage: ms -%% -Type: extlang -Subtag: uzn -Description: Northern Uzbek -Added: 2009-07-29 -Preferred-Value: uzn -Prefix: uz -Macrolanguage: uz -%% -Type: extlang -Subtag: uzs -Description: Southern Uzbek -Added: 2009-07-29 -Preferred-Value: uzs -Prefix: uz -Macrolanguage: uz -%% -Type: extlang -Subtag: vgt -Description: Vlaamse Gebarentaal -Description: Flemish Sign Language -Added: 2009-07-29 -Preferred-Value: vgt -Prefix: sgn -%% -Type: extlang -Subtag: vkk -Description: Kaur -Added: 2009-07-29 -Preferred-Value: vkk -Prefix: ms -Macrolanguage: ms -%% -Type: extlang -Subtag: vkt -Description: Tenggarong Kutai Malay -Added: 2009-07-29 -Preferred-Value: vkt -Prefix: ms -Macrolanguage: ms -%% -Type: extlang -Subtag: vsi -Description: Moldova Sign Language -Added: 2009-07-29 -Preferred-Value: vsi -Prefix: sgn -%% -Type: extlang -Subtag: vsl -Description: Venezuelan Sign Language -Added: 2009-07-29 -Preferred-Value: vsl -Prefix: sgn -%% -Type: extlang -Subtag: vsv -Description: Valencian Sign Language -Description: Llengua de signes valenciana -Added: 2009-07-29 -Preferred-Value: vsv -Prefix: sgn -%% -Type: extlang -Subtag: wbs -Description: West Bengal Sign Language -Added: 2017-02-23 -Preferred-Value: wbs -Prefix: sgn -%% -Type: extlang -Subtag: wuu -Description: Wu Chinese -Added: 2009-07-29 -Preferred-Value: wuu -Prefix: zh -Macrolanguage: zh -%% -Type: extlang -Subtag: xki -Description: Kenyan Sign Language -Added: 2009-07-29 -Preferred-Value: xki -Prefix: sgn -%% -Type: extlang -Subtag: xml -Description: Malaysian Sign Language -Added: 2009-07-29 -Preferred-Value: xml -Prefix: sgn -%% -Type: extlang -Subtag: xmm -Description: Manado Malay -Added: 2009-07-29 -Preferred-Value: xmm -Prefix: ms -Macrolanguage: ms -%% -Type: extlang -Subtag: xms -Description: Moroccan Sign Language -Added: 2009-07-29 -Preferred-Value: xms -Prefix: sgn -%% -Type: extlang -Subtag: yds -Description: Yiddish Sign Language -Added: 2009-07-29 -Deprecated: 2015-02-12 -Preferred-Value: yds -Prefix: sgn -%% -Type: extlang -Subtag: ygs -Description: Yolŋu Sign Language -Added: 2014-02-28 -Preferred-Value: ygs -Prefix: sgn -%% -Type: extlang -Subtag: yhs -Description: Yan-nhaŋu Sign Language -Added: 2015-04-17 -Preferred-Value: yhs -Prefix: sgn -%% -Type: extlang -Subtag: ysl -Description: Yugoslavian Sign Language -Added: 2009-07-29 -Preferred-Value: ysl -Prefix: sgn -%% -Type: extlang -Subtag: ysm -Description: Myanmar Sign Language -Added: 2021-02-20 -Preferred-Value: ysm -Prefix: sgn -%% -Type: extlang -Subtag: yue -Description: Yue Chinese -Description: Cantonese -Added: 2009-07-29 -Preferred-Value: yue -Prefix: zh -Macrolanguage: zh -%% -Type: extlang -Subtag: zhk -Description: Kurdish Sign Language -Added: 2026-05-05 -Preferred-Value: zhk -Prefix: sgn -%% -Type: extlang -Subtag: zib -Description: Zimbabwe Sign Language -Added: 2009-07-29 -Preferred-Value: zib -Prefix: sgn -%% -Type: extlang -Subtag: zlm -Description: Malay (individual language) -Added: 2009-07-29 -Preferred-Value: zlm -Prefix: ms -Macrolanguage: ms -%% -Type: extlang -Subtag: zmi -Description: Negeri Sembilan Malay -Added: 2009-07-29 -Preferred-Value: zmi -Prefix: ms -Macrolanguage: ms -%% -Type: extlang -Subtag: zsl -Description: Zambian Sign Language -Added: 2009-07-29 -Preferred-Value: zsl -Prefix: sgn -%% -Type: extlang -Subtag: zsm -Description: Standard Malay -Added: 2009-07-29 -Preferred-Value: zsm -Prefix: ms -Macrolanguage: ms -%% -Type: script -Subtag: Adlm -Description: Adlam -Added: 2014-12-11 -%% -Type: script -Subtag: Afak -Description: Afaka -Added: 2011-01-07 -%% -Type: script -Subtag: Aghb -Description: Caucasian Albanian -Added: 2012-11-01 -%% -Type: script -Subtag: Ahom -Description: Ahom -Description: Tai Ahom -Added: 2013-12-02 -%% -Type: script -Subtag: Arab -Description: Arabic -Added: 2005-10-16 -%% -Type: script -Subtag: Aran -Description: Arabic (Nastaliq variant) -Added: 2014-12-11 -%% -Type: script -Subtag: Armi -Description: Imperial Aramaic -Added: 2007-12-05 -%% -Type: script -Subtag: Armn -Description: Armenian -Added: 2005-10-16 -%% -Type: script -Subtag: Avst -Description: Avestan -Added: 2007-07-28 -%% -Type: script -Subtag: Bali -Description: Balinese -Added: 2005-10-16 -%% -Type: script -Subtag: Bamu -Description: Bamum -Added: 2009-07-30 -%% -Type: script -Subtag: Bass -Description: Bassa Vah -Added: 2010-04-10 -%% -Type: script -Subtag: Batk -Description: Batak -Added: 2005-10-16 -%% -Type: script -Subtag: Beng -Description: Bengali -Description: Bangla -Added: 2005-10-16 -%% -Type: script -Subtag: Berf -Description: Beria Erfe -Added: 2025-02-06 -%% -Type: script -Subtag: Bhks -Description: Bhaiksuki -Added: 2015-07-24 -%% -Type: script -Subtag: Blis -Description: Blissymbols -Added: 2005-10-16 -%% -Type: script -Subtag: Bopo -Description: Bopomofo -Added: 2005-10-16 -%% -Type: script -Subtag: Brah -Description: Brahmi -Added: 2005-10-16 -%% -Type: script -Subtag: Brai -Description: Braille -Added: 2005-10-16 -%% -Type: script -Subtag: Bugi -Description: Buginese -Added: 2005-10-16 -%% -Type: script -Subtag: Buhd -Description: Buhid -Added: 2005-10-16 -%% -Type: script -Subtag: Cakm -Description: Chakma -Added: 2007-12-05 -%% -Type: script -Subtag: Cans -Description: Unified Canadian Aboriginal Syllabics -Added: 2005-10-16 -%% -Type: script -Subtag: Cari -Description: Carian -Added: 2006-07-21 -%% -Type: script -Subtag: Cham -Description: Cham -Added: 2005-10-16 -%% -Type: script -Subtag: Cher -Description: Cherokee -Added: 2005-10-16 -%% -Type: script -Subtag: Chis -Description: Chisoi -Added: 2023-10-16 -%% -Type: script -Subtag: Chrs -Description: Chorasmian -Added: 2019-09-11 -%% -Type: script -Subtag: Cirt -Description: Cirth -Added: 2005-10-16 -%% -Type: script -Subtag: Copt -Description: Coptic -Added: 2005-10-16 -%% -Type: script -Subtag: Cpmn -Description: Cypro-Minoan -Added: 2017-08-13 -%% -Type: script -Subtag: Cprt -Description: Cypriot syllabary -Added: 2005-10-16 -%% -Type: script -Subtag: Cyrl -Description: Cyrillic -Added: 2005-10-16 -%% -Type: script -Subtag: Cyrs -Description: Cyrillic (Old Church Slavonic variant) -Added: 2005-10-16 -%% -Type: script -Subtag: Deva -Description: Devanagari -Description: Nagari -Added: 2005-10-16 -%% -Type: script -Subtag: Diak -Description: Dives Akuru -Added: 2019-09-11 -%% -Type: script -Subtag: Dogr -Description: Dogra -Added: 2017-01-13 -%% -Type: script -Subtag: Dsrt -Description: Deseret -Description: Mormon -Added: 2005-10-16 -%% -Type: script -Subtag: Dupl -Description: Duployan shorthand -Description: Duployan stenography -Added: 2010-08-16 -%% -Type: script -Subtag: Egyd -Description: Egyptian demotic -Added: 2005-10-16 -%% -Type: script -Subtag: Egyh -Description: Egyptian hieratic -Added: 2005-10-16 -%% -Type: script -Subtag: Egyp -Description: Egyptian hieroglyphs -Added: 2005-10-16 -%% -Type: script -Subtag: Elba -Description: Elbasan -Added: 2010-08-16 -%% -Type: script -Subtag: Elym -Description: Elymaic -Added: 2018-10-28 -%% -Type: script -Subtag: Ethi -Description: Ethiopic -Description: Geʻez -Description: Ge'ez -Added: 2005-10-16 -%% -Type: script -Subtag: Gara -Description: Garay -Added: 2023-10-16 -%% -Type: script -Subtag: Geok -Description: Khutsuri (Asomtavruli and Nuskhuri) -Added: 2005-10-16 -%% -Type: script -Subtag: Geor -Description: Georgian (Mkhedruli and Mtavruli) -Added: 2005-10-16 -%% -Type: script -Subtag: Glag -Description: Glagolitic -Added: 2005-10-16 -%% -Type: script -Subtag: Gong -Description: Gunjala Gondi -Added: 2017-01-13 -%% -Type: script -Subtag: Gonm -Description: Masaram Gondi -Added: 2017-01-13 -%% -Type: script -Subtag: Goth -Description: Gothic -Added: 2005-10-16 -%% -Type: script -Subtag: Gran -Description: Grantha -Added: 2009-12-09 -%% -Type: script -Subtag: Grek -Description: Greek -Added: 2005-10-16 -%% -Type: script -Subtag: Gujr -Description: Gujarati -Added: 2005-10-16 -%% -Type: script -Subtag: Gukh -Description: Gurung Khema -Added: 2023-10-16 -%% -Type: script -Subtag: Guru -Description: Gurmukhi -Added: 2005-10-16 -%% -Type: script -Subtag: Hanb -Description: Han with Bopomofo (alias for Han + Bopomofo) -Added: 2016-02-08 -%% -Type: script -Subtag: Hang -Description: Hangul -Description: Hangŭl -Description: Hangeul -Added: 2005-10-16 -%% -Type: script -Subtag: Hani -Description: Han -Description: Hanzi -Description: Kanji -Description: Hanja -Added: 2005-10-16 -%% -Type: script -Subtag: Hano -Description: Hanunoo -Description: Hanunóo -Added: 2005-10-16 -%% -Type: script -Subtag: Hans -Description: Han (Simplified variant) -Added: 2005-10-16 -%% -Type: script -Subtag: Hant -Description: Han (Traditional variant) -Added: 2005-10-16 -%% -Type: script -Subtag: Hatr -Description: Hatran -Added: 2013-12-02 -%% -Type: script -Subtag: Hebr -Description: Hebrew -Added: 2005-10-16 -%% -Type: script -Subtag: Hira -Description: Hiragana -Added: 2005-10-16 -%% -Type: script -Subtag: Hluw -Description: Anatolian Hieroglyphs -Description: Luwian Hieroglyphs -Description: Hittite Hieroglyphs -Added: 2011-12-28 -%% -Type: script -Subtag: Hmng -Description: Pahawh Hmong -Added: 2005-10-16 -%% -Type: script -Subtag: Hmnp -Description: Nyiakeng Puachue Hmong -Added: 2017-08-13 -%% -Type: script -Subtag: Hntl -Description: Han (Traditional variant) with Latin (alias for Hant + - Latn) -Added: 2025-05-14 -%% -Type: script -Subtag: Hrkt -Description: Japanese syllabaries (alias for Hiragana + Katakana) -Added: 2005-10-16 -%% -Type: script -Subtag: Hung -Description: Old Hungarian -Description: Hungarian Runic -Added: 2005-10-16 -%% -Type: script -Subtag: Inds -Description: Indus -Description: Harappan -Added: 2005-10-16 -%% -Type: script -Subtag: Ital -Description: Old Italic (Etruscan, Oscan, etc.) -Added: 2005-10-16 -%% -Type: script -Subtag: Jamo -Description: Jamo (alias for Jamo subset of Hangul) -Added: 2016-02-08 -%% -Type: script -Subtag: Java -Description: Javanese -Added: 2005-10-16 -%% -Type: script -Subtag: Jpan -Description: Japanese (alias for Han + Hiragana + Katakana) -Added: 2006-07-21 -%% -Type: script -Subtag: Jurc -Description: Jurchen -Added: 2011-01-07 -%% -Type: script -Subtag: Kali -Description: Kayah Li -Added: 2005-10-16 -%% -Type: script -Subtag: Kana -Description: Katakana -Added: 2005-10-16 -%% -Type: script -Subtag: Kawi -Description: Kawi -Added: 2021-12-24 -%% -Type: script -Subtag: Khar -Description: Kharoshthi -Added: 2005-10-16 -%% -Type: script -Subtag: Khmr -Description: Khmer -Added: 2005-10-16 -%% -Type: script -Subtag: Khoj -Description: Khojki -Added: 2011-08-16 -%% -Type: script -Subtag: Kitl -Description: Khitan large script -Added: 2014-12-11 -%% -Type: script -Subtag: Kits -Description: Khitan small script -Added: 2014-12-11 -%% -Type: script -Subtag: Knda -Description: Kannada -Added: 2005-10-16 -%% -Type: script -Subtag: Kore -Description: Korean (alias for Hangul + Han) -Added: 2007-07-05 -%% -Type: script -Subtag: Kpel -Description: Kpelle -Added: 2010-04-10 -%% -Type: script -Subtag: Krai -Description: Kirat Rai -Added: 2023-10-16 -%% -Type: script -Subtag: Kthi -Description: Kaithi -Added: 2007-12-05 -%% -Type: script -Subtag: Lana -Description: Tai Tham -Description: Lanna -Added: 2006-07-21 -%% -Type: script -Subtag: Laoo -Description: Lao -Added: 2005-10-16 -%% -Type: script -Subtag: Latf -Description: Latin (Fraktur variant) -Added: 2005-10-16 -%% -Type: script -Subtag: Latg -Description: Latin (Gaelic variant) -Added: 2005-10-16 -%% -Type: script -Subtag: Latn -Description: Latin -Added: 2005-10-16 -%% -Type: script -Subtag: Leke -Description: Leke -Added: 2015-07-24 -%% -Type: script -Subtag: Lepc -Description: Lepcha -Description: Róng -Added: 2005-10-16 -%% -Type: script -Subtag: Limb -Description: Limbu -Added: 2005-10-16 -%% -Type: script -Subtag: Lina -Description: Linear A -Added: 2005-10-16 -%% -Type: script -Subtag: Linb -Description: Linear B -Added: 2005-10-16 -%% -Type: script -Subtag: Lisu -Description: Lisu -Description: Fraser -Added: 2009-03-13 -%% -Type: script -Subtag: Loma -Description: Loma -Added: 2010-04-10 -%% -Type: script -Subtag: Lyci -Description: Lycian -Added: 2006-07-21 -%% -Type: script -Subtag: Lydi -Description: Lydian -Added: 2006-07-21 -%% -Type: script -Subtag: Mahj -Description: Mahajani -Added: 2012-11-01 -%% -Type: script -Subtag: Maka -Description: Makasar -Added: 2017-01-13 -%% -Type: script -Subtag: Mand -Description: Mandaic -Description: Mandaean -Added: 2005-10-16 -%% -Type: script -Subtag: Mani -Description: Manichaean -Added: 2007-07-28 -%% -Type: script -Subtag: Marc -Description: Marchen -Added: 2014-12-11 -%% -Type: script -Subtag: Maya -Description: Mayan hieroglyphs -Added: 2005-10-16 -%% -Type: script -Subtag: Medf -Description: Medefaidrin -Description: Oberi Okaime -Description: Oberi Ɔkaimɛ -Added: 2017-01-13 -%% -Type: script -Subtag: Mend -Description: Mende Kikakui -Added: 2010-04-10 -%% -Type: script -Subtag: Merc -Description: Meroitic Cursive -Added: 2009-12-09 -%% -Type: script -Subtag: Mero -Description: Meroitic Hieroglyphs -Added: 2005-10-16 -%% -Type: script -Subtag: Mlym -Description: Malayalam -Added: 2005-10-16 -%% -Type: script -Subtag: Modi -Description: Modi -Description: Moḍī -Added: 2013-12-02 -%% -Type: script -Subtag: Mong -Description: Mongolian -Added: 2005-10-16 -%% -Type: script -Subtag: Moon -Description: Moon -Description: Moon code -Description: Moon script -Description: Moon type -Added: 2007-01-26 -%% -Type: script -Subtag: Mroo -Description: Mro -Description: Mru -Added: 2011-01-07 -%% -Type: script -Subtag: Mtei -Description: Meitei Mayek -Description: Meithei -Description: Meetei -Added: 2007-01-26 -%% -Type: script -Subtag: Mult -Description: Multani -Added: 2013-12-02 -%% -Type: script -Subtag: Mymr -Description: Myanmar -Description: Burmese -Added: 2005-10-16 -%% -Type: script -Subtag: Nagm -Description: Nag Mundari -Added: 2021-12-24 -%% -Type: script -Subtag: Nand -Description: Nandinagari -Added: 2018-10-28 -%% -Type: script -Subtag: Narb -Description: Old North Arabian -Description: Ancient North Arabian -Added: 2010-04-10 -%% -Type: script -Subtag: Nbat -Description: Nabataean -Added: 2010-04-10 -%% -Type: script -Subtag: Newa -Description: Newa -Description: Newar -Description: Newari -Description: Nepāla lipi -Added: 2016-01-04 -%% -Type: script -Subtag: Nkdb -Description: Naxi Dongba -Description: na²¹ɕi³³ to³³ba²¹ -Description: Nakhi Tomba -Added: 2017-08-13 -%% -Type: script -Subtag: Nkgb -Description: Naxi Geba -Description: na²¹ɕi³³ gʌ²¹ba²¹ -Description: 'Na-'Khi ²Ggŏ-¹baw -Description: Nakhi Geba -Added: 2009-03-13 -%% -Type: script -Subtag: Nkoo -Description: N’Ko -Description: N'Ko -Added: 2005-10-16 -%% -Type: script -Subtag: Nshu -Description: Nüshu -Added: 2011-01-07 -%% -Type: script -Subtag: Ogam -Description: Ogham -Added: 2005-10-16 -%% -Type: script -Subtag: Olck -Description: Ol Chiki -Description: Ol Cemet' -Description: Ol -Description: Santali -Added: 2006-07-21 -%% -Type: script -Subtag: Onao -Description: Ol Onal -Added: 2023-10-16 -%% -Type: script -Subtag: Orkh -Description: Old Turkic -Description: Orkhon Runic -Added: 2009-07-30 -%% -Type: script -Subtag: Orya -Description: Oriya -Description: Odia -Added: 2005-10-16 -%% -Type: script -Subtag: Osge -Description: Osage -Added: 2014-12-11 -%% -Type: script -Subtag: Osma -Description: Osmanya -Added: 2005-10-16 -%% -Type: script -Subtag: Ougr -Description: Old Uyghur -Added: 2021-02-12 -%% -Type: script -Subtag: Palm -Description: Palmyrene -Added: 2010-04-10 -%% -Type: script -Subtag: Pauc -Description: Pau Cin Hau -Added: 2013-12-02 -%% -Type: script -Subtag: Pcun -Description: Proto-Cuneiform -Added: 2021-02-12 -%% -Type: script -Subtag: Pelm -Description: Proto-Elamite -Added: 2021-02-12 -%% -Type: script -Subtag: Perm -Description: Old Permic -Added: 2005-10-16 -%% -Type: script -Subtag: Phag -Description: Phags-pa -Added: 2005-10-16 -%% -Type: script -Subtag: Phli -Description: Inscriptional Pahlavi -Added: 2007-12-05 -%% -Type: script -Subtag: Phlp -Description: Psalter Pahlavi -Added: 2007-12-05 -%% -Type: script -Subtag: Phlv -Description: Book Pahlavi -Added: 2007-07-28 -%% -Type: script -Subtag: Phnx -Description: Phoenician -Added: 2005-10-16 -%% -Type: script -Subtag: Piqd -Description: Klingon (KLI pIqaD) -Added: 2016-01-04 -%% -Type: script -Subtag: Plrd -Description: Miao -Description: Pollard -Added: 2005-10-16 -%% -Type: script -Subtag: Prti -Description: Inscriptional Parthian -Added: 2007-12-05 -%% -Type: script -Subtag: Psin -Description: Proto-Sinaitic -Added: 2021-02-12 -%% -Type: script -Subtag: Qaaa..Qabx -Description: Private use -Added: 2005-10-16 -%% -Type: script -Subtag: Ranj -Description: Ranjana -Added: 2021-02-12 -%% -Type: script -Subtag: Rjng -Description: Rejang -Description: Redjang -Description: Kaganga -Added: 2006-10-17 -%% -Type: script -Subtag: Rohg -Description: Hanifi Rohingya -Added: 2017-12-13 -%% -Type: script -Subtag: Roro -Description: Rongorongo -Added: 2005-10-16 -%% -Type: script -Subtag: Runr -Description: Runic -Added: 2005-10-16 -%% -Type: script -Subtag: Samr -Description: Samaritan -Added: 2007-07-28 -%% -Type: script -Subtag: Sara -Description: Sarati -Added: 2005-10-16 -%% -Type: script -Subtag: Sarb -Description: Old South Arabian -Added: 2009-07-30 -%% -Type: script -Subtag: Saur -Description: Saurashtra -Added: 2006-07-21 -%% -Type: script -Subtag: Seal -Description: Seal -Description: Small Seal -Added: 2025-05-14 -%% -Type: script -Subtag: Sgnw -Description: SignWriting -Added: 2006-10-17 -%% -Type: script -Subtag: Shaw -Description: Shavian -Description: Shaw -Added: 2005-10-16 -%% -Type: script -Subtag: Shrd -Description: Sharada -Description: Śāradā -Added: 2011-01-07 -%% -Type: script -Subtag: Shui -Description: Shuishu -Added: 2017-08-13 -%% -Type: script -Subtag: Sidd -Description: Siddham -Description: Siddhaṃ -Description: Siddhamātṛkā -Added: 2013-12-02 -%% -Type: script -Subtag: Sidt -Description: Sidetic -Added: 2023-10-16 -%% -Type: script -Subtag: Sind -Description: Khudawadi -Description: Sindhi -Added: 2010-08-16 -%% -Type: script -Subtag: Sinh -Description: Sinhala -Added: 2005-10-16 -%% -Type: script -Subtag: Sogd -Description: Sogdian -Added: 2017-12-13 -%% -Type: script -Subtag: Sogo -Description: Old Sogdian -Added: 2017-12-13 -%% -Type: script -Subtag: Sora -Description: Sora Sompeng -Added: 2011-01-07 -%% -Type: script -Subtag: Soyo -Description: Soyombo -Added: 2017-01-13 -%% -Type: script -Subtag: Sund -Description: Sundanese -Added: 2006-07-21 -%% -Type: script -Subtag: Sunu -Description: Sunuwar -Added: 2021-12-24 -%% -Type: script -Subtag: Sylo -Description: Syloti Nagri -Added: 2005-10-16 -%% -Type: script -Subtag: Syrc -Description: Syriac -Added: 2005-10-16 -%% -Type: script -Subtag: Syre -Description: Syriac (Estrangelo variant) -Added: 2005-10-16 -%% -Type: script -Subtag: Syrj -Description: Syriac (Western variant) -Added: 2005-10-16 -%% -Type: script -Subtag: Syrn -Description: Syriac (Eastern variant) -Added: 2005-10-16 -%% -Type: script -Subtag: Tagb -Description: Tagbanwa -Added: 2005-10-16 -%% -Type: script -Subtag: Takr -Description: Takri -Description: Ṭākrī -Description: Ṭāṅkrī -Added: 2011-01-07 -%% -Type: script -Subtag: Tale -Description: Tai Le -Added: 2005-10-16 -%% -Type: script -Subtag: Talu -Description: New Tai Lue -Added: 2005-10-16 -%% -Type: script -Subtag: Taml -Description: Tamil -Added: 2005-10-16 -%% -Type: script -Subtag: Tang -Description: Tangut -Added: 2011-01-07 -%% -Type: script -Subtag: Tavt -Description: Tai Viet -Added: 2007-12-05 -%% -Type: script -Subtag: Tayo -Description: Tai Yo -Added: 2023-10-16 -%% -Type: script -Subtag: Telu -Description: Telugu -Added: 2005-10-16 -%% -Type: script -Subtag: Teng -Description: Tengwar -Added: 2005-10-16 -%% -Type: script -Subtag: Tfng -Description: Tifinagh -Description: Berber -Added: 2005-10-16 -%% -Type: script -Subtag: Tglg -Description: Tagalog -Description: Baybayin -Description: Alibata -Added: 2005-10-16 -%% -Type: script -Subtag: Thaa -Description: Thaana -Added: 2005-10-16 -%% -Type: script -Subtag: Thai -Description: Thai -Added: 2005-10-16 -%% -Type: script -Subtag: Tibt -Description: Tibetan -Added: 2005-10-16 -%% -Type: script -Subtag: Tirh -Description: Tirhuta -Added: 2011-08-16 -%% -Type: script -Subtag: Tnsa -Description: Tangsa -Added: 2021-03-05 -%% -Type: script -Subtag: Todr -Description: Todhri -Added: 2023-10-16 -%% -Type: script -Subtag: Tols -Description: Tolong Siki -Added: 2023-10-16 -%% -Type: script -Subtag: Toto -Description: Toto -Added: 2020-05-12 -%% -Type: script -Subtag: Tutg -Description: Tulu-Tigalari -Added: 2023-10-16 -%% -Type: script -Subtag: Ugar -Description: Ugaritic -Added: 2005-10-16 -%% -Type: script -Subtag: Vaii -Description: Vai -Added: 2005-10-16 -%% -Type: script -Subtag: Visp -Description: Visible Speech -Added: 2005-10-16 -%% -Type: script -Subtag: Vith -Description: Vithkuqi -Added: 2021-03-05 -%% -Type: script -Subtag: Wara -Description: Warang Citi -Description: Varang Kshiti -Added: 2009-12-09 -%% -Type: script -Subtag: Wcho -Description: Wancho -Added: 2017-08-13 -%% -Type: script -Subtag: Wole -Description: Woleai -Added: 2011-01-07 -%% -Type: script -Subtag: Xpeo -Description: Old Persian -Added: 2005-10-16 -%% -Type: script -Subtag: Xsux -Description: Sumero-Akkadian cuneiform -Added: 2005-10-16 -%% -Type: script -Subtag: Yezi -Description: Yezidi -Added: 2019-09-11 -%% -Type: script -Subtag: Yiii -Description: Yi -Added: 2005-10-16 -%% -Type: script -Subtag: Zanb -Description: Zanabazar Square -Description: Zanabazarin Dörböljin Useg -Description: Xewtee Dörböljin Bicig -Description: Horizontal Square Script -Added: 2017-01-13 -%% -Type: script -Subtag: Zinh -Description: Code for inherited script -Added: 2009-04-03 -Comments: Not intended for use as a language subtag -%% -Type: script -Subtag: Zmth -Description: Mathematical notation -Added: 2007-12-05 -%% -Type: script -Subtag: Zsye -Description: Symbols (Emoji variant) -Added: 2016-01-04 -%% -Type: script -Subtag: Zsym -Description: Symbols -Added: 2007-12-05 -%% -Type: script -Subtag: Zxxx -Description: Code for unwritten documents -Added: 2005-10-16 -%% -Type: script -Subtag: Zyyy -Description: Code for undetermined script -Added: 2005-10-16 -%% -Type: script -Subtag: Zzzz -Description: Code for uncoded script -Added: 2005-10-16 -%% -Type: region -Subtag: AA -Description: Private use -Added: 2005-10-16 -%% -Type: region -Subtag: AC -Description: Ascension Island -Added: 2009-07-29 -%% -Type: region -Subtag: AD -Description: Andorra -Added: 2005-10-16 -%% -Type: region -Subtag: AE -Description: United Arab Emirates -Added: 2005-10-16 -%% -Type: region -Subtag: AF -Description: Afghanistan -Added: 2005-10-16 -%% -Type: region -Subtag: AG -Description: Antigua and Barbuda -Added: 2005-10-16 -%% -Type: region -Subtag: AI -Description: Anguilla -Added: 2005-10-16 -%% -Type: region -Subtag: AL -Description: Albania -Added: 2005-10-16 -%% -Type: region -Subtag: AM -Description: Armenia -Added: 2005-10-16 -%% -Type: region -Subtag: AN -Description: Netherlands Antilles -Added: 2005-10-16 -Deprecated: 2011-01-07 -Comments: see BQ, CW, and SX -%% -Type: region -Subtag: AO -Description: Angola -Added: 2005-10-16 -%% -Type: region -Subtag: AQ -Description: Antarctica -Added: 2005-10-16 -%% -Type: region -Subtag: AR -Description: Argentina -Added: 2005-10-16 -%% -Type: region -Subtag: AS -Description: American Samoa -Added: 2005-10-16 -%% -Type: region -Subtag: AT -Description: Austria -Added: 2005-10-16 -%% -Type: region -Subtag: AU -Description: Australia -Added: 2005-10-16 -%% -Type: region -Subtag: AW -Description: Aruba -Added: 2005-10-16 -%% -Type: region -Subtag: AX -Description: Åland Islands -Added: 2005-10-16 -%% -Type: region -Subtag: AZ -Description: Azerbaijan -Added: 2005-10-16 -%% -Type: region -Subtag: BA -Description: Bosnia and Herzegovina -Added: 2005-10-16 -%% -Type: region -Subtag: BB -Description: Barbados -Added: 2005-10-16 -%% -Type: region -Subtag: BD -Description: Bangladesh -Added: 2005-10-16 -%% -Type: region -Subtag: BE -Description: Belgium -Added: 2005-10-16 -%% -Type: region -Subtag: BF -Description: Burkina Faso -Added: 2005-10-16 -%% -Type: region -Subtag: BG -Description: Bulgaria -Added: 2005-10-16 -%% -Type: region -Subtag: BH -Description: Bahrain -Added: 2005-10-16 -%% -Type: region -Subtag: BI -Description: Burundi -Added: 2005-10-16 -%% -Type: region -Subtag: BJ -Description: Benin -Added: 2005-10-16 -%% -Type: region -Subtag: BL -Description: Saint Barthélemy -Added: 2007-11-02 -%% -Type: region -Subtag: BM -Description: Bermuda -Added: 2005-10-16 -%% -Type: region -Subtag: BN -Description: Brunei Darussalam -Added: 2005-10-16 -%% -Type: region -Subtag: BO -Description: Bolivia -Added: 2005-10-16 -%% -Type: region -Subtag: BQ -Description: Bonaire, Sint Eustatius and Saba -Added: 2011-01-07 -%% -Type: region -Subtag: BR -Description: Brazil -Added: 2005-10-16 -%% -Type: region -Subtag: BS -Description: Bahamas -Added: 2005-10-16 -%% -Type: region -Subtag: BT -Description: Bhutan -Added: 2005-10-16 -%% -Type: region -Subtag: BU -Description: Burma -Added: 2005-10-16 -Deprecated: 1989-12-05 -Preferred-Value: MM -%% -Type: region -Subtag: BV -Description: Bouvet Island -Added: 2005-10-16 -%% -Type: region -Subtag: BW -Description: Botswana -Added: 2005-10-16 -%% -Type: region -Subtag: BY -Description: Belarus -Added: 2005-10-16 -%% -Type: region -Subtag: BZ -Description: Belize -Added: 2005-10-16 -%% -Type: region -Subtag: CA -Description: Canada -Added: 2005-10-16 -%% -Type: region -Subtag: CC -Description: Cocos (Keeling) Islands -Added: 2005-10-16 -%% -Type: region -Subtag: CD -Description: The Democratic Republic of the Congo -Added: 2005-10-16 -%% -Type: region -Subtag: CF -Description: Central African Republic -Added: 2005-10-16 -%% -Type: region -Subtag: CG -Description: Congo -Added: 2005-10-16 -%% -Type: region -Subtag: CH -Description: Switzerland -Added: 2005-10-16 -%% -Type: region -Subtag: CI -Description: Côte d'Ivoire -Added: 2005-10-16 -%% -Type: region -Subtag: CK -Description: Cook Islands -Added: 2005-10-16 -%% -Type: region -Subtag: CL -Description: Chile -Added: 2005-10-16 -%% -Type: region -Subtag: CM -Description: Cameroon -Added: 2005-10-16 -%% -Type: region -Subtag: CN -Description: China -Added: 2005-10-16 -%% -Type: region -Subtag: CO -Description: Colombia -Added: 2005-10-16 -%% -Type: region -Subtag: CP -Description: Clipperton Island -Added: 2009-07-29 -%% -Type: region -Subtag: CQ -Description: Sark -Added: 2023-02-07 -%% -Type: region -Subtag: CR -Description: Costa Rica -Added: 2005-10-16 -%% -Type: region -Subtag: CS -Description: Serbia and Montenegro -Added: 2005-10-16 -Deprecated: 2006-10-05 -Comments: see RS for Serbia or ME for Montenegro -%% -Type: region -Subtag: CU -Description: Cuba -Added: 2005-10-16 -%% -Type: region -Subtag: CV -Description: Cabo Verde -Description: Cape Verde -Added: 2005-10-16 -%% -Type: region -Subtag: CW -Description: Curaçao -Added: 2011-01-07 -%% -Type: region -Subtag: CX -Description: Christmas Island -Added: 2005-10-16 -%% -Type: region -Subtag: CY -Description: Cyprus -Added: 2005-10-16 -%% -Type: region -Subtag: CZ -Description: Czechia -Description: Czech Republic -Added: 2005-10-16 -%% -Type: region -Subtag: DD -Description: German Democratic Republic -Added: 2005-10-16 -Deprecated: 1990-10-30 -Preferred-Value: DE -%% -Type: region -Subtag: DE -Description: Germany -Added: 2005-10-16 -%% -Type: region -Subtag: DG -Description: Diego Garcia -Added: 2009-07-29 -%% -Type: region -Subtag: DJ -Description: Djibouti -Added: 2005-10-16 -%% -Type: region -Subtag: DK -Description: Denmark -Added: 2005-10-16 -%% -Type: region -Subtag: DM -Description: Dominica -Added: 2005-10-16 -%% -Type: region -Subtag: DO -Description: Dominican Republic -Added: 2005-10-16 -%% -Type: region -Subtag: DZ -Description: Algeria -Added: 2005-10-16 -%% -Type: region -Subtag: EA -Description: Ceuta, Melilla -Added: 2009-07-29 -%% -Type: region -Subtag: EC -Description: Ecuador -Added: 2005-10-16 -%% -Type: region -Subtag: EE -Description: Estonia -Added: 2005-10-16 -%% -Type: region -Subtag: EG -Description: Egypt -Added: 2005-10-16 -%% -Type: region -Subtag: EH -Description: Western Sahara -Added: 2005-10-16 -%% -Type: region -Subtag: ER -Description: Eritrea -Added: 2005-10-16 -%% -Type: region -Subtag: ES -Description: Spain -Added: 2005-10-16 -%% -Type: region -Subtag: ET -Description: Ethiopia -Added: 2005-10-16 -%% -Type: region -Subtag: EU -Description: European Union -Added: 2009-07-29 -%% -Type: region -Subtag: EZ -Description: Eurozone -Added: 2016-07-14 -%% -Type: region -Subtag: FI -Description: Finland -Added: 2005-10-16 -%% -Type: region -Subtag: FJ -Description: Fiji -Added: 2005-10-16 -%% -Type: region -Subtag: FK -Description: Falkland Islands (Malvinas) -Added: 2005-10-16 -%% -Type: region -Subtag: FM -Description: Federated States of Micronesia -Added: 2005-10-16 -%% -Type: region -Subtag: FO -Description: Faroe Islands -Added: 2005-10-16 -%% -Type: region -Subtag: FR -Description: France -Added: 2005-10-16 -%% -Type: region -Subtag: FX -Description: Metropolitan France -Added: 2005-10-16 -Deprecated: 1997-07-14 -Preferred-Value: FR -%% -Type: region -Subtag: GA -Description: Gabon -Added: 2005-10-16 -%% -Type: region -Subtag: GB -Description: United Kingdom -Added: 2005-10-16 -Comments: as of 2006-03-29 GB no longer includes the Channel Islands and - Isle of Man; see GG, JE, IM -%% -Type: region -Subtag: GD -Description: Grenada -Added: 2005-10-16 -%% -Type: region -Subtag: GE -Description: Georgia -Added: 2005-10-16 -%% -Type: region -Subtag: GF -Description: French Guiana -Added: 2005-10-16 -%% -Type: region -Subtag: GG -Description: Guernsey -Added: 2006-03-29 -%% -Type: region -Subtag: GH -Description: Ghana -Added: 2005-10-16 -%% -Type: region -Subtag: GI -Description: Gibraltar -Added: 2005-10-16 -%% -Type: region -Subtag: GL -Description: Greenland -Added: 2005-10-16 -%% -Type: region -Subtag: GM -Description: Gambia -Added: 2005-10-16 -%% -Type: region -Subtag: GN -Description: Guinea -Added: 2005-10-16 -%% -Type: region -Subtag: GP -Description: Guadeloupe -Added: 2005-10-16 -%% -Type: region -Subtag: GQ -Description: Equatorial Guinea -Added: 2005-10-16 -%% -Type: region -Subtag: GR -Description: Greece -Added: 2005-10-16 -%% -Type: region -Subtag: GS -Description: South Georgia and the South Sandwich Islands -Added: 2005-10-16 -%% -Type: region -Subtag: GT -Description: Guatemala -Added: 2005-10-16 -%% -Type: region -Subtag: GU -Description: Guam -Added: 2005-10-16 -%% -Type: region -Subtag: GW -Description: Guinea-Bissau -Added: 2005-10-16 -%% -Type: region -Subtag: GY -Description: Guyana -Added: 2005-10-16 -%% -Type: region -Subtag: HK -Description: Hong Kong -Added: 2005-10-16 -%% -Type: region -Subtag: HM -Description: Heard Island and McDonald Islands -Added: 2005-10-16 -%% -Type: region -Subtag: HN -Description: Honduras -Added: 2005-10-16 -%% -Type: region -Subtag: HR -Description: Croatia -Added: 2005-10-16 -%% -Type: region -Subtag: HT -Description: Haiti -Added: 2005-10-16 -%% -Type: region -Subtag: HU -Description: Hungary -Added: 2005-10-16 -%% -Type: region -Subtag: IC -Description: Canary Islands -Added: 2009-07-29 -%% -Type: region -Subtag: ID -Description: Indonesia -Added: 2005-10-16 -%% -Type: region -Subtag: IE -Description: Ireland -Added: 2005-10-16 -%% -Type: region -Subtag: IL -Description: Israel -Added: 2005-10-16 -%% -Type: region -Subtag: IM -Description: Isle of Man -Added: 2006-03-29 -%% -Type: region -Subtag: IN -Description: India -Added: 2005-10-16 -%% -Type: region -Subtag: IO -Description: British Indian Ocean Territory -Added: 2005-10-16 -%% -Type: region -Subtag: IQ -Description: Iraq -Added: 2005-10-16 -%% -Type: region -Subtag: IR -Description: Islamic Republic of Iran -Added: 2005-10-16 -%% -Type: region -Subtag: IS -Description: Iceland -Added: 2005-10-16 -%% -Type: region -Subtag: IT -Description: Italy -Added: 2005-10-16 -%% -Type: region -Subtag: JE -Description: Jersey -Added: 2006-03-29 -%% -Type: region -Subtag: JM -Description: Jamaica -Added: 2005-10-16 -%% -Type: region -Subtag: JO -Description: Jordan -Added: 2005-10-16 -%% -Type: region -Subtag: JP -Description: Japan -Added: 2005-10-16 -%% -Type: region -Subtag: KE -Description: Kenya -Added: 2005-10-16 -%% -Type: region -Subtag: KG -Description: Kyrgyzstan -Added: 2005-10-16 -%% -Type: region -Subtag: KH -Description: Cambodia -Added: 2005-10-16 -%% -Type: region -Subtag: KI -Description: Kiribati -Added: 2005-10-16 -%% -Type: region -Subtag: KM -Description: Comoros -Added: 2005-10-16 -%% -Type: region -Subtag: KN -Description: Saint Kitts and Nevis -Added: 2005-10-16 -%% -Type: region -Subtag: KP -Description: Democratic People's Republic of Korea -Added: 2005-10-16 -%% -Type: region -Subtag: KR -Description: Republic of Korea -Added: 2005-10-16 -%% -Type: region -Subtag: KW -Description: Kuwait -Added: 2005-10-16 -%% -Type: region -Subtag: KY -Description: Cayman Islands -Added: 2005-10-16 -%% -Type: region -Subtag: KZ -Description: Kazakhstan -Added: 2005-10-16 -%% -Type: region -Subtag: LA -Description: Lao People's Democratic Republic -Added: 2005-10-16 -%% -Type: region -Subtag: LB -Description: Lebanon -Added: 2005-10-16 -%% -Type: region -Subtag: LC -Description: Saint Lucia -Added: 2005-10-16 -%% -Type: region -Subtag: LI -Description: Liechtenstein -Added: 2005-10-16 -%% -Type: region -Subtag: LK -Description: Sri Lanka -Added: 2005-10-16 -%% -Type: region -Subtag: LR -Description: Liberia -Added: 2005-10-16 -%% -Type: region -Subtag: LS -Description: Lesotho -Added: 2005-10-16 -%% -Type: region -Subtag: LT -Description: Lithuania -Added: 2005-10-16 -%% -Type: region -Subtag: LU -Description: Luxembourg -Added: 2005-10-16 -%% -Type: region -Subtag: LV -Description: Latvia -Added: 2005-10-16 -%% -Type: region -Subtag: LY -Description: Libya -Added: 2005-10-16 -%% -Type: region -Subtag: MA -Description: Morocco -Added: 2005-10-16 -%% -Type: region -Subtag: MC -Description: Monaco -Added: 2005-10-16 -%% -Type: region -Subtag: MD -Description: Moldova -Added: 2005-10-16 -%% -Type: region -Subtag: ME -Description: Montenegro -Added: 2006-10-05 -%% -Type: region -Subtag: MF -Description: Saint Martin (French part) -Added: 2007-11-02 -%% -Type: region -Subtag: MG -Description: Madagascar -Added: 2005-10-16 -%% -Type: region -Subtag: MH -Description: Marshall Islands -Added: 2005-10-16 -%% -Type: region -Subtag: MK -Description: North Macedonia -Added: 2005-10-16 -%% -Type: region -Subtag: ML -Description: Mali -Added: 2005-10-16 -%% -Type: region -Subtag: MM -Description: Myanmar -Added: 2005-10-16 -%% -Type: region -Subtag: MN -Description: Mongolia -Added: 2005-10-16 -%% -Type: region -Subtag: MO -Description: Macao -Added: 2005-10-16 -%% -Type: region -Subtag: MP -Description: Northern Mariana Islands -Added: 2005-10-16 -%% -Type: region -Subtag: MQ -Description: Martinique -Added: 2005-10-16 -%% -Type: region -Subtag: MR -Description: Mauritania -Added: 2005-10-16 -%% -Type: region -Subtag: MS -Description: Montserrat -Added: 2005-10-16 -%% -Type: region -Subtag: MT -Description: Malta -Added: 2005-10-16 -%% -Type: region -Subtag: MU -Description: Mauritius -Added: 2005-10-16 -%% -Type: region -Subtag: MV -Description: Maldives -Added: 2005-10-16 -%% -Type: region -Subtag: MW -Description: Malawi -Added: 2005-10-16 -%% -Type: region -Subtag: MX -Description: Mexico -Added: 2005-10-16 -%% -Type: region -Subtag: MY -Description: Malaysia -Added: 2005-10-16 -%% -Type: region -Subtag: MZ -Description: Mozambique -Added: 2005-10-16 -%% -Type: region -Subtag: NA -Description: Namibia -Added: 2005-10-16 -%% -Type: region -Subtag: NC -Description: New Caledonia -Added: 2005-10-16 -%% -Type: region -Subtag: NE -Description: Niger -Added: 2005-10-16 -%% -Type: region -Subtag: NF -Description: Norfolk Island -Added: 2005-10-16 -%% -Type: region -Subtag: NG -Description: Nigeria -Added: 2005-10-16 -%% -Type: region -Subtag: NI -Description: Nicaragua -Added: 2005-10-16 -%% -Type: region -Subtag: NL -Description: Netherlands -Added: 2005-10-16 -%% -Type: region -Subtag: NO -Description: Norway -Added: 2005-10-16 -%% -Type: region -Subtag: NP -Description: Nepal -Added: 2005-10-16 -%% -Type: region -Subtag: NR -Description: Nauru -Added: 2005-10-16 -%% -Type: region -Subtag: NT -Description: Neutral Zone -Added: 2005-10-16 -Deprecated: 1993-07-12 -%% -Type: region -Subtag: NU -Description: Niue -Added: 2005-10-16 -%% -Type: region -Subtag: NZ -Description: New Zealand -Added: 2005-10-16 -%% -Type: region -Subtag: OM -Description: Oman -Added: 2005-10-16 -%% -Type: region -Subtag: PA -Description: Panama -Added: 2005-10-16 -%% -Type: region -Subtag: PE -Description: Peru -Added: 2005-10-16 -%% -Type: region -Subtag: PF -Description: French Polynesia -Added: 2005-10-16 -%% -Type: region -Subtag: PG -Description: Papua New Guinea -Added: 2005-10-16 -%% -Type: region -Subtag: PH -Description: Philippines -Added: 2005-10-16 -%% -Type: region -Subtag: PK -Description: Pakistan -Added: 2005-10-16 -%% -Type: region -Subtag: PL -Description: Poland -Added: 2005-10-16 -%% -Type: region -Subtag: PM -Description: Saint Pierre and Miquelon -Added: 2005-10-16 -%% -Type: region -Subtag: PN -Description: Pitcairn -Added: 2005-10-16 -%% -Type: region -Subtag: PR -Description: Puerto Rico -Added: 2005-10-16 -%% -Type: region -Subtag: PS -Description: State of Palestine -Added: 2005-10-16 -%% -Type: region -Subtag: PT -Description: Portugal -Added: 2005-10-16 -%% -Type: region -Subtag: PW -Description: Palau -Added: 2005-10-16 -%% -Type: region -Subtag: PY -Description: Paraguay -Added: 2005-10-16 -%% -Type: region -Subtag: QA -Description: Qatar -Added: 2005-10-16 -%% -Type: region -Subtag: QM..QZ -Description: Private use -Added: 2005-10-16 -%% -Type: region -Subtag: RE -Description: Réunion -Added: 2005-10-16 -%% -Type: region -Subtag: RO -Description: Romania -Added: 2005-10-16 -%% -Type: region -Subtag: RS -Description: Serbia -Added: 2006-10-05 -%% -Type: region -Subtag: RU -Description: Russian Federation -Added: 2005-10-16 -%% -Type: region -Subtag: RW -Description: Rwanda -Added: 2005-10-16 -%% -Type: region -Subtag: SA -Description: Saudi Arabia -Added: 2005-10-16 -%% -Type: region -Subtag: SB -Description: Solomon Islands -Added: 2005-10-16 -%% -Type: region -Subtag: SC -Description: Seychelles -Added: 2005-10-16 -%% -Type: region -Subtag: SD -Description: Sudan -Added: 2005-10-16 -%% -Type: region -Subtag: SE -Description: Sweden -Added: 2005-10-16 -%% -Type: region -Subtag: SG -Description: Singapore -Added: 2005-10-16 -%% -Type: region -Subtag: SH -Description: Saint Helena, Ascension and Tristan da Cunha -Added: 2005-10-16 -%% -Type: region -Subtag: SI -Description: Slovenia -Added: 2005-10-16 -%% -Type: region -Subtag: SJ -Description: Svalbard and Jan Mayen -Added: 2005-10-16 -%% -Type: region -Subtag: SK -Description: Slovakia -Added: 2005-10-16 -%% -Type: region -Subtag: SL -Description: Sierra Leone -Added: 2005-10-16 -%% -Type: region -Subtag: SM -Description: San Marino -Added: 2005-10-16 -%% -Type: region -Subtag: SN -Description: Senegal -Added: 2005-10-16 -%% -Type: region -Subtag: SO -Description: Somalia -Added: 2005-10-16 -%% -Type: region -Subtag: SR -Description: Suriname -Added: 2005-10-16 -%% -Type: region -Subtag: SS -Description: South Sudan -Added: 2011-08-25 -%% -Type: region -Subtag: ST -Description: Sao Tome and Principe -Added: 2005-10-16 -%% -Type: region -Subtag: SU -Description: Union of Soviet Socialist Republics -Added: 2005-10-16 -Deprecated: 1992-08-30 -%% -Type: region -Subtag: SV -Description: El Salvador -Added: 2005-10-16 -%% -Type: region -Subtag: SX -Description: Sint Maarten (Dutch part) -Added: 2011-01-07 -%% -Type: region -Subtag: SY -Description: Syrian Arab Republic -Added: 2005-10-16 -%% -Type: region -Subtag: SZ -Description: Eswatini -Description: eSwatini -Description: Swaziland -Added: 2005-10-16 -%% -Type: region -Subtag: TA -Description: Tristan da Cunha -Added: 2009-07-29 -%% -Type: region -Subtag: TC -Description: Turks and Caicos Islands -Added: 2005-10-16 -%% -Type: region -Subtag: TD -Description: Chad -Added: 2005-10-16 -%% -Type: region -Subtag: TF -Description: French Southern Territories -Added: 2005-10-16 -%% -Type: region -Subtag: TG -Description: Togo -Added: 2005-10-16 -%% -Type: region -Subtag: TH -Description: Thailand -Added: 2005-10-16 -%% -Type: region -Subtag: TJ -Description: Tajikistan -Added: 2005-10-16 -%% -Type: region -Subtag: TK -Description: Tokelau -Added: 2005-10-16 -%% -Type: region -Subtag: TL -Description: Timor-Leste -Added: 2005-10-16 -%% -Type: region -Subtag: TM -Description: Turkmenistan -Added: 2005-10-16 -%% -Type: region -Subtag: TN -Description: Tunisia -Added: 2005-10-16 -%% -Type: region -Subtag: TO -Description: Tonga -Added: 2005-10-16 -%% -Type: region -Subtag: TP -Description: East Timor -Added: 2005-10-16 -Deprecated: 2002-05-20 -Preferred-Value: TL -%% -Type: region -Subtag: TR -Description: Türkiye -Description: Turkey -Added: 2005-10-16 -%% -Type: region -Subtag: TT -Description: Trinidad and Tobago -Added: 2005-10-16 -%% -Type: region -Subtag: TV -Description: Tuvalu -Added: 2005-10-16 -%% -Type: region -Subtag: TW -Description: Taiwan, Province of China -Added: 2005-10-16 -%% -Type: region -Subtag: TZ -Description: United Republic of Tanzania -Added: 2005-10-16 -%% -Type: region -Subtag: UA -Description: Ukraine -Added: 2005-10-16 -%% -Type: region -Subtag: UG -Description: Uganda -Added: 2005-10-16 -%% -Type: region -Subtag: UM -Description: United States Minor Outlying Islands -Added: 2005-10-16 -%% -Type: region -Subtag: UN -Description: United Nations -Added: 2016-07-14 -%% -Type: region -Subtag: US -Description: United States -Added: 2005-10-16 -%% -Type: region -Subtag: UY -Description: Uruguay -Added: 2005-10-16 -%% -Type: region -Subtag: UZ -Description: Uzbekistan -Added: 2005-10-16 -%% -Type: region -Subtag: VA -Description: Holy See (Vatican City State) -Added: 2005-10-16 -%% -Type: region -Subtag: VC -Description: Saint Vincent and the Grenadines -Added: 2005-10-16 -%% -Type: region -Subtag: VE -Description: Venezuela -Added: 2005-10-16 -%% -Type: region -Subtag: VG -Description: British Virgin Islands -Added: 2005-10-16 -%% -Type: region -Subtag: VI -Description: U.S. Virgin Islands -Added: 2005-10-16 -%% -Type: region -Subtag: VN -Description: Viet Nam -Added: 2005-10-16 -%% -Type: region -Subtag: VU -Description: Vanuatu -Added: 2005-10-16 -%% -Type: region -Subtag: WF -Description: Wallis and Futuna -Added: 2005-10-16 -%% -Type: region -Subtag: WS -Description: Samoa -Added: 2005-10-16 -%% -Type: region -Subtag: XA..XZ -Description: Private use -Added: 2005-10-16 -%% -Type: region -Subtag: YD -Description: Democratic Yemen -Added: 2005-10-16 -Deprecated: 1990-08-14 -Preferred-Value: YE -%% -Type: region -Subtag: YE -Description: Yemen -Added: 2005-10-16 -%% -Type: region -Subtag: YT -Description: Mayotte -Added: 2005-10-16 -%% -Type: region -Subtag: YU -Description: Yugoslavia -Added: 2005-10-16 -Deprecated: 2003-07-23 -Comments: see BA, HR, ME, MK, RS, or SI -%% -Type: region -Subtag: ZA -Description: South Africa -Added: 2005-10-16 -%% -Type: region -Subtag: ZM -Description: Zambia -Added: 2005-10-16 -%% -Type: region -Subtag: ZR -Description: Zaire -Added: 2005-10-16 -Deprecated: 1997-07-14 -Preferred-Value: CD -%% -Type: region -Subtag: ZW -Description: Zimbabwe -Added: 2005-10-16 -%% -Type: region -Subtag: ZZ -Description: Private use -Added: 2005-10-16 -%% -Type: region -Subtag: 001 -Description: World -Added: 2005-10-16 -%% -Type: region -Subtag: 002 -Description: Africa -Added: 2005-10-16 -%% -Type: region -Subtag: 003 -Description: North America -Added: 2010-08-16 -Comments: Includes Northern America (021), Caribbean (029), and Central - America (013); see also 021 -%% -Type: region -Subtag: 005 -Description: South America -Added: 2005-10-16 -%% -Type: region -Subtag: 009 -Description: Oceania -Added: 2005-10-16 -%% -Type: region -Subtag: 011 -Description: Western Africa -Added: 2005-10-16 -%% -Type: region -Subtag: 013 -Description: Central America -Added: 2005-10-16 -%% -Type: region -Subtag: 014 -Description: Eastern Africa -Added: 2005-10-16 -%% -Type: region -Subtag: 015 -Description: Northern Africa -Added: 2005-10-16 -%% -Type: region -Subtag: 017 -Description: Middle Africa -Added: 2005-10-16 -%% -Type: region -Subtag: 018 -Description: Southern Africa -Added: 2005-10-16 -%% -Type: region -Subtag: 019 -Description: Americas -Added: 2005-10-16 -%% -Type: region -Subtag: 021 -Description: Northern America -Added: 2005-10-16 -Comments: Does not include Caribbean (029) or Central America (013); see - also 003 -%% -Type: region -Subtag: 029 -Description: Caribbean -Added: 2005-10-16 -%% -Type: region -Subtag: 030 -Description: Eastern Asia -Added: 2005-10-16 -%% -Type: region -Subtag: 034 -Description: Southern Asia -Added: 2005-10-16 -%% -Type: region -Subtag: 035 -Description: South-Eastern Asia -Added: 2005-10-16 -%% -Type: region -Subtag: 039 -Description: Southern Europe -Added: 2005-10-16 -%% -Type: region -Subtag: 053 -Description: Australia and New Zealand -Added: 2005-10-16 -%% -Type: region -Subtag: 054 -Description: Melanesia -Added: 2005-10-16 -%% -Type: region -Subtag: 057 -Description: Micronesia -Added: 2005-10-16 -%% -Type: region -Subtag: 061 -Description: Polynesia -Added: 2005-10-16 -%% -Type: region -Subtag: 142 -Description: Asia -Added: 2005-10-16 -%% -Type: region -Subtag: 143 -Description: Central Asia -Added: 2005-10-16 -%% -Type: region -Subtag: 145 -Description: Western Asia -Added: 2005-10-16 -%% -Type: region -Subtag: 150 -Description: Europe -Added: 2005-10-16 -%% -Type: region -Subtag: 151 -Description: Eastern Europe -Added: 2005-10-16 -%% -Type: region -Subtag: 154 -Description: Northern Europe -Added: 2005-10-16 -%% -Type: region -Subtag: 155 -Description: Western Europe -Added: 2005-10-16 -%% -Type: region -Subtag: 202 -Description: Sub-Saharan Africa -Added: 2017-04-18 -%% -Type: region -Subtag: 419 -Description: Latin America and the Caribbean -Added: 2005-10-16 -%% -Type: variant -Subtag: 1606nict -Description: Late Middle French (to 1606) -Added: 2007-03-20 -Prefix: frm -Comments: 16th century French as in Jean Nicot, "Thresor de la langue - francoyse", 1606, but also including some French similar to that of - Rabelais -%% -Type: variant -Subtag: 1694acad -Description: Early Modern French -Added: 2007-03-20 -Prefix: fr -Comments: 17th century French, as catalogued in the "Dictionnaire de - l'académie françoise", 4eme ed. 1694; frequently includes - elements of Middle French, as this is a transitional period -%% -Type: variant -Subtag: 1901 -Description: Traditional German orthography -Added: 2005-10-16 -Prefix: de -%% -Type: variant -Subtag: 1959acad -Description: "Academic" ("governmental") variant of Belarusian as - codified in 1959 -Added: 2008-09-30 -Prefix: be -%% -Type: variant -Subtag: 1994 -Description: Standardized Resian orthography -Added: 2007-07-28 -Prefix: sl-rozaj -Prefix: sl-rozaj-biske -Prefix: sl-rozaj-njiva -Prefix: sl-rozaj-osojs -Prefix: sl-rozaj-solba -Comments: For standardized Resian an orthography was published in 1994. -%% -Type: variant -Subtag: 1996 -Description: German orthography of 1996 -Added: 2005-10-16 -Prefix: de -%% -Type: variant -Subtag: abl1943 -Description: Orthographic formulation of 1943 - Official in Brazil - (Formulário Ortográfico de 1943 - Oficial no Brasil) -Added: 2015-05-06 -Prefix: pt-BR -Comments: Denotes conventions established by the Academia Brasileira de - Letras in 1943 and generally used in Brazil until 2009 -%% -Type: variant -Subtag: akhmimic -Description: Akhmimic dialect of Coptic -Added: 2025-07-14 -Prefix: cop -%% -Type: variant -Subtag: akuapem -Description: Akuapem Twi -Added: 2017-06-05 -Prefix: tw -%% -Type: variant -Subtag: alalc97 -Description: ALA-LC Romanization, 1997 edition -Added: 2009-12-09 -Comments: Romanizations recommended by the American Library Association - and the Library of Congress, in "ALA-LC Romanization Tables: - Transliteration Schemes for Non-Roman Scripts" (1997), ISBN - 978-0-8444-0940-5. -%% -Type: variant -Subtag: aluku -Description: Aluku dialect -Description: Boni dialect -Added: 2009-09-05 -Prefix: djk -Comments: Aluku dialect of the "Busi Nenge Tongo" English-based Creole - continuum in Eastern Suriname and Western French Guiana -%% -Type: variant -Subtag: anpezo -Description: Anpezo standard of Ladin -Added: 2024-03-04 -Prefix: lld -Comments: Represents the standard written form of Ladin in Anpezo -%% -Type: variant -Subtag: ao1990 -Description: Portuguese Language Orthographic Agreement of 1990 (Acordo - Ortográfico da Língua Portuguesa de 1990) -Added: 2015-05-06 -Prefix: pt -Prefix: gl -Comments: Portuguese orthography conventions established in 1990 but - not brought into effect until 2009 -%% -Type: variant -Subtag: aranes -Description: Aranese -Added: 2018-04-22 -Prefix: oc -Comments: Occitan variant spoken in the Val d'Aran -%% -Type: variant -Subtag: arevela -Description: Eastern Armenian -Added: 2006-09-18 -Deprecated: 2018-03-24 -Prefix: hy -Comments: Preferred tag is hy -%% -Type: variant -Subtag: arevmda -Description: Western Armenian -Added: 2006-09-18 -Deprecated: 2018-03-24 -Prefix: hy -Comments: Preferred tag is hyw -%% -Type: variant -Subtag: arkaika -Description: Arcaicam Esperantom -Description: Arkaika Esperanto -Added: 2020-12-17 -Prefix: eo -Comments: Archaic Esperanto variant devised by Manuel Halvelik -%% -Type: variant -Subtag: asante -Description: Asante Twi -Description: Ashanti Twi -Added: 2017-06-05 -Prefix: tw -%% -Type: variant -Subtag: auvern -Description: Auvergnat -Added: 2018-04-22 -Prefix: oc -Comments: Occitan variant spoken in Auvergne -%% -Type: variant -Subtag: baku1926 -Description: Unified Turkic Latin Alphabet (Historical) -Added: 2007-04-18 -Prefix: az -Prefix: ba -Prefix: crh -Prefix: kk -Prefix: krc -Prefix: ky -Prefix: sah -Prefix: tk -Prefix: tt -Prefix: uz -Comments: Denotes alphabet used in Turkic republics/regions of the - former USSR in late 1920s, and throughout 1930s, which aspired to - represent equivalent phonemes in a unified fashion. Also known as: New - Turkic Alphabet; Birlәşdirilmiş Jeni Tyrk - Әlifbasь (Birlesdirilmis Jeni Tyrk Elifbasi); - Jaŋalif (Janalif). -%% -Type: variant -Subtag: balanka -Description: The Balanka dialect of Anii -Added: 2014-02-15 -Prefix: blo -Comments: Balanka is one of 19 Anii dialects. -%% -Type: variant -Subtag: barla -Description: The Barlavento dialect group of Kabuverdianu -Prefix: kea -Comments: Barlavento is one of the two main dialect groups of - Kabuverdianu. -Added: 2013-12-10 -%% -Type: variant -Subtag: basiceng -Description: Basic English -Added: 2015-12-29 -Prefix: en -%% -Type: variant -Subtag: bauddha -Description: Buddhist Hybrid Sanskrit -Added: 2010-07-28 -Prefix: sa -%% -Type: variant -Subtag: bciav -Description: BCI Blissymbolics AV -Added: 2023-05-11 -Prefix: zbl -Comments: Name given to a subset of the variety of Blissymbolics curated - by Blissymbolics Communication International, as represented by - entries in the BCI Authorized Vocabulary -%% -Type: variant -Subtag: bcizbl -Description: BCI Blissymbolics -Added: 2023-05-11 -Prefix: zbl -Comments: Name given to the variety of Blissymbolics curated by - Blissymbolics Communication International -%% -Type: variant -Subtag: biscayan -Description: Biscayan dialect of Basque -Added: 2010-04-13 -Prefix: eu -%% -Type: variant -Subtag: biske -Description: The San Giorgio dialect of Resian -Description: The Bila dialect of Resian -Added: 2007-07-05 -Prefix: sl-rozaj -Comments: The dialect of San Giorgio/Bila is one of the four major local - dialects of Resian -%% -Type: variant -Subtag: blasl -Description: Black American Sign Language dialect -Added: 2023-07-31 -Prefix: ase -Prefix: sgn-ase -Comments: Black American Sign Language (BASL) or Black Sign Variation - (BSV) is a dialect of American Sign Language (ASL) -%% -Type: variant -Subtag: bohairic -Description: Bohairic dialect of Coptic -Added: 2025-07-14 -Prefix: cop -%% -Type: variant -Subtag: bohoric -Description: Slovene in Bohorič alphabet -Added: 2012-06-27 -Prefix: sl -Comments: The subtag represents the alphabet codified by Adam Bohorič - in 1584 and used from the first printed Slovene book and up to the - mid-19th century. -%% -Type: variant -Subtag: boont -Description: Boontling -Added: 2006-09-18 -Prefix: en -Comments: Jargon embedded in American English -%% -Type: variant -Subtag: bornholm -Description: Bornholmsk -Added: 2019-03-27 -Prefix: da -%% -Type: variant -Subtag: cisaup -Description: Cisalpine -Added: 2018-04-22 -Prefix: oc -Comments: Occitan variant spoken in northwestern Italy -%% -Type: variant -Subtag: colb1945 -Description: Portuguese-Brazilian Orthographic Convention of 1945 - (Convenção Ortográfica Luso-Brasileira de 1945) -Added: 2015-05-06 -Prefix: pt -Comments: Portuguese orthography conventions established in 1945, - generally in effect until 2009. This reform was not ratified in - Brazil. -%% -Type: variant -Subtag: cornu -Description: Cornu-English -Description: Cornish English -Description: Anglo-Cornish -Added: 2015-12-07 -Prefix: en -%% -Type: variant -Subtag: creiss -Description: Occitan variants of the Croissant area -Added: 2018-04-22 -Prefix: oc -%% -Type: variant -Subtag: dajnko -Description: Slovene in Dajnko alphabet -Added: 2012-06-27 -Prefix: sl -Comments: The subtag represents the alphabet codified by Peter Dajnko - and used from 1824 to 1839 mostly in Styria (in what is now Eastern - Slovenia). -%% -Type: variant -Subtag: ekavsk -Description: Serbian with Ekavian pronunciation -Prefix: sr -Prefix: sr-Latn -Prefix: sr-Cyrl -Added: 2013-12-02 -%% -Type: variant -Subtag: emodeng -Description: Early Modern English (1500-1700) -Added: 2012-02-05 -Prefix: en -%% -Type: variant -Subtag: fascia -Description: Fascia standard of Ladin -Added: 2024-03-04 -Prefix: lld -Comments: Represents the standard written form of Ladin in Fascia which - unified the three subvarieties Cazet, Brach and Moenat -%% -Type: variant -Subtag: fayyumic -Description: Fayyumic dialect of Coptic -Added: 2025-07-14 -Prefix: cop -%% -Type: variant -Subtag: fodom -Description: Fodom standard of Ladin -Added: 2024-03-04 -Prefix: lld -Comments: Represents the standard written form of Ladin in Livinallongo - and Colle Santa Lucia -%% -Type: variant -Subtag: fonipa -Description: International Phonetic Alphabet -Added: 2006-12-11 -%% -Type: variant -Subtag: fonkirsh -Description: Kirshenbaum Phonetic Alphabet -Added: 2018-04-22 -%% -Type: variant -Subtag: fonnapa -Description: North American Phonetic Alphabet -Description: Americanist Phonetic Notation -Added: 2016-06-24 -%% -Type: variant -Subtag: fonupa -Description: Uralic Phonetic Alphabet -Added: 2006-12-11 -%% -Type: variant -Subtag: fonxsamp -Description: X-SAMPA transcription -Added: 2010-10-23 -Comments: Indicates that the content is transcribed according to X-SAMPA -%% -Type: variant -Subtag: gallo -Description: Gallo -Added: 2021-08-05 -Prefix: fr -%% -Type: variant -Subtag: gascon -Description: Gascon -Added: 2018-04-22 -Prefix: oc -Comments: Occitan variant spoken in Gascony -%% -Type: variant -Subtag: gherd -Description: Gherdëina standard of Ladin -Added: 2024-03-04 -Prefix: lld -Comments: Represents the standard written form of Ladin in Gherdëina -%% -Type: variant -Subtag: grclass -Description: Classical Occitan orthography -Added: 2018-04-22 -Prefix: oc -Prefix: oc-aranes -Prefix: oc-auvern -Prefix: oc-cisaup -Prefix: oc-creiss -Prefix: oc-gascon -Prefix: oc-lemosin -Prefix: oc-lengadoc -Prefix: oc-nicard -Prefix: oc-provenc -Prefix: oc-vivaraup -Comments: Classical written standard for Occitan developed in 1935 by - Alibèrt -%% -Type: variant -Subtag: grital -Description: Italian-inspired Occitan orthography -Added: 2018-04-22 -Prefix: oc -Prefix: oc-cisaup -Prefix: oc-nicard -Prefix: oc-provenc -%% -Type: variant -Subtag: grmistr -Description: Mistralian or Mistralian-inspired Occitan orthography -Added: 2018-04-22 -Prefix: oc -Prefix: oc-aranes -Prefix: oc-auvern -Prefix: oc-cisaup -Prefix: oc-creiss -Prefix: oc-gascon -Prefix: oc-lemosin -Prefix: oc-lengadoc -Prefix: oc-nicard -Prefix: oc-provenc -Prefix: oc-vivaraup -Comments: Written standard developed by Romanilha in 1853 and used by - Mistral and the Félibres, including derived standards such as Escolo - dóu Po, Escolo Gaston Febus, and others -%% -Type: variant -Subtag: hanoi -Description: The Hà Nội variant of Vietnamese -Added: 2025-03-10 -Prefix: vi -%% -Type: variant -Subtag: hepburn -Description: Hepburn romanization -Added: 2009-10-01 -Prefix: ja-Latn -%% -Type: variant -Subtag: heploc -Description: Hepburn romanization, Library of Congress method -Added: 2009-10-01 -Deprecated: 2010-02-07 -Preferred-Value: alalc97 -Prefix: ja-Latn-hepburn -Comments: Preferred tag is ja-Latn-alalc97 -%% -Type: variant -Subtag: hognorsk -Description: Norwegian in Høgnorsk (High Norwegian) orthography -Added: 2010-01-02 -Prefix: nn -Comments: Norwegian following Ivar Aasen's orthographical principles, - including modern usage. -%% -Type: variant -Subtag: hsistemo -Description: Standard H-system orthographic fallback for spelling - Esperanto -Added: 2017-03-14 -Prefix: eo -%% -Type: variant -Subtag: huett -Description: The Huế (province Thừa Thiên) variant of Vietnamese -Added: 2025-03-10 -Prefix: vi -%% -Type: variant -Subtag: ijekavsk -Description: Serbian with Ijekavian pronunciation -Prefix: sr -Prefix: sr-Latn -Prefix: sr-Cyrl -Added: 2013-12-02 -%% -Type: variant -Subtag: itihasa -Description: Epic Sanskrit -Added: 2010-07-28 -Prefix: sa -%% -Type: variant -Subtag: ivanchov -Description: Bulgarian in 1899 orthography -Added: 2017-12-13 -Prefix: bg -Comments: Bulgarian orthography introduced by Todor Ivanchov in 1899 -%% -Type: variant -Subtag: jauer -Description: Jauer dialect of Romansh -Added: 2010-06-29 -Prefix: rm -Comments: The spoken dialect of the Val Müstair, which has no written - standard. -%% -Type: variant -Subtag: jyutping -Description: Jyutping Cantonese Romanization -Added: 2010-10-23 -Prefix: yue -Comments: Jyutping romanization of Cantonese -%% -Type: variant -Subtag: kkcor -Description: Common Cornish orthography of Revived Cornish -Added: 2008-10-14 -Prefix: kw -%% -Type: variant -Subtag: kleinsch -Description: Kleinschmidt orthography -Description: Allattaasitaamut -Added: 2024-07-20 -Prefix: kl -Prefix: kl-tunumiit -Comments: Orthography for Greenlandic designed by Samuel Kleinschmidt, - used from 1851 to 1973. -%% -Type: variant -Subtag: kociewie -Description: The Kociewie dialect of Polish -Added: 2014-11-27 -Prefix: pl -Comments: The dialect of Kociewie is spoken in the region around - Starogard Gdański, Tczew and Świecie in northern Poland. -%% -Type: variant -Subtag: kscor -Description: Standard Cornish orthography of Revived Cornish -Description: Kernowek Standard -Added: 2012-06-27 -Prefix: kw -%% -Type: variant -Subtag: laukika -Description: Classical Sanskrit -Added: 2010-07-28 -Deprecated: 2024-06-08 -Prefix: sa -Comments: Preferred tag is cls -%% -Type: variant -Subtag: leidentr -Description: Ancient Egyptian in Leiden Unified Transliteration -Added: 2025-02-06 -Prefix: egy -Comments: Recommended by the International Association of Egyptologists -%% -Type: variant -Subtag: lemosin -Description: Limousin -Added: 2018-04-22 -Prefix: oc -Comments: Occitan variant spoken in Limousin -%% -Type: variant -Subtag: lengadoc -Description: Languedocien -Added: 2018-04-22 -Prefix: oc -Comments: Occitan variant spoken in Languedoc -%% -Type: variant -Subtag: lipaw -Description: The Lipovaz dialect of Resian -Description: The Lipovec dialect of Resian -Added: 2007-08-11 -Prefix: sl-rozaj -Comments: The dialect of Lipovaz/Lipovec is one of the minor local - dialects of Resian -%% -Type: variant -Subtag: ltg1929 -Description: The Latgalian language orthography codified in 1929 -Added: 2022-08-05 -Prefix: ltg -%% -Type: variant -Subtag: ltg2007 -Description: The Latgalian language orthography codified in the language - law in 2007 -Added: 2022-06-23 -Prefix: ltg -%% -Type: variant -Subtag: luna1918 -Description: Post-1917 Russian orthography -Added: 2010-10-10 -Prefix: ru -Comments: Russian orthography as established by the 1917/1918 - orthographic reforms -%% -Type: variant -Subtag: lycopol -Description: Lycopolitan alias Subakhmimic dialect of Coptic -Added: 2025-07-14 -Prefix: cop -%% -Type: variant -Subtag: mdcegyp -Description: Ancient Egyptian hieroglyphs encoded in Manuel de Codage -Added: 2025-02-06 -Prefix: egy -%% -Type: variant -Subtag: mdctrans -Description: Ancient Egyptian transliteration encoded in Manuel de - Codage -Added: 2025-02-06 -Prefix: egy -%% -Type: variant -Subtag: mesokem -Description: Mesokemic alias Oxyrhynchite dialect of Coptic -Added: 2025-07-14 -Prefix: cop -%% -Type: variant -Subtag: metelko -Description: Slovene in Metelko alphabet -Added: 2012-06-27 -Prefix: sl -Comments: The subtag represents the alphabet codified by Franc Serafin - Metelko and used from 1825 to 1833. -%% -Type: variant -Subtag: moderat -Description: The moderate (conservative, i.e. Danish-like) spelling - variant of Bokmål -Added: 2026-04-21 -Prefix: nb -%% -Type: variant -Subtag: monoton -Description: Monotonic Greek -Added: 2006-12-11 -Prefix: el -%% -Type: variant -Subtag: ndyuka -Description: Ndyuka dialect -Description: Aukan dialect -Added: 2009-09-05 -Prefix: djk -Comments: Ndyuka dialect of the "Busi Nenge Tongo" English-based - Creole continuum in Eastern Suriname and Western French Guiana -%% -Type: variant -Subtag: nedis -Description: Natisone dialect -Description: Nadiza dialect -Added: 2005-10-16 -Prefix: sl -%% -Type: variant -Subtag: newfound -Description: Newfoundland English -Added: 2015-11-25 -Prefix: en-CA -%% -Type: variant -Subtag: nicard -Description: Niçard -Added: 2018-04-22 -Prefix: oc -Comments: Occitan variant spoken in Nice -%% -Type: variant -Subtag: njiva -Description: The Gniva dialect of Resian -Description: The Njiva dialect of Resian -Added: 2007-07-05 -Prefix: sl-rozaj -Comments: The dialect of Gniva/Njiva is one of the four major local - dialects of Resian -%% -Type: variant -Subtag: nulik -Description: Volapük nulik -Description: Volapük perevidöl -Description: Volapük nulädik -Description: de Jong's Volapük -Description: New Volapük -Description: Revised Volapük -Description: Modern Volapük -Added: 2012-01-28 -Prefix: vo -%% -Type: variant -Subtag: osojs -Description: The Oseacco dialect of Resian -Description: The Osojane dialect of Resian -Added: 2007-07-05 -Prefix: sl-rozaj -Comments: The dialect of Oseacco/Osojane is one of the four major local - dialects of Resian -%% -Type: variant -Subtag: oxendict -Description: Oxford English Dictionary spelling -Added: 2015-04-17 -Prefix: en -%% -Type: variant -Subtag: pahawh2 -Description: Pahawh Hmong Second Stage Reduced orthography -Added: 2017-01-13 -Prefix: mww -Prefix: hnj -%% -Type: variant -Subtag: pahawh3 -Description: Pahawh Hmong Third Stage Reduced orthography -Added: 2017-01-13 -Prefix: mww -Prefix: hnj -%% -Type: variant -Subtag: pahawh4 -Description: Pahawh Hmong Final Version orthography -Added: 2017-01-13 -Prefix: mww -Prefix: hnj -%% -Type: variant -Subtag: pamaka -Description: Pamaka dialect -Added: 2009-09-05 -Prefix: djk -Comments: Pamaka dialect of the "Busi Nenge Tongo" English-based - Creole continuum in Eastern Suriname and Western French Guiana -%% -Type: variant -Subtag: peano -Description: Latino Sine Flexione -Description: Interlingua de API -Description: Interlingua de Peano -Prefix: la -Comments: Peano’s Interlingua, created in 1903 by Giuseppe Peano as an - international auxiliary language -Added: 2020-03-12 -%% -Type: variant -Subtag: pehoeji -Description: Hokkien Vernacular Romanization System -Description: Pe̍h-ōe-jī orthography/romanization -Added: 2024-03-04 -Prefix: nan-Latn -Comments: Modern Hokkien Vernacular Romanization System, evolved from - the New Dictionary in the Amoy by John Van Nest Talmage in 1894 -%% -Type: variant -Subtag: petr1708 -Description: Petrine orthography -Added: 2010-10-10 -Prefix: ru -Comments: Russian orthography from the Petrine orthographic reforms of - 1708 to the 1917 orthographic reform -%% -Type: variant -Subtag: pinyin -Description: Pinyin romanization -Added: 2008-10-14 -Prefix: zh-Latn -Prefix: bo-Latn -%% -Type: variant -Subtag: polyton -Description: Polytonic Greek -Added: 2006-12-11 -Prefix: el -%% -Type: variant -Subtag: provenc -Description: Provençal -Added: 2018-04-22 -Prefix: oc -Comments: Occitan variant spoken in Provence -%% -Type: variant -Subtag: puter -Description: Puter idiom of Romansh -Added: 2010-06-29 -Prefix: rm -Comments: Puter is one of the five traditional written standards or - "idioms" of the Romansh language. -%% -Type: variant -Subtag: radikalt -Description: Radical (i.e. Nynorsk-like) spelling variant of Bokmål -Added: 2026-04-21 -Prefix: nb -%% -Type: variant -Subtag: rigik -Description: Volapük rigik -Description: Schleyer's Volapük -Description: Original Volapük -Description: Classic Volapük -Added: 2012-01-28 -Prefix: vo -%% -Type: variant -Subtag: rozaj -Description: Resian -Description: Resianic -Description: Rezijan -Added: 2005-10-16 -Prefix: sl -%% -Type: variant -Subtag: rumgr -Description: Rumantsch Grischun -Added: 2010-06-29 -Prefix: rm -Comments: Supraregional Romansh written standard -%% -Type: variant -Subtag: sahidic -Description: Sahidic dialect of Coptic -Added: 2025-07-14 -Prefix: cop -%% -Type: variant -Subtag: saigon -Description: The Sài Gòn variant of Vietnamese -Added: 2025-03-10 -Prefix: vi -%% -Type: variant -Subtag: scotland -Description: Scottish Standard English -Added: 2007-08-31 -Prefix: en -%% -Type: variant -Subtag: scouse -Description: Scouse -Added: 2006-09-18 -Prefix: en -Comments: English Liverpudlian dialect known as 'Scouse' -%% -Type: variant -Subtag: simple -Description: Simplified form -Added: 2015-12-29 -%% -Type: variant -Subtag: slepe -Description: Sorbian dialect of Schleife -Added: 2026-04-09 -Prefix: dsb -Comments: Spoken in the Free State of Saxony in Germany -%% -Type: variant -Subtag: solba -Description: The Stolvizza dialect of Resian -Description: The Solbica dialect of Resian -Added: 2007-07-05 -Prefix: sl-rozaj -Comments: The dialect of Stolvizza/Solbica is one of the four major - local dialects of Resian -%% -Type: variant -Subtag: sotav -Description: The Sotavento dialect group of Kabuverdianu -Prefix: kea -Comments: Sotavento is one of the two main dialect groups of - Kabuverdianu. -Added: 2013-12-10 -%% -Type: variant -Subtag: spanglis -Description: Spanglish -Added: 2017-02-23 -Prefix: en -Prefix: es -Comments: A variety of contact dialects of English and Spanish -%% -Type: variant -Subtag: stadi -Description: The "Stadin slangi" dialect of Finnish -Added: 2026-04-09 -Prefix: fi -Comments: "Stadi" means the city of Helsinki in the dialect. -%% -Type: variant -Subtag: surmiran -Description: Surmiran idiom of Romansh -Added: 2010-06-29 -Prefix: rm -Comments: Surmiran is one of the five traditional written standards or - "idioms" of the Romansh language. -%% -Type: variant -Subtag: sursilv -Description: Sursilvan idiom of Romansh -Added: 2010-06-29 -Prefix: rm -Comments: Sursilvan is one of the five traditional written standards or - "idioms" of the Romansh language. -%% -Type: variant -Subtag: sutsilv -Description: Sutsilvan idiom of Romansh -Added: 2010-06-29 -Prefix: rm -Comments: Sutsilvan is one of the five traditional written standards or - "idioms" of the Romansh language. -%% -Type: variant -Subtag: synnejyl -Description: Synnejysk -Description: South Jutish -Added: 2021-07-17 -Prefix: da -%% -Type: variant -Subtag: taglish -Description: Tagalog-English code-switching -Added: 2026-04-09 -Prefix: en -Prefix: tl -Prefix: fil -Comments: This subtag represents Taglish, wherever it is different from - straight Tagalog or straight English. -%% -Type: variant -Subtag: tailo -Description: Taiwanese Hokkien Romanization System for Hokkien - languages -Description: Tâi-lô orthography/romanization -Added: 2024-03-04 -Prefix: nan-Latn -Comments: Taiwanese Hokkien Romanization System (Tâi-lô) published in - 2006 by the Taiwan Ministry of Education -%% -Type: variant -Subtag: tarask -Description: Belarusian in Taraskievica orthography -Added: 2007-04-27 -Prefix: be -Comments: The subtag represents Branislau Taraskievic's Belarusian - orthography as published in "Bielaruski klasycny pravapis" by Juras - Buslakou, Vincuk Viacorka, Zmicier Sanko, and Zmicier Sauka (Vilnia- - Miensk 2005). -%% -Type: variant -Subtag: tongyong -Description: Tongyong Pinyin romanization -Added: 2020-06-08 -Prefix: zh-Latn -Comments: Former official transcription standard for Mandarin Chinese in - Taiwan. -%% -Type: variant -Subtag: tunumiit -Description: Tunumiisiut -Description: East Greenlandic -Description: Østgrønlandsk -Added: 2020-07-16 -Prefix: kl -Comments: Also known as Tunumiit oraasiat -%% -Type: variant -Subtag: uccor -Description: Unified Cornish orthography of Revived Cornish -Added: 2008-10-14 -Prefix: kw -%% -Type: variant -Subtag: ucrcor -Description: Unified Cornish Revised orthography of Revived Cornish -Added: 2008-10-14 -Prefix: kw -%% -Type: variant -Subtag: ulster -Description: Ulster dialect of Scots -Added: 2010-04-10 -Prefix: sco -%% -Type: variant -Subtag: unifon -Description: Unifon phonetic alphabet -Added: 2013-10-02 -Prefix: en -Prefix: hup -Prefix: kyh -Prefix: tol -Prefix: yur -%% -Type: variant -Subtag: vaidika -Description: Vedic Sanskrit -Added: 2010-07-28 -Deprecated: 2024-06-08 -Prefix: sa -Comments: The most ancient dialect of Sanskrit used in verse and prose - composed until about the 4th century B.C.E. -Comments: Preferred tag is vsn -%% -Type: variant -Subtag: valbadia -Description: Val Badia standard of Ladin -Added: 2024-03-04 -Prefix: lld -Comments: Represents the standard written form of Ladin in the Val - Badia, unifying the three variants Marô, Mesaval and Badiot spoken - in this valley -%% -Type: variant -Subtag: valencia -Description: Valencian -Added: 2007-03-06 -Prefix: ca -Comments: Variety spoken in the "Comunidad Valenciana" region of Spain, - where it is co-official with Spanish. -%% -Type: variant -Subtag: vallader -Description: Vallader idiom of Romansh -Added: 2010-06-29 -Prefix: rm -Comments: Vallader is one of the five traditional written standards or - "idioms" of the Romansh language. -%% -Type: variant -Subtag: vecdruka -Description: Latvian orthography used before 1920s ("vecā druka") -Added: 2020-09-26 -Prefix: lv -Comments: The subtag represents the old orthography of the Latvian - language used during c. 1600s–1920s. -%% -Type: variant -Subtag: viennese -Description: The Viennese dialect of German -Added: 2025-06-22 -Prefix: de -%% -Type: variant -Subtag: vivaraup -Description: Vivaro-Alpine -Added: 2018-04-22 -Prefix: oc -Comments: Occitan variant spoken in northeastern Occitania -%% -Type: variant -Subtag: wadegile -Description: Wade-Giles romanization -Added: 2008-10-03 -Prefix: zh-Latn -%% -Type: variant -Subtag: xsistemo -Description: Standard X-system orthographic fallback for spelling - Esperanto -Added: 2017-03-14 -Prefix: eo -%% -Type: grandfathered -Tag: art-lojban -Description: Lojban -Added: 2001-11-11 -Deprecated: 2003-09-02 -Preferred-Value: jbo -%% -Type: grandfathered -Tag: cel-gaulish -Description: Gaulish -Added: 2001-05-25 -Deprecated: 2015-03-29 -Comments: see xcg, xga, xtg -%% -Type: grandfathered -Tag: en-GB-oed -Description: English, Oxford English Dictionary spelling -Added: 2003-07-09 -Deprecated: 2015-04-17 -Preferred-Value: en-GB-oxendict -%% -Type: grandfathered -Tag: i-ami -Description: Amis -Added: 1999-05-25 -Deprecated: 2009-07-29 -Preferred-Value: ami -%% -Type: grandfathered -Tag: i-bnn -Description: Bunun -Added: 1999-05-25 -Deprecated: 2009-07-29 -Preferred-Value: bnn -%% -Type: grandfathered -Tag: i-default -Description: Default Language -Added: 1998-03-10 -%% -Type: grandfathered -Tag: i-enochian -Description: Enochian -Added: 2002-07-03 -Deprecated: 2015-03-29 -%% -Type: grandfathered -Tag: i-hak -Description: Hakka -Added: 1999-01-31 -Deprecated: 2000-01-10 -Preferred-Value: hak -%% -Type: grandfathered -Tag: i-klingon -Description: Klingon -Added: 1999-05-26 -Deprecated: 2004-02-24 -Preferred-Value: tlh -%% -Type: grandfathered -Tag: i-lux -Description: Luxembourgish -Added: 1997-09-19 -Deprecated: 1998-09-09 -Preferred-Value: lb -%% -Type: grandfathered -Tag: i-mingo -Description: Mingo -Added: 1997-09-19 -%% -Type: grandfathered -Tag: i-navajo -Description: Navajo -Added: 1997-09-19 -Deprecated: 2000-02-18 -Preferred-Value: nv -%% -Type: grandfathered -Tag: i-pwn -Description: Paiwan -Added: 1999-05-25 -Deprecated: 2009-07-29 -Preferred-Value: pwn -%% -Type: grandfathered -Tag: i-tao -Description: Tao -Added: 1999-05-25 -Deprecated: 2009-07-29 -Preferred-Value: tao -%% -Type: grandfathered -Tag: i-tay -Description: Tayal -Added: 1999-05-25 -Deprecated: 2009-07-29 -Preferred-Value: tay -%% -Type: grandfathered -Tag: i-tsu -Description: Tsou -Added: 1999-05-25 -Deprecated: 2009-07-29 -Preferred-Value: tsu -%% -Type: grandfathered -Tag: no-bok -Description: Norwegian Bokmal -Added: 1995-08-23 -Deprecated: 2000-02-18 -Preferred-Value: nb -%% -Type: grandfathered -Tag: no-nyn -Description: Norwegian Nynorsk -Added: 1995-08-23 -Deprecated: 2000-02-18 -Preferred-Value: nn -%% -Type: grandfathered -Tag: sgn-BE-FR -Description: Belgian-French Sign Language -Added: 2001-11-11 -Deprecated: 2009-07-29 -Preferred-Value: sfb -%% -Type: grandfathered -Tag: sgn-BE-NL -Description: Belgian-Flemish Sign Language -Added: 2001-11-11 -Deprecated: 2009-07-29 -Preferred-Value: vgt -%% -Type: grandfathered -Tag: sgn-CH-DE -Description: Swiss German Sign Language -Added: 2001-11-11 -Deprecated: 2009-07-29 -Preferred-Value: sgg -%% -Type: grandfathered -Tag: zh-guoyu -Description: Mandarin or Standard Chinese -Added: 1999-12-18 -Deprecated: 2005-07-15 -Preferred-Value: cmn -%% -Type: grandfathered -Tag: zh-hakka -Description: Hakka -Added: 1999-12-18 -Deprecated: 2009-07-29 -Preferred-Value: hak -%% -Type: grandfathered -Tag: zh-min -Description: Min, Fuzhou, Hokkien, Amoy, or Taiwanese -Added: 1999-12-18 -Deprecated: 2009-07-29 -Comments: see cdo, cpx, czo, mnp, nan -%% -Type: grandfathered -Tag: zh-min-nan -Description: Minnan, Hokkien, Amoy, Taiwanese, Southern Min, Southern - Fujian, Hoklo, Southern Fukien, Ho-lo -Added: 2001-03-26 -Deprecated: 2009-07-29 -Preferred-Value: nan -%% -Type: grandfathered -Tag: zh-xiang -Description: Xiang or Hunanese -Added: 1999-12-18 -Deprecated: 2009-07-29 -Preferred-Value: hsn -%% -Type: redundant -Tag: az-Arab -Description: Azerbaijani in Arabic script -Added: 2003-05-30 -%% -Type: redundant -Tag: az-Cyrl -Description: Azerbaijani in Cyrillic script -Added: 2003-05-30 -%% -Type: redundant -Tag: az-Latn -Description: Azerbaijani in Latin script -Added: 2003-05-30 -%% -Type: redundant -Tag: be-Latn -Description: Belarusian in Latin script -Added: 2005-01-06 -%% -Type: redundant -Tag: bs-Cyrl -Description: Bosnian in Cyrillic script -Added: 2005-02-17 -%% -Type: redundant -Tag: bs-Latn -Description: Bosnian in Latin script -Added: 2005-02-17 -%% -Type: redundant -Tag: de-1901 -Description: German, traditional orthography -Added: 2001-07-17 -%% -Type: redundant -Tag: de-1996 -Description: German, orthography of 1996 -Added: 2001-07-17 -%% -Type: redundant -Tag: de-AT-1901 -Description: German, Austrian variant, traditional orthography -Added: 2001-07-17 -%% -Type: redundant -Tag: de-AT-1996 -Description: German, Austrian variant, orthography of 1996 -Added: 2001-07-17 -%% -Type: redundant -Tag: de-CH-1901 -Description: German, Swiss variant, traditional orthography -Added: 2001-07-17 -%% -Type: redundant -Tag: de-CH-1996 -Description: German, Swiss variant, orthography of 1996 -Added: 2001-07-17 -%% -Type: redundant -Tag: de-DE-1901 -Description: German, German variant, traditional orthography -Added: 2001-07-17 -%% -Type: redundant -Tag: de-DE-1996 -Description: German, German variant, orthography of 1996 -Added: 2001-07-17 -%% -Type: redundant -Tag: en-boont -Description: Boontling -Added: 2003-02-14 -%% -Type: redundant -Tag: en-scouse -Description: Scouse -Added: 2000-05-25 -%% -Type: redundant -Tag: es-419 -Description: Latin American Spanish -Added: 2005-07-15 -%% -Type: redundant -Tag: iu-Cans -Description: Inuktitut in Canadian Aboriginal Syllabic script -Added: 2005-02-17 -%% -Type: redundant -Tag: iu-Latn -Description: Inuktitut in Latin script -Added: 2005-02-17 -%% -Type: redundant -Tag: mn-Cyrl -Description: Mongolian in Cyrillic script -Added: 2005-02-17 -%% -Type: redundant -Tag: mn-Mong -Description: Mongolian in Mongolian script -Added: 2005-02-17 -%% -Type: redundant -Tag: sgn-BR -Description: Brazilian Sign Language -Added: 2001-11-11 -Deprecated: 2009-07-29 -Preferred-Value: bzs -%% -Type: redundant -Tag: sgn-CO -Description: Colombian Sign Language -Added: 2001-11-11 -Deprecated: 2009-07-29 -Preferred-Value: csn -%% -Type: redundant -Tag: sgn-DE -Description: German Sign Language -Added: 2001-11-11 -Deprecated: 2009-07-29 -Preferred-Value: gsg -%% -Type: redundant -Tag: sgn-DK -Description: Danish Sign Language -Added: 2001-11-11 -Deprecated: 2009-07-29 -Preferred-Value: dsl -%% -Type: redundant -Tag: sgn-ES -Description: Spanish Sign Language -Added: 2001-11-11 -Deprecated: 2009-07-29 -Preferred-Value: ssp -%% -Type: redundant -Tag: sgn-FR -Description: French Sign Language -Added: 2001-11-11 -Deprecated: 2009-07-29 -Preferred-Value: fsl -%% -Type: redundant -Tag: sgn-GB -Description: British Sign Language -Added: 2001-03-02 -Deprecated: 2009-07-29 -Preferred-Value: bfi -%% -Type: redundant -Tag: sgn-GR -Description: Greek Sign Language -Added: 2001-11-11 -Deprecated: 2009-07-29 -Preferred-Value: gss -%% -Type: redundant -Tag: sgn-IE -Description: Irish Sign Language -Added: 2001-03-02 -Deprecated: 2009-07-29 -Preferred-Value: isg -%% -Type: redundant -Tag: sgn-IT -Description: Italian Sign Language -Added: 2001-11-11 -Deprecated: 2009-07-29 -Preferred-Value: ise -%% -Type: redundant -Tag: sgn-JP -Description: Japanese Sign Language -Added: 2001-11-11 -Deprecated: 2009-07-29 -Preferred-Value: jsl -%% -Type: redundant -Tag: sgn-MX -Description: Mexican Sign Language -Added: 2001-11-11 -Deprecated: 2009-07-29 -Preferred-Value: mfs -%% -Type: redundant -Tag: sgn-NI -Description: Nicaraguan Sign Language -Added: 2001-03-02 -Deprecated: 2009-07-29 -Preferred-Value: ncs -%% -Type: redundant -Tag: sgn-NL -Description: Dutch Sign Language -Added: 2001-11-11 -Deprecated: 2009-07-29 -Preferred-Value: dse -%% -Type: redundant -Tag: sgn-NO -Description: Norwegian Sign Language -Added: 2001-11-11 -Deprecated: 2009-07-29 -Preferred-Value: nsl -%% -Type: redundant -Tag: sgn-PT -Description: Portuguese Sign Language -Added: 2001-11-11 -Deprecated: 2009-07-29 -Preferred-Value: psr -%% -Type: redundant -Tag: sgn-SE -Description: Swedish Sign Language -Added: 2001-11-11 -Deprecated: 2009-07-29 -Preferred-Value: swl -%% -Type: redundant -Tag: sgn-US -Description: American Sign Language -Added: 2001-03-02 -Deprecated: 2009-07-29 -Preferred-Value: ase -%% -Type: redundant -Tag: sgn-ZA -Description: South African Sign Language -Added: 2001-11-11 -Deprecated: 2009-07-29 -Preferred-Value: sfs -%% -Type: redundant -Tag: sl-nedis -Description: Natisone dialect, Nadiza dialect -Added: 2004-06-01 -%% -Type: redundant -Tag: sl-rozaj -Description: Resian, Resianic, Rezijan -Added: 2003-10-09 -%% -Type: redundant -Tag: sr-Cyrl -Description: Serbian in Cyrillic script -Added: 2003-05-30 -%% -Type: redundant -Tag: sr-Latn -Description: Serbian in Latin script -Added: 2003-05-30 -%% -Type: redundant -Tag: tg-Arab -Description: Tajik in Arabic script -Added: 2005-02-17 -%% -Type: redundant -Tag: tg-Cyrl -Description: Tajik in Cyrillic script -Added: 2005-02-17 -%% -Type: redundant -Tag: uz-Cyrl -Description: Uzbek in Cyrillic script -Added: 2003-05-30 -%% -Type: redundant -Tag: uz-Latn -Description: Uzbek in Latin script -Added: 2003-05-30 -%% -Type: redundant -Tag: yi-Latn -Description: Yiddish, in Latin script -Added: 2003-01-07 -%% -Type: redundant -Tag: zh-cmn -Description: Mandarin Chinese -Added: 2005-07-15 -Deprecated: 2009-07-29 -Preferred-Value: cmn -%% -Type: redundant -Tag: zh-cmn-Hans -Description: Mandarin Chinese (Simplified) -Added: 2005-07-15 -Deprecated: 2009-07-29 -Preferred-Value: cmn-Hans -%% -Type: redundant -Tag: zh-cmn-Hant -Description: Mandarin Chinese (Traditional) -Added: 2005-07-15 -Deprecated: 2009-07-29 -Preferred-Value: cmn-Hant -%% -Type: redundant -Tag: zh-gan -Description: Kan or Gan -Added: 1999-12-18 -Deprecated: 2009-07-29 -Preferred-Value: gan -%% -Type: redundant -Tag: zh-Hans -Description: simplified Chinese -Added: 2003-05-30 -%% -Type: redundant -Tag: zh-Hans-CN -Description: PRC Mainland Chinese in simplified script -Added: 2005-04-13 -%% -Type: redundant -Tag: zh-Hans-HK -Description: Hong Kong Chinese in simplified script -Added: 2005-04-11 -%% -Type: redundant -Tag: zh-Hans-MO -Description: Macao Chinese in simplified script -Added: 2005-04-11 -%% -Type: redundant -Tag: zh-Hans-SG -Description: Singapore Chinese in simplified script -Added: 2005-04-11 -%% -Type: redundant -Tag: zh-Hans-TW -Description: Taiwan Chinese in simplified script -Added: 2005-04-11 -%% -Type: redundant -Tag: zh-Hant -Description: traditional Chinese -Added: 2003-05-30 -%% -Type: redundant -Tag: zh-Hant-CN -Description: PRC Mainland Chinese in traditional script -Added: 2005-04-13 -%% -Type: redundant -Tag: zh-Hant-HK -Description: Hong Kong Chinese in traditional script -Added: 2005-04-11 -%% -Type: redundant -Tag: zh-Hant-MO -Description: Macao Chinese in traditional script -Added: 2005-04-11 -%% -Type: redundant -Tag: zh-Hant-SG -Description: Singapore Chinese in traditional script -Added: 2005-04-11 -%% -Type: redundant -Tag: zh-Hant-TW -Description: Taiwan Chinese in traditional script -Added: 2005-04-11 -%% -Type: redundant -Tag: zh-wuu -Description: Shanghaiese or Wu -Added: 1999-12-18 -Deprecated: 2009-07-29 -Preferred-Value: wuu -%% -Type: redundant -Tag: zh-yue -Description: Cantonese -Added: 1999-12-18 -Deprecated: 2009-07-29 -Preferred-Value: yue diff --git a/LanguageData/rfc5646.json b/LanguageData/rfc5646.json deleted file mode 100644 index 1e7af21..0000000 --- a/LanguageData/rfc5646.json +++ /dev/null @@ -1,105378 +0,0 @@ -{ - "FileDate": "2026-06-14", - "RecordList": [ - { - "Type": "Language", - "SubTag": "aa", - "Description": [ - "Afar" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ab", - "Description": [ - "Abkhazian" - ], - "Added": "2005-10-16", - "SuppressScript": "Cyrl", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ae", - "Description": [ - "Avestan" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "af", - "Description": [ - "Afrikaans" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ak", - "Description": [ - "Akan" - ], - "Added": "2005-10-16", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "am", - "Description": [ - "Amharic" - ], - "Added": "2005-10-16", - "SuppressScript": "Ethi", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "an", - "Description": [ - "Aragonese" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ar", - "Description": [ - "Arabic" - ], - "Added": "2005-10-16", - "SuppressScript": "Arab", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "as", - "Description": [ - "Assamese" - ], - "Added": "2005-10-16", - "SuppressScript": "Beng", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "av", - "Description": [ - "Avaric" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ay", - "Description": [ - "Aymara" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "az", - "Description": [ - "Azerbaijani" - ], - "Added": "2005-10-16", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ba", - "Description": [ - "Bashkir" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "be", - "Description": [ - "Belarusian" - ], - "Added": "2005-10-16", - "SuppressScript": "Cyrl", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bg", - "Description": [ - "Bulgarian" - ], - "Added": "2005-10-16", - "SuppressScript": "Cyrl", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bh", - "Description": [ - "Bihari languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Deprecated": "2026-06-14", - "Comments": [], - "Prefix": [], - "PreferredValue": "bih" - }, - { - "Type": "Language", - "SubTag": "bi", - "Description": [ - "Bislama" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bm", - "Description": [ - "Bambara" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bn", - "Description": [ - "Bengali", - "Bangla" - ], - "Added": "2005-10-16", - "SuppressScript": "Beng", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bo", - "Description": [ - "Tibetan" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "br", - "Description": [ - "Breton" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bs", - "Description": [ - "Bosnian" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "MacroLanguage": "sh", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ca", - "Description": [ - "Catalan", - "Valencian" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ce", - "Description": [ - "Chechen" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ch", - "Description": [ - "Chamorro" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "co", - "Description": [ - "Corsican" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cr", - "Description": [ - "Cree" - ], - "Added": "2005-10-16", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cs", - "Description": [ - "Czech" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cu", - "Description": [ - "Church Slavic", - "Church Slavonic", - "Old Bulgarian", - "Old Church Slavonic", - "Old Slavonic" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cv", - "Description": [ - "Chuvash" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cy", - "Description": [ - "Welsh" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "da", - "Description": [ - "Danish" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "de", - "Description": [ - "German" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dv", - "Description": [ - "Dhivehi", - "Divehi", - "Maldivian" - ], - "Added": "2005-10-16", - "SuppressScript": "Thaa", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dz", - "Description": [ - "Dzongkha" - ], - "Added": "2005-10-16", - "SuppressScript": "Tibt", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ee", - "Description": [ - "Ewe" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "el", - "Description": [ - "Modern Greek (1453-)" - ], - "Added": "2005-10-16", - "SuppressScript": "Grek", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "en", - "Description": [ - "English" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "eo", - "Description": [ - "Esperanto" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "es", - "Description": [ - "Spanish", - "Castilian" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "et", - "Description": [ - "Estonian" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "eu", - "Description": [ - "Basque" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fa", - "Description": [ - "Persian" - ], - "Added": "2005-10-16", - "SuppressScript": "Arab", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ff", - "Description": [ - "Fulah" - ], - "Added": "2005-10-16", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fi", - "Description": [ - "Finnish" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fj", - "Description": [ - "Fijian" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fo", - "Description": [ - "Faroese" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fr", - "Description": [ - "French" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fy", - "Description": [ - "Western Frisian" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ga", - "Description": [ - "Irish" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gd", - "Description": [ - "Scottish Gaelic", - "Gaelic" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gl", - "Description": [ - "Galician" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gn", - "Description": [ - "Guarani" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gu", - "Description": [ - "Gujarati" - ], - "Added": "2005-10-16", - "SuppressScript": "Gujr", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gv", - "Description": [ - "Manx" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ha", - "Description": [ - "Hausa" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "he", - "Description": [ - "Hebrew" - ], - "Added": "2005-10-16", - "SuppressScript": "Hebr", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hi", - "Description": [ - "Hindi" - ], - "Added": "2005-10-16", - "SuppressScript": "Deva", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ho", - "Description": [ - "Hiri Motu" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hr", - "Description": [ - "Croatian" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "MacroLanguage": "sh", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ht", - "Description": [ - "Haitian", - "Haitian Creole" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hu", - "Description": [ - "Hungarian" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hy", - "Description": [ - "Armenian" - ], - "Added": "2005-10-16", - "SuppressScript": "Armn", - "Scope": "None", - "Comments": [ - "see also hyw" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hz", - "Description": [ - "Herero" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ia", - "Description": [ - "Interlingua (IALA)", - "Interlingua (International Auxiliary Language Association)" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "id", - "Description": [ - "Indonesian" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ie", - "Description": [ - "Interlingue", - "Occidental" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ig", - "Description": [ - "Igbo" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ii", - "Description": [ - "Sichuan Yi", - "Nuosu" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ik", - "Description": [ - "Inupiaq" - ], - "Added": "2005-10-16", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "in", - "Description": [ - "Indonesian" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "MacroLanguage": "ms", - "Deprecated": "1989-01-01", - "Comments": [], - "Prefix": [], - "PreferredValue": "id" - }, - { - "Type": "Language", - "SubTag": "io", - "Description": [ - "Ido" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "is", - "Description": [ - "Icelandic" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "it", - "Description": [ - "Italian" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "iu", - "Description": [ - "Inuktitut" - ], - "Added": "2005-10-16", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "iw", - "Description": [ - "Hebrew" - ], - "Added": "2005-10-16", - "SuppressScript": "Hebr", - "Scope": "None", - "Deprecated": "1989-01-01", - "Comments": [], - "Prefix": [], - "PreferredValue": "he" - }, - { - "Type": "Language", - "SubTag": "ja", - "Description": [ - "Japanese" - ], - "Added": "2005-10-16", - "SuppressScript": "Jpan", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ji", - "Description": [ - "Yiddish" - ], - "Added": "2005-10-16", - "Scope": "None", - "Deprecated": "1989-01-01", - "Comments": [], - "Prefix": [], - "PreferredValue": "yi" - }, - { - "Type": "Language", - "SubTag": "jv", - "Description": [ - "Javanese" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jw", - "Description": [ - "Javanese" - ], - "Added": "2005-10-16", - "Scope": "None", - "Deprecated": "2001-08-13", - "Comments": [ - "published by error in Table 1 of ISO 639:1988" - ], - "Prefix": [], - "PreferredValue": "jv" - }, - { - "Type": "Language", - "SubTag": "ka", - "Description": [ - "Georgian" - ], - "Added": "2005-10-16", - "SuppressScript": "Geor", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kg", - "Description": [ - "Kongo" - ], - "Added": "2005-10-16", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ki", - "Description": [ - "Kikuyu", - "Gikuyu" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kj", - "Description": [ - "Kuanyama", - "Kwanyama" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kk", - "Description": [ - "Kazakh" - ], - "Added": "2005-10-16", - "SuppressScript": "Cyrl", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kl", - "Description": [ - "Kalaallisut", - "Greenlandic" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "km", - "Description": [ - "Khmer", - "Central Khmer" - ], - "Added": "2005-10-16", - "SuppressScript": "Khmr", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kn", - "Description": [ - "Kannada" - ], - "Added": "2005-10-16", - "SuppressScript": "Knda", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ko", - "Description": [ - "Korean" - ], - "Added": "2005-10-16", - "SuppressScript": "Kore", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kr", - "Description": [ - "Kanuri" - ], - "Added": "2005-10-16", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ks", - "Description": [ - "Kashmiri" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ku", - "Description": [ - "Kurdish" - ], - "Added": "2005-10-16", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kv", - "Description": [ - "Komi" - ], - "Added": "2005-10-16", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kw", - "Description": [ - "Cornish" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ky", - "Description": [ - "Kirghiz", - "Kyrgyz" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "la", - "Description": [ - "Latin" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lb", - "Description": [ - "Luxembourgish", - "Letzeburgesch" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lg", - "Description": [ - "Ganda", - "Luganda" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "li", - "Description": [ - "Limburgan", - "Limburger", - "Limburgish" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ln", - "Description": [ - "Lingala" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lo", - "Description": [ - "Lao" - ], - "Added": "2005-10-16", - "SuppressScript": "Laoo", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lt", - "Description": [ - "Lithuanian" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lu", - "Description": [ - "Luba-Katanga" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lv", - "Description": [ - "Latvian" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mg", - "Description": [ - "Malagasy" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mh", - "Description": [ - "Marshallese" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mi", - "Description": [ - "Maori" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mk", - "Description": [ - "Macedonian" - ], - "Added": "2005-10-16", - "SuppressScript": "Cyrl", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ml", - "Description": [ - "Malayalam" - ], - "Added": "2005-10-16", - "SuppressScript": "Mlym", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mn", - "Description": [ - "Mongolian" - ], - "Added": "2005-10-16", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mo", - "Description": [ - "Moldavian", - "Moldovan" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Deprecated": "2008-11-22", - "Comments": [], - "Prefix": [], - "PreferredValue": "ro" - }, - { - "Type": "Language", - "SubTag": "mr", - "Description": [ - "Marathi" - ], - "Added": "2005-10-16", - "SuppressScript": "Deva", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ms", - "Description": [ - "Malay (macrolanguage)" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mt", - "Description": [ - "Maltese" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "my", - "Description": [ - "Burmese" - ], - "Added": "2005-10-16", - "SuppressScript": "Mymr", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "na", - "Description": [ - "Nauru" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nb", - "Description": [ - "Norwegian Bokm\u00E5l" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "MacroLanguage": "no", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nd", - "Description": [ - "North Ndebele" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ne", - "Description": [ - "Nepali (macrolanguage)" - ], - "Added": "2005-10-16", - "SuppressScript": "Deva", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ng", - "Description": [ - "Ndonga" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nl", - "Description": [ - "Dutch", - "Flemish" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nn", - "Description": [ - "Norwegian Nynorsk" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "MacroLanguage": "no", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "no", - "Description": [ - "Norwegian" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nr", - "Description": [ - "South Ndebele" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nv", - "Description": [ - "Navajo", - "Navaho" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ny", - "Description": [ - "Chichewa", - "Chewa", - "Nyanja" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "oc", - "Description": [ - "Occitan (post 1500)" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "oj", - "Description": [ - "Ojibwa" - ], - "Added": "2005-10-16", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "om", - "Description": [ - "Oromo" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "or", - "Description": [ - "Oriya (macrolanguage)", - "Odia (macrolanguage)" - ], - "Added": "2005-10-16", - "SuppressScript": "Orya", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "os", - "Description": [ - "Iron Ossetic", - "Iron", - "Iron Ossetian", - "Ossetian", - "Ossetic" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pa", - "Description": [ - "Panjabi", - "Punjabi" - ], - "Added": "2005-10-16", - "SuppressScript": "Guru", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pi", - "Description": [ - "Pali" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pl", - "Description": [ - "Polish" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ps", - "Description": [ - "Pushto", - "Pashto" - ], - "Added": "2005-10-16", - "SuppressScript": "Arab", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pt", - "Description": [ - "Portuguese" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qu", - "Description": [ - "Quechua" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rm", - "Description": [ - "Romansh" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rn", - "Description": [ - "Rundi" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ro", - "Description": [ - "Romanian", - "Moldavian", - "Moldovan" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ru", - "Description": [ - "Russian" - ], - "Added": "2005-10-16", - "SuppressScript": "Cyrl", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rw", - "Description": [ - "Kinyarwanda" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sa", - "Description": [ - "Sanskrit" - ], - "Added": "2005-10-16", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sc", - "Description": [ - "Sardinian" - ], - "Added": "2005-10-16", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sd", - "Description": [ - "Sindhi" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "se", - "Description": [ - "Northern Sami" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sg", - "Description": [ - "Sango" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sh", - "Description": [ - "Serbo-Croatian" - ], - "Added": "2005-10-16", - "Scope": "MacroLanguage", - "Comments": [ - "sr, hr, bs are preferred for most modern uses" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "si", - "Description": [ - "Sinhala", - "Sinhalese" - ], - "Added": "2005-10-16", - "SuppressScript": "Sinh", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sk", - "Description": [ - "Slovak" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sl", - "Description": [ - "Slovenian" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sm", - "Description": [ - "Samoan" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sn", - "Description": [ - "Shona" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "so", - "Description": [ - "Somali" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sq", - "Description": [ - "Albanian" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sr", - "Description": [ - "Serbian" - ], - "Added": "2005-10-16", - "Scope": "None", - "MacroLanguage": "sh", - "Comments": [ - "see cnr for Montenegrin" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ss", - "Description": [ - "Swati" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "st", - "Description": [ - "Southern Sotho" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "su", - "Description": [ - "Sundanese" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sv", - "Description": [ - "Swedish" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sw", - "Description": [ - "Swahili (macrolanguage)" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ta", - "Description": [ - "Tamil" - ], - "Added": "2005-10-16", - "SuppressScript": "Taml", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "te", - "Description": [ - "Telugu" - ], - "Added": "2005-10-16", - "SuppressScript": "Telu", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tg", - "Description": [ - "Tajik" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "th", - "Description": [ - "Thai" - ], - "Added": "2005-10-16", - "SuppressScript": "Thai", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ti", - "Description": [ - "Tigrinya" - ], - "Added": "2005-10-16", - "SuppressScript": "Ethi", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tk", - "Description": [ - "Turkmen" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tl", - "Description": [ - "Tagalog" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tn", - "Description": [ - "Tswana" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "to", - "Description": [ - "Tonga (Tonga Islands)" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tr", - "Description": [ - "Turkish" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ts", - "Description": [ - "Tsonga" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tt", - "Description": [ - "Tatar" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tw", - "Description": [ - "Twi" - ], - "Added": "2005-10-16", - "Scope": "None", - "MacroLanguage": "ak", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ty", - "Description": [ - "Tahitian" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ug", - "Description": [ - "Uighur", - "Uyghur" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "uk", - "Description": [ - "Ukrainian" - ], - "Added": "2005-10-16", - "SuppressScript": "Cyrl", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ur", - "Description": [ - "Urdu" - ], - "Added": "2005-10-16", - "SuppressScript": "Arab", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "uz", - "Description": [ - "Uzbek" - ], - "Added": "2005-10-16", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ve", - "Description": [ - "Venda" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vi", - "Description": [ - "Vietnamese" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vo", - "Description": [ - "Volap\u00FCk" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wa", - "Description": [ - "Walloon" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wo", - "Description": [ - "Wolof" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xh", - "Description": [ - "Xhosa" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yi", - "Description": [ - "Yiddish" - ], - "Added": "2005-10-16", - "SuppressScript": "Hebr", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yo", - "Description": [ - "Yoruba" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "za", - "Description": [ - "Zhuang", - "Chuang" - ], - "Added": "2005-10-16", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zh", - "Description": [ - "Chinese" - ], - "Added": "2005-10-16", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zu", - "Description": [ - "Zulu" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aaa", - "Description": [ - "Ghotuo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aab", - "Description": [ - "Alumu-Tesu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aac", - "Description": [ - "Ari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aad", - "Description": [ - "Amal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aae", - "Description": [ - "Arb\u00EBresh\u00EB Albanian" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "sq", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aaf", - "Description": [ - "Aranadan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aag", - "Description": [ - "Ambrak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aah", - "Description": [ - "Abu\u0027 Arapesh" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aai", - "Description": [ - "Arifama-Miniafia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aak", - "Description": [ - "Ankave" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aal", - "Description": [ - "Afade" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aam", - "Description": [ - "Aramanik" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2015-02-12", - "Comments": [], - "Prefix": [], - "PreferredValue": "aas" - }, - { - "Type": "Language", - "SubTag": "aan", - "Description": [ - "Anamb\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aao", - "Description": [ - "Algerian Saharan Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aap", - "Description": [ - "Par\u00E1 Ar\u00E1ra" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aaq", - "Description": [ - "Eastern Abnaki" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aas", - "Description": [ - "Aas\u00E1x" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aat", - "Description": [ - "Arvanitika Albanian" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "sq", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aau", - "Description": [ - "Abau" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aav", - "Description": [ - "Austro-Asiatic languages" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aaw", - "Description": [ - "Solong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aax", - "Description": [ - "Mandobo Atas" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aaz", - "Description": [ - "Amarasi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aba", - "Description": [ - "Ab\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "abb", - "Description": [ - "Bankon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "abc", - "Description": [ - "Ambala Ayta" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "abd", - "Description": [ - "Manide" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "abe", - "Description": [ - "Western Abnaki" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "abf", - "Description": [ - "Abai Sungai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "abg", - "Description": [ - "Abaga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "abh", - "Description": [ - "Tajiki Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "abi", - "Description": [ - "Abidji" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "abj", - "Description": [ - "Aka-Bea" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "abl", - "Description": [ - "Lampung Nyo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "abm", - "Description": [ - "Abanyom" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "abn", - "Description": [ - "Abua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "abo", - "Description": [ - "Abon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "abp", - "Description": [ - "Abellen Ayta" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "abq", - "Description": [ - "Abaza" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "abr", - "Description": [ - "Abron" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "abs", - "Description": [ - "Ambonese Malay" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "abt", - "Description": [ - "Ambulas" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "abu", - "Description": [ - "Abure" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "abv", - "Description": [ - "Baharna Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "abw", - "Description": [ - "Pal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "abx", - "Description": [ - "Inabaknon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aby", - "Description": [ - "Aneme Wake" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "abz", - "Description": [ - "Abui" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aca", - "Description": [ - "Achagua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "acb", - "Description": [ - "\u00C1nc\u00E1" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "acd", - "Description": [ - "Gikyode" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ace", - "Description": [ - "Achinese" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "acf", - "Description": [ - "Saint Lucian Creole French" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ach", - "Description": [ - "Acoli" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aci", - "Description": [ - "Aka-Cari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ack", - "Description": [ - "Aka-Kora" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "acl", - "Description": [ - "Akar-Bale" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "acm", - "Description": [ - "Mesopotamian Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "acn", - "Description": [ - "Achang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "acp", - "Description": [ - "Eastern Acipa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "acq", - "Description": [ - "Ta\u0027izzi-Adeni Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "acr", - "Description": [ - "Achi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "acs", - "Description": [ - "Acro\u00E1" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "act", - "Description": [ - "Achterhoeks" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "acu", - "Description": [ - "Achuar-Shiwiar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "acv", - "Description": [ - "Achumawi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "acw", - "Description": [ - "Hijazi Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "acx", - "Description": [ - "Omani Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "acy", - "Description": [ - "Cypriot Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "acz", - "Description": [ - "Acheron" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ada", - "Description": [ - "Adangme" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "adb", - "Description": [ - "Atauran" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "add", - "Description": [ - "Lidzonka", - "Dzodinka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ade", - "Description": [ - "Adele" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "adf", - "Description": [ - "Dhofari Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "adg", - "Description": [ - "Andegerebinha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "adh", - "Description": [ - "Adhola" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "adi", - "Description": [ - "Adi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "adj", - "Description": [ - "Adioukrou" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "adl", - "Description": [ - "Galo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "adn", - "Description": [ - "Adang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ado", - "Description": [ - "Abu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "adp", - "Description": [ - "Adap" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2015-02-12", - "Comments": [], - "Prefix": [], - "PreferredValue": "dz" - }, - { - "Type": "Language", - "SubTag": "adq", - "Description": [ - "Adangbe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "adr", - "Description": [ - "Adonara" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ads", - "Description": [ - "Adamorobe Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "adt", - "Description": [ - "Adnyamathanha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "adu", - "Description": [ - "Aduge" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "adw", - "Description": [ - "Amundava" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "adx", - "Description": [ - "Amdo Tibetan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ady", - "Description": [ - "Adyghe", - "Adygei" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "adz", - "Description": [ - "Adzera" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aea", - "Description": [ - "Areba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aeb", - "Description": [ - "Tunisian Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aec", - "Description": [ - "Saidi Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aed", - "Description": [ - "Argentine Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aee", - "Description": [ - "Northeast Pashai", - "Northeast Pashayi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aek", - "Description": [ - "Haeke" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ael", - "Description": [ - "Ambele" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aem", - "Description": [ - "Arem" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aen", - "Description": [ - "Armenian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aeq", - "Description": [ - "Aer" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aer", - "Description": [ - "Eastern Arrernte" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aes", - "Description": [ - "Alsea" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aeu", - "Description": [ - "Akeu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aew", - "Description": [ - "Ambakich" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aey", - "Description": [ - "Amele" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aez", - "Description": [ - "Aeka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "afa", - "Description": [ - "Afro-Asiatic languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "afb", - "Description": [ - "Gulf Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "afd", - "Description": [ - "Andai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "afe", - "Description": [ - "Putukwam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "afg", - "Description": [ - "Afghan Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "afh", - "Description": [ - "Afrihili" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "afi", - "Description": [ - "Akrukay", - "Chini" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "afk", - "Description": [ - "Nanubae" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "afn", - "Description": [ - "Defaka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "afo", - "Description": [ - "Eloyi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "afp", - "Description": [ - "Tapei" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "afs", - "Description": [ - "Afro-Seminole Creole" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aft", - "Description": [ - "Afitti" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "afu", - "Description": [ - "Awutu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "afz", - "Description": [ - "Obokuitai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aga", - "Description": [ - "Aguano" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "agb", - "Description": [ - "Legbo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "agc", - "Description": [ - "Agatu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "agd", - "Description": [ - "Agarabi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "age", - "Description": [ - "Angal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "agf", - "Description": [ - "Arguni" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "agg", - "Description": [ - "Angor" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "agh", - "Description": [ - "Ngelima" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "agi", - "Description": [ - "Agariya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "agj", - "Description": [ - "Argobba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "agk", - "Description": [ - "Isarog Agta" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "agl", - "Description": [ - "Fembe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "agm", - "Description": [ - "Angaataha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "agn", - "Description": [ - "Agutaynen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ago", - "Description": [ - "Tainae" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "agp", - "Description": [ - "Paranan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2010-03-11", - "Comments": [ - "see apf, prf" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "agq", - "Description": [ - "Aghem" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "agr", - "Description": [ - "Aguaruna" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ags", - "Description": [ - "Esimbi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "agt", - "Description": [ - "Central Cagayan Agta" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "agu", - "Description": [ - "Aguacateco" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "agv", - "Description": [ - "Remontado Dumagat" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "agw", - "Description": [ - "Kahua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "agx", - "Description": [ - "Aghul" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "agy", - "Description": [ - "Southern Alta" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "agz", - "Description": [ - "Mt. Iriga Agta" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aha", - "Description": [ - "Ahanta" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ahb", - "Description": [ - "Axamb" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ahg", - "Description": [ - "Qimant" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ahh", - "Description": [ - "Aghu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ahi", - "Description": [ - "Tiagbamrin Aizi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ahk", - "Description": [ - "Akha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ahl", - "Description": [ - "Igo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ahm", - "Description": [ - "Mobumrin Aizi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ahn", - "Description": [ - "\u00C0h\u00E0n" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aho", - "Description": [ - "Ahom" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ahp", - "Description": [ - "Aproumu Aizi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ahr", - "Description": [ - "Ahirani" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ahs", - "Description": [ - "Ashe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aht", - "Description": [ - "Ahtena" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aia", - "Description": [ - "Arosi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aib", - "Description": [ - "Ainu (China)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aic", - "Description": [ - "Ainbai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aid", - "Description": [ - "Alngith" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aie", - "Description": [ - "Amara" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aif", - "Description": [ - "Agi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aig", - "Description": [ - "Antigua and Barbuda Creole English" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aih", - "Description": [ - "Ai-Cham" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aii", - "Description": [ - "Assyrian Neo-Aramaic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "syr", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aij", - "Description": [ - "Lishanid Noshan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aik", - "Description": [ - "Ake" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ail", - "Description": [ - "Aimele" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aim", - "Description": [ - "Aimol" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ain", - "Description": [ - "Ainu (Japan)" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aio", - "Description": [ - "Aiton" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aip", - "Description": [ - "Burumakok" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aiq", - "Description": [ - "Aimaq" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "air", - "Description": [ - "Airoran" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ais", - "Description": [ - "Nataoran Amis" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2019-04-16", - "Comments": [ - "see ami, szy" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ait", - "Description": [ - "Arikem" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aiw", - "Description": [ - "Aari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aix", - "Description": [ - "Aighon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aiy", - "Description": [ - "Ali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aja", - "Description": [ - "Aja (South Sudan)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ajg", - "Description": [ - "Aja (Benin)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aji", - "Description": [ - "Aji\u00EB" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ajn", - "Description": [ - "Andajin" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ajp", - "Description": [ - "South Levantine Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Deprecated": "2023-03-17", - "Comments": [], - "Prefix": [], - "PreferredValue": "apc" - }, - { - "Type": "Language", - "SubTag": "ajs", - "Description": [ - "Algerian Jewish Sign Language" - ], - "Added": "2022-02-25", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ajt", - "Description": [ - "Judeo-Tunisian Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "jrb", - "Deprecated": "2022-02-25", - "Comments": [], - "Prefix": [], - "PreferredValue": "aeb" - }, - { - "Type": "Language", - "SubTag": "aju", - "Description": [ - "Judeo-Moroccan Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "jrb", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ajw", - "Description": [ - "Ajawa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ajz", - "Description": [ - "Amri Karbi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "akb", - "Description": [ - "Batak Angkola" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "akc", - "Description": [ - "Mpur" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "akd", - "Description": [ - "Ukpet-Ehom" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ake", - "Description": [ - "Akawaio" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "akf", - "Description": [ - "Akpa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "akg", - "Description": [ - "Anakalangu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "akh", - "Description": [ - "Angal Heneng" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aki", - "Description": [ - "Aiome" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "akj", - "Description": [ - "Aka-Jeru" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "akk", - "Description": [ - "Akkadian" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "akl", - "Description": [ - "Aklanon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "akm", - "Description": [ - "Aka-Bo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ako", - "Description": [ - "Akurio" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "akp", - "Description": [ - "Siwu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "akq", - "Description": [ - "Ak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "akr", - "Description": [ - "Araki" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aks", - "Description": [ - "Akaselem" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "akt", - "Description": [ - "Akolet" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aku", - "Description": [ - "Akum" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "akv", - "Description": [ - "Akhvakh" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "akw", - "Description": [ - "Akwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "akx", - "Description": [ - "Aka-Kede" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aky", - "Description": [ - "Aka-Kol" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "akz", - "Description": [ - "Alabama" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ala", - "Description": [ - "Alago" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "alc", - "Description": [ - "Qawasqar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ald", - "Description": [ - "Alladian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ale", - "Description": [ - "Aleut" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "alf", - "Description": [ - "Alege" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "alg", - "Description": [ - "Algonquian languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "alh", - "Description": [ - "Alawa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ali", - "Description": [ - "Amaimon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "alj", - "Description": [ - "Alangan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "alk", - "Description": [ - "Alak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "all", - "Description": [ - "Allar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "alm", - "Description": [ - "Amblong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aln", - "Description": [ - "Gheg Albanian" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "sq", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "alo", - "Description": [ - "Larike-Wakasihu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "alp", - "Description": [ - "Alune" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "alq", - "Description": [ - "Algonquin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "alr", - "Description": [ - "Alutor" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "als", - "Description": [ - "Tosk Albanian" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "sq", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "alt", - "Description": [ - "Southern Altai" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "alu", - "Description": [ - "\u0027Are\u0027are" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "alv", - "Description": [ - "Atlantic-Congo languages" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "alw", - "Description": [ - "Alaba-K\u2019abeena", - "Wanbasana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "alx", - "Description": [ - "Amol" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aly", - "Description": [ - "Alyawarr" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "alz", - "Description": [ - "Alur" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ama", - "Description": [ - "Amanay\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "amb", - "Description": [ - "Ambo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "amc", - "Description": [ - "Amahuaca" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ame", - "Description": [ - "Yanesha\u0027" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "amf", - "Description": [ - "Hamer-Banna" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "amg", - "Description": [ - "Amurdak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ami", - "Description": [ - "Amis" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "amj", - "Description": [ - "Amdang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "amk", - "Description": [ - "Ambai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aml", - "Description": [ - "War-Jaintia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "amm", - "Description": [ - "Ama (Papua New Guinea)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "amn", - "Description": [ - "Amanab" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "amo", - "Description": [ - "Amo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "amp", - "Description": [ - "Alamblak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "amq", - "Description": [ - "Amahai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "amr", - "Description": [ - "Amarakaeri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ams", - "Description": [ - "Southern Amami-Oshima" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "amt", - "Description": [ - "Amto" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "amu", - "Description": [ - "Guerrero Amuzgo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "amv", - "Description": [ - "Ambelau" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "amw", - "Description": [ - "Western Neo-Aramaic" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "amx", - "Description": [ - "Anmatyerre" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "amy", - "Description": [ - "Ami" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "amz", - "Description": [ - "Atampaya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ana", - "Description": [ - "Andaqui" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "anb", - "Description": [ - "Andoa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "anc", - "Description": [ - "Ngas" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "and", - "Description": [ - "Ansus" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ane", - "Description": [ - "X\u00E2r\u00E2c\u00F9\u00F9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "anf", - "Description": [ - "Animere" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ang", - "Description": [ - "Old English (ca. 450-1100)" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "anh", - "Description": [ - "Nend" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ani", - "Description": [ - "Andi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "anj", - "Description": [ - "Anor" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ank", - "Description": [ - "Goemai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "anl", - "Description": [ - "Anu-Hkongso Chin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "anm", - "Description": [ - "Anal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ann", - "Description": [ - "Obolo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ano", - "Description": [ - "Andoque" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "anp", - "Description": [ - "Angika" - ], - "Added": "2006-03-08", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "anq", - "Description": [ - "Jarawa (India)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "anr", - "Description": [ - "Andh" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ans", - "Description": [ - "Anserma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ant", - "Description": [ - "Antakarinya", - "Antikarinya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "anu", - "Description": [ - "Anuak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "anv", - "Description": [ - "Denya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "anw", - "Description": [ - "Anaang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "anx", - "Description": [ - "Andra-Hus" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "any", - "Description": [ - "Anyin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "anz", - "Description": [ - "Anem" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aoa", - "Description": [ - "Angolar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aob", - "Description": [ - "Abom" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aoc", - "Description": [ - "Pemon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aod", - "Description": [ - "Andarum" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aoe", - "Description": [ - "Angal Enen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aof", - "Description": [ - "Bragat" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aog", - "Description": [ - "Angoram" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aoh", - "Description": [ - "Arma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2020-03-28", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aoi", - "Description": [ - "Anindilyakwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aoj", - "Description": [ - "Mufian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aok", - "Description": [ - "Arh\u00F6" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aol", - "Description": [ - "Alor" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aom", - "Description": [ - "\u00D6mie" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aon", - "Description": [ - "Bumbita Arapesh" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aor", - "Description": [ - "Aore" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aos", - "Description": [ - "Taikat" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aot", - "Description": [ - "Atong (India)", - "A\u0027tong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aou", - "Description": [ - "A\u0027ou" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aox", - "Description": [ - "Atorada" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aoz", - "Description": [ - "Uab Meto" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "apa", - "Description": [ - "Apache languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "apb", - "Description": [ - "Sa\u0027a" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "apc", - "Description": [ - "Levantine Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "apd", - "Description": [ - "Sudanese Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ape", - "Description": [ - "Bukiyip" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "apf", - "Description": [ - "Pahanan Agta" - ], - "Added": "2010-03-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "apg", - "Description": [ - "Ampanang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aph", - "Description": [ - "Athpariya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "api", - "Description": [ - "Apiak\u00E1" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "apj", - "Description": [ - "Jicarilla Apache" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "apk", - "Description": [ - "Kiowa Apache" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "apl", - "Description": [ - "Lipan Apache" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "apm", - "Description": [ - "Mescalero-Chiricahua Apache" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "apn", - "Description": [ - "Apinay\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "apo", - "Description": [ - "Ambul" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "app", - "Description": [ - "Apma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "apq", - "Description": [ - "A-Pucikwar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "apr", - "Description": [ - "Arop-Lokep" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aps", - "Description": [ - "Arop-Sissano" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "apt", - "Description": [ - "Apatani" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "apu", - "Description": [ - "Apurin\u00E3" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "apv", - "Description": [ - "Alapmunte" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "apw", - "Description": [ - "Western Apache" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "apx", - "Description": [ - "Aputai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "apy", - "Description": [ - "Apala\u00ED" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "apz", - "Description": [ - "Safeyoka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aqa", - "Description": [ - "Alacalufan languages" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aqc", - "Description": [ - "Archi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aqd", - "Description": [ - "Ampari Dogon" - ], - "Added": "2011-08-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aqg", - "Description": [ - "Arigidi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aqk", - "Description": [ - "Aninka" - ], - "Added": "2021-02-20", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aql", - "Description": [ - "Algic languages" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aqm", - "Description": [ - "Atohwaim" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aqn", - "Description": [ - "Northern Alta" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aqp", - "Description": [ - "Atakapa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aqr", - "Description": [ - "Arh\u00E2" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aqt", - "Description": [ - "Angait\u00E9" - ], - "Added": "2014-02-28", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aqz", - "Description": [ - "Akuntsu" - ], - "Added": "2010-03-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "arb", - "Description": [ - "Standard Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "arc", - "Description": [ - "Official Aramaic (700-300 BCE)", - "Imperial Aramaic (700-300 BCE)" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ard", - "Description": [ - "Arabana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "are", - "Description": [ - "Western Arrarnta" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "arh", - "Description": [ - "Arhuaco" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ari", - "Description": [ - "Arikara" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "arj", - "Description": [ - "Arapaso" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ark", - "Description": [ - "Arikap\u00FA" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "arl", - "Description": [ - "Arabela" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "arn", - "Description": [ - "Mapudungun", - "Mapuche" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aro", - "Description": [ - "Araona" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "arp", - "Description": [ - "Arapaho" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "arq", - "Description": [ - "Algerian Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "arr", - "Description": [ - "Karo (Brazil)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ars", - "Description": [ - "Najdi Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "art", - "Description": [ - "Artificial languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aru", - "Description": [ - "Aru\u00E1 (Amazonas State)", - "Araw\u00E1" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "arv", - "Description": [ - "Arbore" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "arw", - "Description": [ - "Arawak" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "arx", - "Description": [ - "Aru\u00E1 (Rodonia State)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ary", - "Description": [ - "Moroccan Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "arz", - "Description": [ - "Egyptian Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "asa", - "Description": [ - "Asu (Tanzania)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "asb", - "Description": [ - "Assiniboine", - "Nakoda Assiniboine" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "asc", - "Description": [ - "Casuarina Coast Asmat" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "asd", - "Description": [ - "Asas" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2019-04-16", - "Comments": [], - "Prefix": [], - "PreferredValue": "snz" - }, - { - "Type": "Language", - "SubTag": "ase", - "Description": [ - "American Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "asf", - "Description": [ - "Auslan", - "Australian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "asg", - "Description": [ - "Cishingini" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ash", - "Description": [ - "Abishira" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "asi", - "Description": [ - "Buruwai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "asj", - "Description": [ - "Sari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ask", - "Description": [ - "Ashkun" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "asl", - "Description": [ - "Asilulu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "asn", - "Description": [ - "Xing\u00FA Asurin\u00ED" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aso", - "Description": [ - "Dano" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "asp", - "Description": [ - "Algerian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "asq", - "Description": [ - "Austrian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "asr", - "Description": [ - "Asuri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ass", - "Description": [ - "Ipulo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ast", - "Description": [ - "Asturian", - "Asturleonese", - "Bable", - "Leonese" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "asu", - "Description": [ - "Tocantins Asurini" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "asv", - "Description": [ - "Asoa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "asw", - "Description": [ - "Australian Aborigines Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "asx", - "Description": [ - "Muratayak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "asy", - "Description": [ - "Yaosakor Asmat" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "asz", - "Description": [ - "As" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ata", - "Description": [ - "Pele-Ata" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "atb", - "Description": [ - "Zaiwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "atc", - "Description": [ - "Atsahuaca" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "atd", - "Description": [ - "Ata Manobo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ate", - "Description": [ - "Atemble" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "atg", - "Description": [ - "Ivbie North-Okpela-Arhe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ath", - "Description": [ - "Athapascan languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ati", - "Description": [ - "Atti\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "atj", - "Description": [ - "Atikamekw", - "Nehirowimowin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "atk", - "Description": [ - "Ati" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "atl", - "Description": [ - "Mt. Iraya Agta" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "atm", - "Description": [ - "Ata" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "atn", - "Description": [ - "Ashtiani" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ato", - "Description": [ - "Atong (Cameroon)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "atp", - "Description": [ - "Pudtol Atta" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "atq", - "Description": [ - "Aralle-Tabulahan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "atr", - "Description": [ - "Waimiri-Atroari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ats", - "Description": [ - "Gros Ventre" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "att", - "Description": [ - "Pamplona Atta" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "atu", - "Description": [ - "Reel" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "atv", - "Description": [ - "Northern Altai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "atw", - "Description": [ - "Atsugewi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "atx", - "Description": [ - "Arutani" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aty", - "Description": [ - "Aneityum" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "atz", - "Description": [ - "Arta" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aua", - "Description": [ - "Asumboa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aub", - "Description": [ - "Alugu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "auc", - "Description": [ - "Waorani" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aud", - "Description": [ - "Anuta" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aue", - "Description": [ - "\u01C2Kx\u02BCau\u01C1\u02BCein" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2015-02-12", - "Comments": [], - "Prefix": [], - "PreferredValue": "ktz" - }, - { - "Type": "Language", - "SubTag": "auf", - "Description": [ - "Arauan languages" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aug", - "Description": [ - "Aguna" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "auh", - "Description": [ - "Aushi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aui", - "Description": [ - "Anuki" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "auj", - "Description": [ - "Awjilah" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "auk", - "Description": [ - "Heyo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aul", - "Description": [ - "Aulua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aum", - "Description": [ - "Asu (Nigeria)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aun", - "Description": [ - "Molmo One" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "auo", - "Description": [ - "Auyokawa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aup", - "Description": [ - "Makayam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "auq", - "Description": [ - "Anus", - "Korur" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aur", - "Description": [ - "Aruek" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aus", - "Description": [ - "Australian languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aut", - "Description": [ - "Austral" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "auu", - "Description": [ - "Auye" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "auw", - "Description": [ - "Awyi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aux", - "Description": [ - "Aur\u00E1" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "auy", - "Description": [ - "Awiyaana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "auz", - "Description": [ - "Uzbeki Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "avb", - "Description": [ - "Avau" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "avd", - "Description": [ - "Alviri-Vidari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "avi", - "Description": [ - "Avikam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "avk", - "Description": [ - "Kotava" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "avl", - "Description": [ - "Eastern Egyptian Bedawi Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "avm", - "Description": [ - "Angkamuthi" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "avn", - "Description": [ - "Avatime" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "avo", - "Description": [ - "Agavotaguerra" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "avs", - "Description": [ - "Aushiri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "avt", - "Description": [ - "Au" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "avu", - "Description": [ - "Avokaya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "avv", - "Description": [ - "Av\u00E1-Canoeiro" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "awa", - "Description": [ - "Awadhi" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "awb", - "Description": [ - "Awa (Papua New Guinea)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "awc", - "Description": [ - "Cicipu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "awd", - "Description": [ - "Arawakan languages" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "awe", - "Description": [ - "Awet\u00ED" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "awg", - "Description": [ - "Anguthimri" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "awh", - "Description": [ - "Awbono" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "awi", - "Description": [ - "Aekyom" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "awk", - "Description": [ - "Awabakal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "awm", - "Description": [ - "Arawum" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "awn", - "Description": [ - "Awngi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "awo", - "Description": [ - "Awak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "awr", - "Description": [ - "Awera" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aws", - "Description": [ - "South Awyu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "awt", - "Description": [ - "Arawet\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "awu", - "Description": [ - "Central Awyu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "awv", - "Description": [ - "Jair Awyu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aww", - "Description": [ - "Awun" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "awx", - "Description": [ - "Awara" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "awy", - "Description": [ - "Edera Awyu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "axb", - "Description": [ - "Abipon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "axe", - "Description": [ - "Ayerrerenge" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "axg", - "Description": [ - "Mato Grosso Ar\u00E1ra" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "axk", - "Description": [ - "Yaka (Central African Republic)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "axl", - "Description": [ - "Lower Southern Aranda" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "axm", - "Description": [ - "Middle Armenian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "axx", - "Description": [ - "X\u00E2r\u00E2gur\u00E8" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aya", - "Description": [ - "Awar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ayb", - "Description": [ - "Ayizo Gbe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ayc", - "Description": [ - "Southern Aymara" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ay", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ayd", - "Description": [ - "Ayabadhu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aye", - "Description": [ - "Ayere" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ayg", - "Description": [ - "Ginyanga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ayh", - "Description": [ - "Hadrami Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ayi", - "Description": [ - "Leyigha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ayk", - "Description": [ - "Akuku" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ayl", - "Description": [ - "Libyan Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ayn", - "Description": [ - "Sanaani Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ayo", - "Description": [ - "Ayoreo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ayp", - "Description": [ - "North Mesopotamian Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ayq", - "Description": [ - "Ayi (Papua New Guinea)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ayr", - "Description": [ - "Central Aymara" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ay", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ays", - "Description": [ - "Sorsogon Ayta" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ayt", - "Description": [ - "Magbukun Ayta" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ayu", - "Description": [ - "Ayu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ayx", - "Description": [ - "Ayi (China)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2011-08-16", - "Comments": [], - "Prefix": [], - "PreferredValue": "nun" - }, - { - "Type": "Language", - "SubTag": "ayy", - "Description": [ - "Tayabas Ayta" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2020-03-28", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ayz", - "Description": [ - "Mai Brat" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "aza", - "Description": [ - "Azha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "azb", - "Description": [ - "South Azerbaijani" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "az", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "azc", - "Description": [ - "Uto-Aztecan languages" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "azd", - "Description": [ - "Eastern Durango Nahuatl" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "azg", - "Description": [ - "San Pedro Amuzgos Amuzgo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "azj", - "Description": [ - "North Azerbaijani" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "az", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "azm", - "Description": [ - "Ipalapa Amuzgo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "azn", - "Description": [ - "Western Durango Nahuatl" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "azo", - "Description": [ - "Awing" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "azt", - "Description": [ - "Faire Atta" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "azz", - "Description": [ - "Highland Puebla Nahuatl" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "baa", - "Description": [ - "Babatana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bab", - "Description": [ - "Bainouk-Gunyu\u00F1o" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bac", - "Description": [ - "Badui" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bad", - "Description": [ - "Banda languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bae", - "Description": [ - "Bar\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "baf", - "Description": [ - "Nubaca" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bag", - "Description": [ - "Tuki" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bah", - "Description": [ - "Bahamas Creole English" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bai", - "Description": [ - "Bamileke languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "baj", - "Description": [ - "Barakai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bal", - "Description": [ - "Baluchi" - ], - "Added": "2005-10-16", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ban", - "Description": [ - "Balinese" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bao", - "Description": [ - "Waimaha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bap", - "Description": [ - "Bantawa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bar", - "Description": [ - "Bavarian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bas", - "Description": [ - "Basa (Cameroon)" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bat", - "Description": [ - "Baltic languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bau", - "Description": [ - "Bada (Nigeria)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bav", - "Description": [ - "Vengo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "baw", - "Description": [ - "Bambili-Bambui" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bax", - "Description": [ - "Bamun" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bay", - "Description": [ - "Batuley" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "baz", - "Description": [ - "Tunen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2012-08-12", - "Comments": [ - "see nvo, tvu" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bba", - "Description": [ - "Baatonum" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bbb", - "Description": [ - "Barai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bbc", - "Description": [ - "Batak Toba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bbd", - "Description": [ - "Bau" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bbe", - "Description": [ - "Bangba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bbf", - "Description": [ - "Baibai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bbg", - "Description": [ - "Barama" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bbh", - "Description": [ - "Bugan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bbi", - "Description": [ - "Barombi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bbj", - "Description": [ - "Ghom\u00E1l\u00E1\u0027" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bbk", - "Description": [ - "Babanki" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bbl", - "Description": [ - "Bats" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bbm", - "Description": [ - "Babango" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bbn", - "Description": [ - "Uneapa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bbo", - "Description": [ - "Northern Bobo Madar\u00E9", - "Konab\u00E9r\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bbp", - "Description": [ - "West Central Banda" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bbq", - "Description": [ - "Bamali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bbr", - "Description": [ - "Girawa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bbs", - "Description": [ - "Bakpinka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bbt", - "Description": [ - "Mburku" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bbu", - "Description": [ - "Kulung (Nigeria)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bbv", - "Description": [ - "Karnai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bbw", - "Description": [ - "Baba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bbx", - "Description": [ - "Bubia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bby", - "Description": [ - "Befang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bbz", - "Description": [ - "Babalia Creole Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Deprecated": "2020-03-28", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bca", - "Description": [ - "Central Bai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bcb", - "Description": [ - "Bainouk-Samik" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bcc", - "Description": [ - "Southern Balochi" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "bal", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bcd", - "Description": [ - "North Babar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bce", - "Description": [ - "Bamenyam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bcf", - "Description": [ - "Bamu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bcg", - "Description": [ - "Baga Pokur" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bch", - "Description": [ - "Bariai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bci", - "Description": [ - "Baoul\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bcj", - "Description": [ - "Bardi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bck", - "Description": [ - "Bunuba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bcl", - "Description": [ - "Central Bikol" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "bik", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bcm", - "Description": [ - "Bannoni" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bcn", - "Description": [ - "Bali (Nigeria)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bco", - "Description": [ - "Kaluli" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bcp", - "Description": [ - "Bali (Democratic Republic of Congo)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bcq", - "Description": [ - "Bench" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bcr", - "Description": [ - "Babine" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bcs", - "Description": [ - "Kohumono" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bct", - "Description": [ - "Bendi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bcu", - "Description": [ - "Awad Bing" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bcv", - "Description": [ - "Shoo-Minda-Nye" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bcw", - "Description": [ - "Bana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bcy", - "Description": [ - "Bacama" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bcz", - "Description": [ - "Bainouk-Gunyaamolo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bda", - "Description": [ - "Bayot" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bdb", - "Description": [ - "Basap" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bdc", - "Description": [ - "Ember\u00E1-Baud\u00F3" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bdd", - "Description": [ - "Bunama" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bde", - "Description": [ - "Bade" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bdf", - "Description": [ - "Biage" - ], - "Added": "2010-03-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bdg", - "Description": [ - "Bonggi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bdh", - "Description": [ - "Baka (South Sudan)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bdi", - "Description": [ - "Burun" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bdj", - "Description": [ - "Bai (South Sudan)", - "Bai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bdk", - "Description": [ - "Budukh" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bdl", - "Description": [ - "Indonesian Bajau" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bdm", - "Description": [ - "Buduma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bdn", - "Description": [ - "Baldemu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bdo", - "Description": [ - "Morom" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bdp", - "Description": [ - "Bende" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bdq", - "Description": [ - "Bahnar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bdr", - "Description": [ - "West Coast Bajau" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bds", - "Description": [ - "Burunge" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bdt", - "Description": [ - "Bokoto" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "gba", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bdu", - "Description": [ - "Oroko" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bdv", - "Description": [ - "Bodo Parja" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bdw", - "Description": [ - "Baham" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bdx", - "Description": [ - "Budong-Budong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bdy", - "Description": [ - "Bandjalang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bdz", - "Description": [ - "Badeshi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bea", - "Description": [ - "Beaver" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "beb", - "Description": [ - "Bebele" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bec", - "Description": [ - "Iceve-Maci" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bed", - "Description": [ - "Bedoanas" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bee", - "Description": [ - "Byangsi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bef", - "Description": [ - "Benabena" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "beg", - "Description": [ - "Belait" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "beh", - "Description": [ - "Biali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bei", - "Description": [ - "Bekati\u0027" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bej", - "Description": [ - "Beja", - "Bedawiyet" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bek", - "Description": [ - "Bebeli" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bem", - "Description": [ - "Bemba (Zambia)" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "beo", - "Description": [ - "Beami" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bep", - "Description": [ - "Besoa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "beq", - "Description": [ - "Beembe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ber", - "Description": [ - "Berber languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bes", - "Description": [ - "Besme" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bet", - "Description": [ - "Guiberoua B\u00E9te" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "beu", - "Description": [ - "Blagar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bev", - "Description": [ - "Daloa B\u00E9t\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bew", - "Description": [ - "Betawi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bex", - "Description": [ - "Jur Modo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bey", - "Description": [ - "Beli (Papua New Guinea)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bez", - "Description": [ - "Bena (Tanzania)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bfa", - "Description": [ - "Bari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bfb", - "Description": [ - "Pauri Bareli" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bfc", - "Description": [ - "Panyi Bai", - "Northern Bai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bfd", - "Description": [ - "Bafut" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bfe", - "Description": [ - "Betaf", - "Tena" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bff", - "Description": [ - "Bofi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bfg", - "Description": [ - "Busang Kayan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bfh", - "Description": [ - "Blafe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bfi", - "Description": [ - "British Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bfj", - "Description": [ - "Bafanji" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bfk", - "Description": [ - "Ban Khor Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bfl", - "Description": [ - "Banda-Nd\u00E9l\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bfm", - "Description": [ - "Mmen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bfn", - "Description": [ - "Bunak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bfo", - "Description": [ - "Malba Birifor" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bfp", - "Description": [ - "Beba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bfq", - "Description": [ - "Badaga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bfr", - "Description": [ - "Bazigar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bfs", - "Description": [ - "Southern Bai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bft", - "Description": [ - "Balti" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bfu", - "Description": [ - "Gahri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bfw", - "Description": [ - "Bondo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bfx", - "Description": [ - "Bantayanon" - ], - "Added": "2010-03-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bfy", - "Description": [ - "Bagheli" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bfz", - "Description": [ - "Mahasu Pahari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bga", - "Description": [ - "Gwamhi-Wuri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bgb", - "Description": [ - "Bobongko" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bgc", - "Description": [ - "Haryanvi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bgd", - "Description": [ - "Rathwi Bareli" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bge", - "Description": [ - "Bauria" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bgf", - "Description": [ - "Bangandu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bgg", - "Description": [ - "Bugun" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bgi", - "Description": [ - "Giangan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bgj", - "Description": [ - "Bangolan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bgk", - "Description": [ - "Bit", - "Buxinhua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bgl", - "Description": [ - "Bo (Laos)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bgm", - "Description": [ - "Baga Mboteni" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2016-05-30", - "Comments": [], - "Prefix": [], - "PreferredValue": "bcg" - }, - { - "Type": "Language", - "SubTag": "bgn", - "Description": [ - "Western Balochi" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "bal", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bgo", - "Description": [ - "Baga Koga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bgp", - "Description": [ - "Eastern Balochi" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "bal", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bgq", - "Description": [ - "Bagri" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "raj", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bgr", - "Description": [ - "Bawm Chin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bgs", - "Description": [ - "Tagabawa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bgt", - "Description": [ - "Bughotu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bgu", - "Description": [ - "Mbongno" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bgv", - "Description": [ - "Warkay-Bipim" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bgw", - "Description": [ - "Bhatri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bgx", - "Description": [ - "Balkan Gagauz Turkish" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bgy", - "Description": [ - "Benggoi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bgz", - "Description": [ - "Banggai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bha", - "Description": [ - "Bharia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bhb", - "Description": [ - "Bhili" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bhc", - "Description": [ - "Biga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bhd", - "Description": [ - "Bhadrawahi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bhe", - "Description": [ - "Bhaya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bhf", - "Description": [ - "Odiai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bhg", - "Description": [ - "Binandere" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bhh", - "Description": [ - "Bukharic" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bhi", - "Description": [ - "Bhilali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bhj", - "Description": [ - "Bahing" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bhk", - "Description": [ - "Albay Bicolano" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "bik", - "Deprecated": "2010-03-11", - "Comments": [ - "see fbl, lbl, rbl, ubl" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bhl", - "Description": [ - "Bimin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bhm", - "Description": [ - "Bathari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bhn", - "Description": [ - "Bohtan Neo-Aramaic" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bho", - "Description": [ - "Bhojpuri" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bhp", - "Description": [ - "Bima" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bhq", - "Description": [ - "Tukang Besi South" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bhr", - "Description": [ - "Bara Malagasy" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "mg", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bhs", - "Description": [ - "Buwal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bht", - "Description": [ - "Bhattiyali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bhu", - "Description": [ - "Bhunjia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bhv", - "Description": [ - "Bahau" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bhw", - "Description": [ - "Biak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bhx", - "Description": [ - "Bhalay" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bhy", - "Description": [ - "Bhele" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bhz", - "Description": [ - "Bada (Indonesia)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bia", - "Description": [ - "Badimaya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bib", - "Description": [ - "Bissa", - "Bisa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bic", - "Description": [ - "Bikaru" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2021-02-20", - "Comments": [], - "Prefix": [], - "PreferredValue": "bir" - }, - { - "Type": "Language", - "SubTag": "bid", - "Description": [ - "Bidiyo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bie", - "Description": [ - "Bepour" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bif", - "Description": [ - "Biafada" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "big", - "Description": [ - "Biangai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bih", - "Description": [ - "Bihari languages" - ], - "Added": "2026-06-14", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bij", - "Description": [ - "Vaghat-Ya-Bijim-Legeri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2021-02-20", - "Comments": [ - "see dkg, jbm, tyy" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bik", - "Description": [ - "Bikol" - ], - "Added": "2005-10-16", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bil", - "Description": [ - "Bile" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bim", - "Description": [ - "Bimoba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bin", - "Description": [ - "Bini", - "Edo" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bio", - "Description": [ - "Nai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bip", - "Description": [ - "Bila" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "biq", - "Description": [ - "Bipi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bir", - "Description": [ - "Bisorio" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bit", - "Description": [ - "Berinomo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "biu", - "Description": [ - "Biete" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "biv", - "Description": [ - "Southern Birifor" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "biw", - "Description": [ - "Kol (Cameroon)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bix", - "Description": [ - "Bijori" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "biy", - "Description": [ - "Birhor" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "biz", - "Description": [ - "Baloi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bja", - "Description": [ - "Budza" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bjb", - "Description": [ - "Banggarla" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bjc", - "Description": [ - "Bariji" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bjd", - "Description": [ - "Bandjigali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2012-08-12", - "Comments": [], - "Prefix": [], - "PreferredValue": "drl" - }, - { - "Type": "Language", - "SubTag": "bje", - "Description": [ - "Biao-Jiao Mien" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bjf", - "Description": [ - "Barzani Jewish Neo-Aramaic" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bjg", - "Description": [ - "Bidyogo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bjh", - "Description": [ - "Bahinemo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bji", - "Description": [ - "Burji" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bjj", - "Description": [ - "Kanauji" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bjk", - "Description": [ - "Barok" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bjl", - "Description": [ - "Bulu (Papua New Guinea)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bjm", - "Description": [ - "Bajelani" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bjn", - "Description": [ - "Banjar" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bjo", - "Description": [ - "Mid-Southern Banda" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bjp", - "Description": [ - "Fanamaket" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bjq", - "Description": [ - "Southern Betsimisaraka Malagasy" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "mg", - "Deprecated": "2011-08-16", - "Comments": [ - "see bzc, tkg" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bjr", - "Description": [ - "Binumarien" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bjs", - "Description": [ - "Bajan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bjt", - "Description": [ - "Balanta-Ganja" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bju", - "Description": [ - "Busuu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bjv", - "Description": [ - "Bedjond" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bjw", - "Description": [ - "Bakw\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bjx", - "Description": [ - "Banao Itneg" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bjy", - "Description": [ - "Bayali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bjz", - "Description": [ - "Baruga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bka", - "Description": [ - "Kyak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bkb", - "Description": [ - "Finallig" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2010-03-11", - "Comments": [ - "see ebk, obk" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bkc", - "Description": [ - "Baka (Cameroon)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bkd", - "Description": [ - "Binukid", - "Talaandig" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bkf", - "Description": [ - "Beeke" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bkg", - "Description": [ - "Buraka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bkh", - "Description": [ - "Bakoko" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bki", - "Description": [ - "Baki" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bkj", - "Description": [ - "Pande" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bkk", - "Description": [ - "Brokskat" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bkl", - "Description": [ - "Berik" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bkm", - "Description": [ - "Kom (Cameroon)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bkn", - "Description": [ - "Bukitan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bko", - "Description": [ - "Kwa\u0027" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bkp", - "Description": [ - "Boko (Democratic Republic of Congo)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bkq", - "Description": [ - "Bakair\u00ED" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bkr", - "Description": [ - "Bakumpai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bks", - "Description": [ - "Northern Sorsoganon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bkt", - "Description": [ - "Boloki" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bku", - "Description": [ - "Buhid" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bkv", - "Description": [ - "Bekwarra" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bkw", - "Description": [ - "Bekwel" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bkx", - "Description": [ - "Baikeno" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bky", - "Description": [ - "Bokyi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bkz", - "Description": [ - "Bungku" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bla", - "Description": [ - "Siksika" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "blb", - "Description": [ - "Bilua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "blc", - "Description": [ - "Bella Coola" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bld", - "Description": [ - "Bolango" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ble", - "Description": [ - "Balanta-Kentohe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "blf", - "Description": [ - "Buol" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "blg", - "Description": [ - "Balau" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2021-02-20", - "Comments": [], - "Prefix": [], - "PreferredValue": "iba" - }, - { - "Type": "Language", - "SubTag": "blh", - "Description": [ - "Kuwaa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bli", - "Description": [ - "Bolia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "blj", - "Description": [ - "Bolongan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "blk", - "Description": [ - "Pa\u0027o Karen", - "Pa\u0027O" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bll", - "Description": [ - "Biloxi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "blm", - "Description": [ - "Beli (South Sudan)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bln", - "Description": [ - "Southern Catanduanes Bikol" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "bik", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "blo", - "Description": [ - "Anii" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "blp", - "Description": [ - "Blablanga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "blq", - "Description": [ - "Baluan-Pam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "blr", - "Description": [ - "Blang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bls", - "Description": [ - "Balaesang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "blt", - "Description": [ - "Tai Dam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "blv", - "Description": [ - "Kibala", - "Bolo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "blw", - "Description": [ - "Balangao" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "blx", - "Description": [ - "Mag-Indi Ayta" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bly", - "Description": [ - "Notre" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "blz", - "Description": [ - "Balantak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bma", - "Description": [ - "Lame" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bmb", - "Description": [ - "Bembe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bmc", - "Description": [ - "Biem" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bmd", - "Description": [ - "Baga Manduri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bme", - "Description": [ - "Limassa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bmf", - "Description": [ - "Bom-Kim" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bmg", - "Description": [ - "Bamwe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bmh", - "Description": [ - "Kein" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bmi", - "Description": [ - "Bagirmi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bmj", - "Description": [ - "Bote-Majhi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bmk", - "Description": [ - "Ghayavi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bml", - "Description": [ - "Bomboli" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bmm", - "Description": [ - "Northern Betsimisaraka Malagasy" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "mg", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bmn", - "Description": [ - "Bina (Papua New Guinea)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bmo", - "Description": [ - "Bambalang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bmp", - "Description": [ - "Bulgebi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bmq", - "Description": [ - "Bomu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bmr", - "Description": [ - "Muinane" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bms", - "Description": [ - "Bilma Kanuri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bmt", - "Description": [ - "Biao Mon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bmu", - "Description": [ - "Somba-Siawari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bmv", - "Description": [ - "Bum" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bmw", - "Description": [ - "Bomwali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bmx", - "Description": [ - "Baimak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bmy", - "Description": [ - "Bemba (Democratic Republic of Congo)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2015-02-12", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bmz", - "Description": [ - "Baramu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bna", - "Description": [ - "Bonerate" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bnb", - "Description": [ - "Bookan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bnc", - "Description": [ - "Bontok" - ], - "Added": "2009-07-29", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bnd", - "Description": [ - "Banda (Indonesia)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bne", - "Description": [ - "Bintauna" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bnf", - "Description": [ - "Masiwang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bng", - "Description": [ - "Benga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bni", - "Description": [ - "Bangi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bnj", - "Description": [ - "Eastern Tawbuid" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bnk", - "Description": [ - "Bierebo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bnl", - "Description": [ - "Boon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bnm", - "Description": [ - "Batanga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bnn", - "Description": [ - "Bunun" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bno", - "Description": [ - "Bantoanon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bnp", - "Description": [ - "Bola" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bnq", - "Description": [ - "Bantik" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bnr", - "Description": [ - "Butmas-Tur" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bns", - "Description": [ - "Bundeli" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bnt", - "Description": [ - "Bantu languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bnu", - "Description": [ - "Bentong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bnv", - "Description": [ - "Bonerif", - "Beneraf", - "Edwas" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bnw", - "Description": [ - "Bisis" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bnx", - "Description": [ - "Bangubangu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bny", - "Description": [ - "Bintulu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bnz", - "Description": [ - "Beezen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "boa", - "Description": [ - "Bora" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bob", - "Description": [ - "Aweer" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "boe", - "Description": [ - "Mundabli-Mufu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bof", - "Description": [ - "Bolon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bog", - "Description": [ - "Bamako Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "boh", - "Description": [ - "Boma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "boi", - "Description": [ - "Barbare\u00F1o" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "boj", - "Description": [ - "Anjam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bok", - "Description": [ - "Bonjo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bol", - "Description": [ - "Bole" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bom", - "Description": [ - "Berom" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bon", - "Description": [ - "Bine" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "boo", - "Description": [ - "Tiemac\u00E8w\u00E8 Bozo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bop", - "Description": [ - "Bonkiman" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "boq", - "Description": [ - "Bogaya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bor", - "Description": [ - "Bor\u00F4ro" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bot", - "Description": [ - "Bongo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bou", - "Description": [ - "Bondei" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bov", - "Description": [ - "Tuwuli" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bow", - "Description": [ - "Rema" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "box", - "Description": [ - "Buamu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "boy", - "Description": [ - "Bodo (Central African Republic)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "boz", - "Description": [ - "Ti\u00E9yaxo Bozo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bpa", - "Description": [ - "Daakaka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bpb", - "Description": [ - "Barbacoas" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2020-03-28", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bpc", - "Description": [ - "Mbuk" - ], - "Added": "2022-02-25", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bpd", - "Description": [ - "Banda-Banda" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bpe", - "Description": [ - "Bauni" - ], - "Added": "2021-02-20", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bpg", - "Description": [ - "Bonggo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bph", - "Description": [ - "Botlikh" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bpi", - "Description": [ - "Bagupi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bpj", - "Description": [ - "Binji" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bpk", - "Description": [ - "Orowe", - "\u0027\u00D4r\u00F4\u00EA" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bpl", - "Description": [ - "Broome Pearling Lugger Pidgin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bpm", - "Description": [ - "Biyom" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bpn", - "Description": [ - "Dzao Min" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bpo", - "Description": [ - "Anasi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bpp", - "Description": [ - "Kaure" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bpq", - "Description": [ - "Banda Malay" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bpr", - "Description": [ - "Koronadal Blaan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bps", - "Description": [ - "Sarangani Blaan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bpt", - "Description": [ - "Barrow Point" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bpu", - "Description": [ - "Bongu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bpv", - "Description": [ - "Bian Marind" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bpw", - "Description": [ - "Bo (Papua New Guinea)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bpx", - "Description": [ - "Palya Bareli" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bpy", - "Description": [ - "Bishnupriya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bpz", - "Description": [ - "Bilba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bqa", - "Description": [ - "Tchumbuli" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bqb", - "Description": [ - "Bagusa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bqc", - "Description": [ - "Boko (Benin)", - "Boo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bqd", - "Description": [ - "Bung" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bqf", - "Description": [ - "Baga Kaloum" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bqg", - "Description": [ - "Bago-Kusuntu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bqh", - "Description": [ - "Baima" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bqi", - "Description": [ - "Bakhtiari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bqj", - "Description": [ - "Bandial" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bqk", - "Description": [ - "Banda-Mbr\u00E8s" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bql", - "Description": [ - "Karian", - "Bilakura" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bqm", - "Description": [ - "Wumboko" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bqn", - "Description": [ - "Bulgarian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bqo", - "Description": [ - "Balo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bqp", - "Description": [ - "Busa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bqq", - "Description": [ - "Biritai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bqr", - "Description": [ - "Burusu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bqs", - "Description": [ - "Bosngun" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bqt", - "Description": [ - "Bamukumbit" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bqu", - "Description": [ - "Boguru" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bqv", - "Description": [ - "Koro Wachi", - "Begbere-Ejar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bqw", - "Description": [ - "Buru (Nigeria)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bqx", - "Description": [ - "Baangi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bqy", - "Description": [ - "Bengkala Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bqz", - "Description": [ - "Bakaka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bra", - "Description": [ - "Braj" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "brb", - "Description": [ - "Brao", - "Lave" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "brc", - "Description": [ - "Berbice Creole Dutch" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "brd", - "Description": [ - "Baraamu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "brf", - "Description": [ - "Bira" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "brg", - "Description": [ - "Baure" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "brh", - "Description": [ - "Brahui" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bri", - "Description": [ - "Mokpwe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "brj", - "Description": [ - "Bieria" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "brk", - "Description": [ - "Birked" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "brl", - "Description": [ - "Birwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "brm", - "Description": [ - "Barambu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "brn", - "Description": [ - "Boruca" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bro", - "Description": [ - "Brokkat" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "brp", - "Description": [ - "Barapasi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "brq", - "Description": [ - "Breri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "brr", - "Description": [ - "Birao" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "brs", - "Description": [ - "Baras" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "brt", - "Description": [ - "Bitare" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bru", - "Description": [ - "Eastern Bru" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "brv", - "Description": [ - "Western Bru" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "brw", - "Description": [ - "Bellari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "brx", - "Description": [ - "Bodo (India)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bry", - "Description": [ - "Burui" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "brz", - "Description": [ - "Bilbil" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bsa", - "Description": [ - "Abinomn" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bsb", - "Description": [ - "Brunei Bisaya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bsc", - "Description": [ - "Bassari", - "Oniyan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bse", - "Description": [ - "Wushi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bsf", - "Description": [ - "Bauchi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bsg", - "Description": [ - "Bashkardi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bsh", - "Description": [ - "Kati" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bsi", - "Description": [ - "Bassossi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bsj", - "Description": [ - "Bangwinji" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bsk", - "Description": [ - "Burushaski" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bsl", - "Description": [ - "Basa-Gumna" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bsm", - "Description": [ - "Busami" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bsn", - "Description": [ - "Barasana-Eduria" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bso", - "Description": [ - "Buso" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bsp", - "Description": [ - "Baga Sitemu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bsq", - "Description": [ - "Bassa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bsr", - "Description": [ - "Bassa-Kontagora" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bss", - "Description": [ - "Akoose" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bst", - "Description": [ - "Basketo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bsu", - "Description": [ - "Bahonsuai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bsv", - "Description": [ - "Baga Soban\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bsw", - "Description": [ - "Baiso" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bsx", - "Description": [ - "Yangkam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bsy", - "Description": [ - "Sabah Bisaya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bta", - "Description": [ - "Bata" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "btb", - "Description": [ - "Beti (Cameroon)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2010-03-11", - "Comments": [ - "see beb, bum, bxp, eto, ewo, fan, mct" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "btc", - "Description": [ - "Bati (Cameroon)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "btd", - "Description": [ - "Batak Dairi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bte", - "Description": [ - "Gamo-Ningi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "btf", - "Description": [ - "Birgit" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "btg", - "Description": [ - "Gagnoa B\u00E9t\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bth", - "Description": [ - "Biatah Bidayuh" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bti", - "Description": [ - "Burate" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "btj", - "Description": [ - "Bacanese Malay" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "btk", - "Description": [ - "Batak languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "btl", - "Description": [ - "Bhatola" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2016-05-30", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "btm", - "Description": [ - "Batak Mandailing" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "btn", - "Description": [ - "Ratagnon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bto", - "Description": [ - "Rinconada Bikol" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "bik", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "btp", - "Description": [ - "Budibud" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "btq", - "Description": [ - "Batek" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "btr", - "Description": [ - "Baetora" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bts", - "Description": [ - "Batak Simalungun" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "btt", - "Description": [ - "Bete-Bendi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "btu", - "Description": [ - "Batu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "btv", - "Description": [ - "Bateri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "btw", - "Description": [ - "Butuanon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "btx", - "Description": [ - "Batak Karo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bty", - "Description": [ - "Bobot" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "btz", - "Description": [ - "Batak Alas-Kluet" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bua", - "Description": [ - "Buriat" - ], - "Added": "2005-10-16", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bub", - "Description": [ - "Bua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "buc", - "Description": [ - "Bushi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bud", - "Description": [ - "Ntcham" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bue", - "Description": [ - "Beothuk" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "buf", - "Description": [ - "Bushoong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bug", - "Description": [ - "Buginese" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "buh", - "Description": [ - "Younuo Bunu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bui", - "Description": [ - "Bongili" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "buj", - "Description": [ - "Basa-Gurmana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "buk", - "Description": [ - "Bugawac" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bum", - "Description": [ - "Bulu (Cameroon)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bun", - "Description": [ - "Sherbro" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "buo", - "Description": [ - "Terei" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bup", - "Description": [ - "Busoa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "buq", - "Description": [ - "Brem" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bus", - "Description": [ - "Bokobaru" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "but", - "Description": [ - "Bungain" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "buu", - "Description": [ - "Budu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "buv", - "Description": [ - "Bun" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "buw", - "Description": [ - "Bubi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bux", - "Description": [ - "Boghom" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "buy", - "Description": [ - "Bullom So" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "buz", - "Description": [ - "Bukwen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bva", - "Description": [ - "Barein" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bvb", - "Description": [ - "Bube" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bvc", - "Description": [ - "Baelelea" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bvd", - "Description": [ - "Baeggu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bve", - "Description": [ - "Berau Malay" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bvf", - "Description": [ - "Boor" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bvg", - "Description": [ - "Bonkeng" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bvh", - "Description": [ - "Bure" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bvi", - "Description": [ - "Belanda Viri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bvj", - "Description": [ - "Baan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bvk", - "Description": [ - "Bukat" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bvl", - "Description": [ - "Bolivian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bvm", - "Description": [ - "Bamunka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bvn", - "Description": [ - "Buna" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bvo", - "Description": [ - "Bolgo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bvp", - "Description": [ - "Bumang" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bvq", - "Description": [ - "Birri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bvr", - "Description": [ - "Burarra" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bvt", - "Description": [ - "Bati (Indonesia)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bvu", - "Description": [ - "Bukit Malay" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bvv", - "Description": [ - "Baniva" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bvw", - "Description": [ - "Boga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bvx", - "Description": [ - "Dibole" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bvy", - "Description": [ - "Baybayanon" - ], - "Added": "2010-03-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bvz", - "Description": [ - "Bauzi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bwa", - "Description": [ - "Bwatoo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bwb", - "Description": [ - "Namosi-Naitasiri-Serua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bwc", - "Description": [ - "Bwile" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bwd", - "Description": [ - "Bwaidoka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bwe", - "Description": [ - "Bwe Karen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bwf", - "Description": [ - "Boselewa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bwg", - "Description": [ - "Barwe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bwh", - "Description": [ - "Bishuo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bwi", - "Description": [ - "Baniwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bwj", - "Description": [ - "L\u00E1\u00E1 L\u00E1\u00E1 Bwamu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bwk", - "Description": [ - "Bauwaki" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bwl", - "Description": [ - "Bwela" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bwm", - "Description": [ - "Biwat" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bwn", - "Description": [ - "Wunai Bunu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bwo", - "Description": [ - "Boro (Ethiopia)", - "Borna (Ethiopia)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bwp", - "Description": [ - "Mandobo Bawah" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bwq", - "Description": [ - "Southern Bobo Madar\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bwr", - "Description": [ - "Bura-Pabir" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bws", - "Description": [ - "Bomboma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bwt", - "Description": [ - "Bafaw-Balong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bwu", - "Description": [ - "Buli (Ghana)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bww", - "Description": [ - "Bwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bwx", - "Description": [ - "Bu-Nao Bunu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bwy", - "Description": [ - "Cwi Bwamu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bwz", - "Description": [ - "Bwisi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bxa", - "Description": [ - "Tairaha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bxb", - "Description": [ - "Belanda Bor" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bxc", - "Description": [ - "Molengue" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bxd", - "Description": [ - "Pela" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bxe", - "Description": [ - "Birale" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bxf", - "Description": [ - "Bilur", - "Minigir" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [ - "see also vmg" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bxg", - "Description": [ - "Bangala" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bxh", - "Description": [ - "Buhutu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bxi", - "Description": [ - "Pirlatapa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bxj", - "Description": [ - "Bayungu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bxk", - "Description": [ - "Bukusu", - "Lubukusu" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "luy", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bxl", - "Description": [ - "Jalkunan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bxm", - "Description": [ - "Mongolia Buriat" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "bua", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bxn", - "Description": [ - "Burduna" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bxo", - "Description": [ - "Barikanchi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bxp", - "Description": [ - "Bebil" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bxq", - "Description": [ - "Beele" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bxr", - "Description": [ - "Russia Buriat" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "bua", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bxs", - "Description": [ - "Busam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bxu", - "Description": [ - "China Buriat" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "bua", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bxv", - "Description": [ - "Berakou" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bxw", - "Description": [ - "Bankagooma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bxx", - "Description": [ - "Borna (Democratic Republic of Congo)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2015-02-12", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bxz", - "Description": [ - "Binahari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bya", - "Description": [ - "Batak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "byb", - "Description": [ - "Bikya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "byc", - "Description": [ - "Ubaghara" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "byd", - "Description": [ - "Benyadu\u0027" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bye", - "Description": [ - "Pouye" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "byf", - "Description": [ - "Bete" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "byg", - "Description": [ - "Baygo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "byh", - "Description": [ - "Bhujel" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "byi", - "Description": [ - "Buyu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "byj", - "Description": [ - "Bina (Nigeria)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "byk", - "Description": [ - "Biao" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "byl", - "Description": [ - "Bayono" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bym", - "Description": [ - "Bidjara" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "byn", - "Description": [ - "Bilin", - "Blin" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "byo", - "Description": [ - "Biyo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "byp", - "Description": [ - "Bumaji" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "byq", - "Description": [ - "Basay" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "byr", - "Description": [ - "Baruya", - "Yipma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bys", - "Description": [ - "Burak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "byt", - "Description": [ - "Berti" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "byv", - "Description": [ - "Medumba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "byw", - "Description": [ - "Belhariya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "byx", - "Description": [ - "Qaqet" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "byy", - "Description": [ - "Buya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2015-02-12", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "byz", - "Description": [ - "Banaro" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bza", - "Description": [ - "Bandi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bzb", - "Description": [ - "Andio" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bzc", - "Description": [ - "Southern Betsimisaraka Malagasy" - ], - "Added": "2011-08-16", - "Scope": "None", - "MacroLanguage": "mg", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bzd", - "Description": [ - "Bribri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bze", - "Description": [ - "Jenaama Bozo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bzf", - "Description": [ - "Boikin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bzg", - "Description": [ - "Babuza" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bzh", - "Description": [ - "Mapos Buang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bzi", - "Description": [ - "Bisu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bzj", - "Description": [ - "Belize Kriol English" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bzk", - "Description": [ - "Nicaragua Creole English" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bzl", - "Description": [ - "Boano (Sulawesi)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bzm", - "Description": [ - "Bolondo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bzn", - "Description": [ - "Boano (Maluku)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bzo", - "Description": [ - "Bozaba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bzp", - "Description": [ - "Kemberano" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bzq", - "Description": [ - "Buli (Indonesia)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bzr", - "Description": [ - "Biri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bzs", - "Description": [ - "Brazilian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bzt", - "Description": [ - "Brithenig" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bzu", - "Description": [ - "Burmeso" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bzv", - "Description": [ - "Naami" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bzw", - "Description": [ - "Basa (Nigeria)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bzx", - "Description": [ - "K\u025Bl\u025Bngaxo Bozo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bzy", - "Description": [ - "Obanliku" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "bzz", - "Description": [ - "Evant" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "caa", - "Description": [ - "Chort\u00ED" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cab", - "Description": [ - "Garifuna" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cac", - "Description": [ - "Chuj" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cad", - "Description": [ - "Caddo" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cae", - "Description": [ - "Lehar", - "Laalaa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "caf", - "Description": [ - "Southern Carrier" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cag", - "Description": [ - "Nivacl\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cah", - "Description": [ - "Cahuarano" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cai", - "Description": [ - "Central American Indian languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "caj", - "Description": [ - "Chan\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cak", - "Description": [ - "Kaqchikel", - "Cakchiquel" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cal", - "Description": [ - "Carolinian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cam", - "Description": [ - "Cemuh\u00EE" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "can", - "Description": [ - "Chambri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cao", - "Description": [ - "Ch\u00E1cobo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cap", - "Description": [ - "Chipaya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "caq", - "Description": [ - "Car Nicobarese" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "car", - "Description": [ - "Galibi Carib" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cas", - "Description": [ - "Tsiman\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cau", - "Description": [ - "Caucasian languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cav", - "Description": [ - "Cavine\u00F1a" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "caw", - "Description": [ - "Callawalla" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cax", - "Description": [ - "Chiquitano" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cay", - "Description": [ - "Cayuga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "caz", - "Description": [ - "Canichana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cba", - "Description": [ - "Chibchan languages" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cbb", - "Description": [ - "Cabiyar\u00ED" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cbc", - "Description": [ - "Carapana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cbd", - "Description": [ - "Carijona" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cbe", - "Description": [ - "Chipiajes" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2016-05-30", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cbg", - "Description": [ - "Chimila" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cbh", - "Description": [ - "Cagua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2016-05-30", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cbi", - "Description": [ - "Chachi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cbj", - "Description": [ - "Ede Cabe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cbk", - "Description": [ - "Chavacano" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cbl", - "Description": [ - "Bualkhaw Chin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cbn", - "Description": [ - "Nyahkur" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cbo", - "Description": [ - "Izora" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cbq", - "Description": [ - "Tsucuba", - "Cuba" - ], - "Added": "2015-02-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cbr", - "Description": [ - "Cashibo-Cacataibo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cbs", - "Description": [ - "Cashinahua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cbt", - "Description": [ - "Chayahuita" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cbu", - "Description": [ - "Candoshi-Shapra" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cbv", - "Description": [ - "Cacua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cbw", - "Description": [ - "Kinabalian" - ], - "Added": "2010-03-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cby", - "Description": [ - "Carabayo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cca", - "Description": [ - "Cauca" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2020-03-28", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ccc", - "Description": [ - "Chamicuro" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ccd", - "Description": [ - "Cafundo Creole" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cce", - "Description": [ - "Chopi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ccg", - "Description": [ - "Samba Daka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cch", - "Description": [ - "Atsam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ccj", - "Description": [ - "Kasanga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ccl", - "Description": [ - "Cutchi-Swahili" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ccm", - "Description": [ - "Malaccan Creole Malay" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ccn", - "Description": [ - "North Caucasian languages" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cco", - "Description": [ - "Comaltepec Chinantec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ccp", - "Description": [ - "Chakma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ccq", - "Description": [ - "Chaungtha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2012-08-12", - "Comments": [], - "Prefix": [], - "PreferredValue": "rki" - }, - { - "Type": "Language", - "SubTag": "ccr", - "Description": [ - "Cacaopera" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ccs", - "Description": [ - "South Caucasian languages" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cda", - "Description": [ - "Choni" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cdc", - "Description": [ - "Chadic languages" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cdd", - "Description": [ - "Caddoan languages" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cde", - "Description": [ - "Chenchu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cdf", - "Description": [ - "Chiru" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cdg", - "Description": [ - "Chamari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2020-03-28", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cdh", - "Description": [ - "Chambeali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cdi", - "Description": [ - "Chodri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cdj", - "Description": [ - "Churahi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cdm", - "Description": [ - "Chepang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cdn", - "Description": [ - "Chaudangsi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cdo", - "Description": [ - "Min Dong Chinese" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zh", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cdr", - "Description": [ - "Cinda-Regi-Tiyal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cds", - "Description": [ - "Chadian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cdy", - "Description": [ - "Chadong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cdz", - "Description": [ - "Koda" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cea", - "Description": [ - "Lower Chehalis" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ceb", - "Description": [ - "Cebuano" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ceg", - "Description": [ - "Chamacoco" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cek", - "Description": [ - "Eastern Khumi Chin" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cel", - "Description": [ - "Celtic languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cen", - "Description": [ - "Cen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cet", - "Description": [ - "Cent\u00FA\u00FAm" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cey", - "Description": [ - "Ekai Chin" - ], - "Added": "2019-04-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cfa", - "Description": [ - "Dijim-Bwilim" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cfd", - "Description": [ - "Cara" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cfg", - "Description": [ - "Como Karim" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cfm", - "Description": [ - "Falam Chin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cga", - "Description": [ - "Changriwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cgc", - "Description": [ - "Kagayanen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cgg", - "Description": [ - "Chiga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cgk", - "Description": [ - "Chocangacakha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "chb", - "Description": [ - "Chibcha" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "chc", - "Description": [ - "Catawba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "chd", - "Description": [ - "Highland Oaxaca Chontal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "chf", - "Description": [ - "Tabasco Chontal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "chg", - "Description": [ - "Chagatai" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "chh", - "Description": [ - "Chinook" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "chj", - "Description": [ - "Ojitl\u00E1n Chinantec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "chk", - "Description": [ - "Chuukese" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "chl", - "Description": [ - "Cahuilla" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "chm", - "Description": [ - "Mari (Russia)" - ], - "Added": "2005-10-16", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "chn", - "Description": [ - "Chinook jargon" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cho", - "Description": [ - "Choctaw" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "chp", - "Description": [ - "Chipewyan", - "Dene Suline" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "chq", - "Description": [ - "Quiotepec Chinantec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "chr", - "Description": [ - "Cherokee" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cht", - "Description": [ - "Chol\u00F3n" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "chw", - "Description": [ - "Chuwabu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "chx", - "Description": [ - "Chantyal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "chy", - "Description": [ - "Cheyenne" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "chz", - "Description": [ - "Ozumac\u00EDn Chinantec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cia", - "Description": [ - "Cia-Cia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cib", - "Description": [ - "Ci Gbe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cic", - "Description": [ - "Chickasaw" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cid", - "Description": [ - "Chimariko" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cie", - "Description": [ - "Cineni" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cih", - "Description": [ - "Chinali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cik", - "Description": [ - "Chitkuli Kinnauri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cim", - "Description": [ - "Cimbrian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cin", - "Description": [ - "Cinta Larga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cip", - "Description": [ - "Chiapanec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cir", - "Description": [ - "Tiri", - "Ham\u00E9a", - "M\u00E9a" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ciw", - "Description": [ - "Chippewa" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "oj", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ciy", - "Description": [ - "Chaima" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cja", - "Description": [ - "Western Cham" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cje", - "Description": [ - "Chru" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cjh", - "Description": [ - "Upper Chehalis" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cji", - "Description": [ - "Chamalal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cjk", - "Description": [ - "Chokwe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cjm", - "Description": [ - "Eastern Cham" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cjn", - "Description": [ - "Chenapian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cjo", - "Description": [ - "Ash\u00E9ninka Pajonal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cjp", - "Description": [ - "Cab\u00E9car" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cjr", - "Description": [ - "Chorotega" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2010-03-11", - "Comments": [], - "Prefix": [], - "PreferredValue": "mom" - }, - { - "Type": "Language", - "SubTag": "cjs", - "Description": [ - "Shor" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cjv", - "Description": [ - "Chuave" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cjy", - "Description": [ - "Jinyu Chinese" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zh", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cka", - "Description": [ - "Khumi Awa Chin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2012-08-12", - "Comments": [], - "Prefix": [], - "PreferredValue": "cmr" - }, - { - "Type": "Language", - "SubTag": "ckb", - "Description": [ - "Central Kurdish" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ku", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ckh", - "Description": [ - "Chak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ckl", - "Description": [ - "Cibak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ckm", - "Description": [ - "Chakavian" - ], - "Added": "2020-03-28", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ckn", - "Description": [ - "Kaang Chin" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cko", - "Description": [ - "Anufo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ckq", - "Description": [ - "Kajakse" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ckr", - "Description": [ - "Kairak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cks", - "Description": [ - "Tayo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ckt", - "Description": [ - "Chukot" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cku", - "Description": [ - "Koasati" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ckv", - "Description": [ - "Kavalan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ckx", - "Description": [ - "Caka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cky", - "Description": [ - "Cakfem-Mushere" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ckz", - "Description": [ - "Cakchiquel-Quich\u00E9 Mixed Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cla", - "Description": [ - "Ron" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "clc", - "Description": [ - "Chilcotin", - "Tsilhqot\u2019in" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cld", - "Description": [ - "Chaldean Neo-Aramaic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "syr", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cle", - "Description": [ - "Lealao Chinantec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "clh", - "Description": [ - "Chilisso" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cli", - "Description": [ - "Chakali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "clj", - "Description": [ - "Laitu Chin" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "clk", - "Description": [ - "Idu-Mishmi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cll", - "Description": [ - "Chala" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "clm", - "Description": [ - "Klallam", - "Clallam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "clo", - "Description": [ - "Lowland Oaxaca Chontal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cls", - "Description": [ - "Classical Sanskrit" - ], - "Added": "2024-03-04", - "Scope": "None", - "MacroLanguage": "sa", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "clt", - "Description": [ - "Lautu Chin" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "clu", - "Description": [ - "Caluyanun" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "clw", - "Description": [ - "Chulym" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cly", - "Description": [ - "Eastern Highland Chatino" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cma", - "Description": [ - "Maa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cmc", - "Description": [ - "Chamic languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cme", - "Description": [ - "Cerma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cmg", - "Description": [ - "Classical Mongolian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cmi", - "Description": [ - "Ember\u00E1-Cham\u00ED" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cmk", - "Description": [ - "Chimakum" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2010-03-11", - "Comments": [], - "Prefix": [], - "PreferredValue": "xch" - }, - { - "Type": "Language", - "SubTag": "cml", - "Description": [ - "Campalagian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cmm", - "Description": [ - "Michigamea" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cmn", - "Description": [ - "Mandarin Chinese" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zh", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cmo", - "Description": [ - "Central Mnong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cmr", - "Description": [ - "Mro-Khimi Chin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cms", - "Description": [ - "Messapic" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cmt", - "Description": [ - "Camtho" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cna", - "Description": [ - "Changthang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cnb", - "Description": [ - "Chinbon Chin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cnc", - "Description": [ - "C\u00F4\u00F4ng" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cng", - "Description": [ - "Northern Qiang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cnh", - "Description": [ - "Hakha Chin", - "Haka Chin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cni", - "Description": [ - "Ash\u00E1ninka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cnk", - "Description": [ - "Khumi Chin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cnl", - "Description": [ - "Lalana Chinantec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cno", - "Description": [ - "Con" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cnp", - "Description": [ - "Northern Ping Chinese", - "Northern Pinghua" - ], - "Added": "2020-03-28", - "Scope": "None", - "MacroLanguage": "zh", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cnq", - "Description": [ - "Chung" - ], - "Added": "2022-02-25", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cnr", - "Description": [ - "Montenegrin" - ], - "Added": "2018-01-23", - "Scope": "None", - "MacroLanguage": "sh", - "Comments": [ - "see sr for Serbian" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cns", - "Description": [ - "Central Asmat" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cnt", - "Description": [ - "Tepetotutla Chinantec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cnu", - "Description": [ - "Chenoua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cnw", - "Description": [ - "Ngawn Chin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cnx", - "Description": [ - "Middle Cornish" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "coa", - "Description": [ - "Cocos Islands Malay" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cob", - "Description": [ - "Chicomuceltec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "coc", - "Description": [ - "Cocopa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cod", - "Description": [ - "Cocama-Cocamilla" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "coe", - "Description": [ - "Koreguaje" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cof", - "Description": [ - "Colorado" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cog", - "Description": [ - "Chong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "coh", - "Description": [ - "Chonyi-Dzihana-Kauma", - "Chichonyi-Chidzihana-Chikauma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "coj", - "Description": [ - "Cochimi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cok", - "Description": [ - "Santa Teresa Cora" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "col", - "Description": [ - "Columbia-Wenatchi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "com", - "Description": [ - "Comanche" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "con", - "Description": [ - "Cof\u00E1n" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "coo", - "Description": [ - "Comox" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cop", - "Description": [ - "Coptic" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "coq", - "Description": [ - "Coquille" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cot", - "Description": [ - "Caquinte" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cou", - "Description": [ - "Wamey" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cov", - "Description": [ - "Cao Miao" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cow", - "Description": [ - "Cowlitz" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cox", - "Description": [ - "Nanti" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "coy", - "Description": [ - "Coyaima" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2016-05-30", - "Comments": [], - "Prefix": [], - "PreferredValue": "pij" - }, - { - "Type": "Language", - "SubTag": "coz", - "Description": [ - "Chochotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cpa", - "Description": [ - "Palantla Chinantec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cpb", - "Description": [ - "Ucayali-Yur\u00FAa Ash\u00E9ninka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cpc", - "Description": [ - "Ajy\u00EDninka Apurucayali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cpe", - "Description": [ - "English-based creoles and pidgins" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cpf", - "Description": [ - "French-based creoles and pidgins" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cpg", - "Description": [ - "Cappadocian Greek" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cpi", - "Description": [ - "Chinese Pidgin English" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cpn", - "Description": [ - "Cherepon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cpo", - "Description": [ - "Kpeego" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cpp", - "Description": [ - "Portuguese-based creoles and pidgins" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cps", - "Description": [ - "Capiznon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cpu", - "Description": [ - "Pichis Ash\u00E9ninka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cpx", - "Description": [ - "Pu-Xian Chinese" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zh", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cpy", - "Description": [ - "South Ucayali Ash\u00E9ninka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cqd", - "Description": [ - "Chuanqiandian Cluster Miao" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "hmn", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cqu", - "Description": [ - "Chilean Quechua" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "qu", - "Deprecated": "2016-05-30", - "Comments": [], - "Prefix": [], - "PreferredValue": "quh" - }, - { - "Type": "Language", - "SubTag": "cra", - "Description": [ - "Chara" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "crb", - "Description": [ - "Island Carib" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "crc", - "Description": [ - "Lonwolwol" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "crd", - "Description": [ - "Coeur d\u0027Alene" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "crf", - "Description": [ - "Caramanta" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "crg", - "Description": [ - "Michif" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "crh", - "Description": [ - "Crimean Tatar", - "Crimean Turkish" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cri", - "Description": [ - "S\u00E3otomense" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "crj", - "Description": [ - "Southern East Cree" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "cr", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "crk", - "Description": [ - "Plains Cree" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "cr", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "crl", - "Description": [ - "Northern East Cree" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "cr", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "crm", - "Description": [ - "Moose Cree" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "cr", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "crn", - "Description": [ - "El Nayar Cora" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cro", - "Description": [ - "Crow" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "crp", - "Description": [ - "Creoles and pidgins" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "crq", - "Description": [ - "Iyo\u0027wujwa Chorote" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "crr", - "Description": [ - "Carolina Algonquian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "crs", - "Description": [ - "Seselwa Creole French" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "crt", - "Description": [ - "Iyojwa\u0027ja Chorote" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "crv", - "Description": [ - "Chaura" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "crw", - "Description": [ - "Chrau" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "crx", - "Description": [ - "Carrier" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cry", - "Description": [ - "Cori" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "crz", - "Description": [ - "Cruze\u00F1o" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "csa", - "Description": [ - "Chiltepec Chinantec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "csb", - "Description": [ - "Kashubian" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "csc", - "Description": [ - "Catalan Sign Language", - "Lengua de se\u00F1as catalana", - "Llengua de Signes Catalana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "csd", - "Description": [ - "Chiangmai Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cse", - "Description": [ - "Czech Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "csf", - "Description": [ - "Cuba Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "csg", - "Description": [ - "Chilean Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "csh", - "Description": [ - "Asho Chin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "csi", - "Description": [ - "Coast Miwok" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "csj", - "Description": [ - "Songlai Chin" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "csk", - "Description": [ - "Jola-Kasa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "csl", - "Description": [ - "Chinese Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "csm", - "Description": [ - "Central Sierra Miwok" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "csn", - "Description": [ - "Colombian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cso", - "Description": [ - "Sochiapam Chinantec", - "Sochiapan Chinantec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "csp", - "Description": [ - "Southern Ping Chinese", - "Southern Pinghua" - ], - "Added": "2020-03-28", - "Scope": "None", - "MacroLanguage": "zh", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "csq", - "Description": [ - "Croatia Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "csr", - "Description": [ - "Costa Rican Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "css", - "Description": [ - "Southern Ohlone" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cst", - "Description": [ - "Northern Ohlone" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "csu", - "Description": [ - "Central Sudanic languages" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "csv", - "Description": [ - "Sumtu Chin" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "csw", - "Description": [ - "Swampy Cree" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "cr", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "csx", - "Description": [ - "Cambodian Sign Language" - ], - "Added": "2021-02-20", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "csy", - "Description": [ - "Siyin Chin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "csz", - "Description": [ - "Coos" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cta", - "Description": [ - "Tataltepec Chatino" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ctc", - "Description": [ - "Chetco" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ctd", - "Description": [ - "Tedim Chin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cte", - "Description": [ - "Tepinapa Chinantec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ctg", - "Description": [ - "Chittagonian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cth", - "Description": [ - "Thaiphum Chin" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ctl", - "Description": [ - "Tlacoatzintepec Chinantec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ctm", - "Description": [ - "Chitimacha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ctn", - "Description": [ - "Chhintange" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cto", - "Description": [ - "Ember\u00E1-Cat\u00EDo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ctp", - "Description": [ - "Western Highland Chatino" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cts", - "Description": [ - "Northern Catanduanes Bikol" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "bik", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ctt", - "Description": [ - "Wayanad Chetti" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ctu", - "Description": [ - "Chol" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cty", - "Description": [ - "Moundadan Chetty" - ], - "Added": "2021-02-20", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ctz", - "Description": [ - "Zacatepec Chatino" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cua", - "Description": [ - "Cua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cub", - "Description": [ - "Cubeo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cuc", - "Description": [ - "Usila Chinantec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cug", - "Description": [ - "Chungmboko", - "Cung" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2022-02-25", - "Comments": [ - "see bpc, cnq" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cuh", - "Description": [ - "Chuka", - "Gichuka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cui", - "Description": [ - "Cuiba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cuj", - "Description": [ - "Mashco Piro" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cuk", - "Description": [ - "San Blas Kuna" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cul", - "Description": [ - "Culina", - "Kulina" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cum", - "Description": [ - "Cumeral" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2016-05-30", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cuo", - "Description": [ - "Cumanagoto" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cup", - "Description": [ - "Cupe\u00F1o" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cuq", - "Description": [ - "Cun" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cur", - "Description": [ - "Chhulung" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cus", - "Description": [ - "Cushitic languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cut", - "Description": [ - "Teutila Cuicatec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cuu", - "Description": [ - "Tai Ya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cuv", - "Description": [ - "Cuvok" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cuw", - "Description": [ - "Chukwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cux", - "Description": [ - "Tepeuxila Cuicatec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cuy", - "Description": [ - "Cuitlatec" - ], - "Added": "2018-03-08", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cvg", - "Description": [ - "Chug" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cvn", - "Description": [ - "Valle Nacional Chinantec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cwa", - "Description": [ - "Kabwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cwb", - "Description": [ - "Maindo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cwd", - "Description": [ - "Woods Cree" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "cr", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cwe", - "Description": [ - "Kwere" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cwg", - "Description": [ - "Chewong", - "Cheq Wong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cwt", - "Description": [ - "Kuwaataay" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cxh", - "Description": [ - "Cha\u0027ari" - ], - "Added": "2023-03-17", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cya", - "Description": [ - "Nopala Chatino" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cyb", - "Description": [ - "Cayubaba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "cyo", - "Description": [ - "Cuyonon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "czh", - "Description": [ - "Huizhou Chinese" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zh", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "czk", - "Description": [ - "Knaanic" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "czn", - "Description": [ - "Zenzontepec Chatino" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "czo", - "Description": [ - "Min Zhong Chinese" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zh", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "czt", - "Description": [ - "Zotung Chin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "daa", - "Description": [ - "Dangal\u00E9at" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dac", - "Description": [ - "Dambi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dad", - "Description": [ - "Marik" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dae", - "Description": [ - "Duupa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "daf", - "Description": [ - "Dan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2013-09-10", - "Comments": [ - "see dnj, lda" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dag", - "Description": [ - "Dagbani" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dah", - "Description": [ - "Gwahatike" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dai", - "Description": [ - "Day" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "daj", - "Description": [ - "Dar Fur Daju" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dak", - "Description": [ - "Dakota" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dal", - "Description": [ - "Dahalo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dam", - "Description": [ - "Damakawa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dao", - "Description": [ - "Daai Chin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dap", - "Description": [ - "Nisi (India)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2012-08-12", - "Comments": [ - "see njz, tgj" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "daq", - "Description": [ - "Dandami Maria" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dar", - "Description": [ - "Dargwa" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "das", - "Description": [ - "Daho-Doo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dau", - "Description": [ - "Dar Sila Daju" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dav", - "Description": [ - "Taita", - "Dawida" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "daw", - "Description": [ - "Davawenyo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dax", - "Description": [ - "Dayi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "day", - "Description": [ - "Land Dayak languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "daz", - "Description": [ - "Moi-Wadea", - "Dao" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dba", - "Description": [ - "Bangime" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dbb", - "Description": [ - "Deno" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dbd", - "Description": [ - "Dadiya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dbe", - "Description": [ - "Dabe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dbf", - "Description": [ - "Edopi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dbg", - "Description": [ - "Dogul Dom Dogon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dbi", - "Description": [ - "Doka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dbj", - "Description": [ - "Ida\u0027an" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dbl", - "Description": [ - "Dyirbal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dbm", - "Description": [ - "Duguri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dbn", - "Description": [ - "Duriankere" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dbo", - "Description": [ - "Dulbu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dbp", - "Description": [ - "Duwai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dbq", - "Description": [ - "Daba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dbr", - "Description": [ - "Dabarre" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dbt", - "Description": [ - "Ben Tey Dogon" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dbu", - "Description": [ - "Bondum Dom Dogon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dbv", - "Description": [ - "Dungu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dbw", - "Description": [ - "Bankan Tey Dogon" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dby", - "Description": [ - "Dibiyaso" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dcc", - "Description": [ - "Deccan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dcr", - "Description": [ - "Negerhollands" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dda", - "Description": [ - "Dadi Dadi" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ddd", - "Description": [ - "Dongotono" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dde", - "Description": [ - "Doondo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ddg", - "Description": [ - "Fataluku" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ddi", - "Description": [ - "West Goodenough" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ddj", - "Description": [ - "Jaru" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ddn", - "Description": [ - "Dendi (Benin)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ddo", - "Description": [ - "Dido" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ddr", - "Description": [ - "Dhudhuroa" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dds", - "Description": [ - "Donno So Dogon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ddw", - "Description": [ - "Dawera-Daweloor" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dec", - "Description": [ - "Dagik" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ded", - "Description": [ - "Dedua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dee", - "Description": [ - "Dewoin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "def", - "Description": [ - "Dezfuli" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "deg", - "Description": [ - "Degema" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "deh", - "Description": [ - "Dehwari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dei", - "Description": [ - "Demisa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dek", - "Description": [ - "Dek" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2024-12-12", - "Comments": [], - "Prefix": [], - "PreferredValue": "sqm" - }, - { - "Type": "Language", - "SubTag": "del", - "Description": [ - "Delaware" - ], - "Added": "2005-10-16", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dem", - "Description": [ - "Dem" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "den", - "Description": [ - "Slavey" - ], - "Added": "2005-10-16", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dep", - "Description": [ - "Pidgin Delaware" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "deq", - "Description": [ - "Dendi (Central African Republic)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "der", - "Description": [ - "Deori" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "des", - "Description": [ - "Desano" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dev", - "Description": [ - "Domung" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dez", - "Description": [ - "Dengese" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dga", - "Description": [ - "Southern Dagaare" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dgb", - "Description": [ - "Bunoge Dogon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dgc", - "Description": [ - "Casiguran Dumagat Agta" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dgd", - "Description": [ - "Dagaari Dioula" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dge", - "Description": [ - "Degenan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dgg", - "Description": [ - "Doga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dgh", - "Description": [ - "Dghwede" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dgi", - "Description": [ - "Northern Dagara" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dgk", - "Description": [ - "Dagba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dgl", - "Description": [ - "Andaandi", - "Dongolawi" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dgn", - "Description": [ - "Dagoman" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dgo", - "Description": [ - "Dogri (individual language)" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "doi", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dgr", - "Description": [ - "Tlicho", - "Dogrib", - "T\u0142\u0131\u0328ch\u01EB" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dgs", - "Description": [ - "Dogoso" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dgt", - "Description": [ - "Ndra\u0027ngith" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dgu", - "Description": [ - "Degaru" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2020-03-28", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dgw", - "Description": [ - "Daungwurrung" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dgx", - "Description": [ - "Doghoro" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dgz", - "Description": [ - "Daga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dha", - "Description": [ - "Dhanwar (India)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2011-08-16", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dhd", - "Description": [ - "Dhundari" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "mwr", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dhg", - "Description": [ - "Dhangu-Djangu", - "Dhangu", - "Djangu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dhi", - "Description": [ - "Dhimal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dhl", - "Description": [ - "Dhalandji" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dhm", - "Description": [ - "Zemba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dhn", - "Description": [ - "Dhanki" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dho", - "Description": [ - "Dhodia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dhr", - "Description": [ - "Dhargari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dhs", - "Description": [ - "Dhaiso" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dhu", - "Description": [ - "Dhurga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dhv", - "Description": [ - "Dehu", - "Drehu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dhw", - "Description": [ - "Dhanwar (Nepal)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dhx", - "Description": [ - "Dhungaloo" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dia", - "Description": [ - "Dia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dib", - "Description": [ - "South Central Dinka" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "din", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dic", - "Description": [ - "Lakota Dida" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "did", - "Description": [ - "Didinga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dif", - "Description": [ - "Dieri", - "Diyari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dig", - "Description": [ - "Digo", - "Chidigo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dih", - "Description": [ - "Kumiai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dii", - "Description": [ - "Dimbong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dij", - "Description": [ - "Dai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dik", - "Description": [ - "Southwestern Dinka" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "din", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dil", - "Description": [ - "Dilling" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dim", - "Description": [ - "Dime" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "din", - "Description": [ - "Dinka" - ], - "Added": "2005-10-16", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dio", - "Description": [ - "Dibo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dip", - "Description": [ - "Northeastern Dinka" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "din", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "diq", - "Description": [ - "Dimli (individual language)" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zza", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dir", - "Description": [ - "Dirim" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dis", - "Description": [ - "Dimasa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dit", - "Description": [ - "Dirari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2019-04-29", - "Comments": [], - "Prefix": [], - "PreferredValue": "dif" - }, - { - "Type": "Language", - "SubTag": "diu", - "Description": [ - "Diriku" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "diw", - "Description": [ - "Northwestern Dinka" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "din", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dix", - "Description": [ - "Dixon Reef" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "diy", - "Description": [ - "Diuwe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "diz", - "Description": [ - "Ding" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dja", - "Description": [ - "Djadjawurrung" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "djb", - "Description": [ - "Djinba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "djc", - "Description": [ - "Dar Daju Daju" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "djd", - "Description": [ - "Djamindjung", - "Ngaliwurru" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dje", - "Description": [ - "Zarma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "djf", - "Description": [ - "Djangun" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dji", - "Description": [ - "Djinang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "djj", - "Description": [ - "Djeebbana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "djk", - "Description": [ - "Eastern Maroon Creole", - "Businenge Tongo", - "Nenge" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "djl", - "Description": [ - "Djiwarli" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2013-09-10", - "Comments": [ - "see dze, iin" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "djm", - "Description": [ - "Jamsay Dogon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "djn", - "Description": [ - "Jawoyn", - "Djauan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "djo", - "Description": [ - "Jangkang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "djr", - "Description": [ - "Djambarrpuyngu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dju", - "Description": [ - "Kapriman" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "djw", - "Description": [ - "Djawi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dka", - "Description": [ - "Dakpakha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dkg", - "Description": [ - "Kadung" - ], - "Added": "2021-02-20", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dkk", - "Description": [ - "Dakka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dkl", - "Description": [ - "Kolum So Dogon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2011-08-16", - "Comments": [ - "see aqd, dmb" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dkr", - "Description": [ - "Kuijau" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dks", - "Description": [ - "Southeastern Dinka" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "din", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dkx", - "Description": [ - "Mazagway" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dlg", - "Description": [ - "Dolgan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dlk", - "Description": [ - "Dahalik" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dlm", - "Description": [ - "Dalmatian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dln", - "Description": [ - "Darlong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dma", - "Description": [ - "Duma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dmb", - "Description": [ - "Mombo Dogon" - ], - "Added": "2011-08-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dmc", - "Description": [ - "Gavak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dmd", - "Description": [ - "Madhi Madhi" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dme", - "Description": [ - "Dugwor" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dmf", - "Description": [ - "Medefaidrin" - ], - "Added": "2020-03-28", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dmg", - "Description": [ - "Upper Kinabatangan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dmk", - "Description": [ - "Domaaki" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dml", - "Description": [ - "Dameli" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dmm", - "Description": [ - "Dama" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dmn", - "Description": [ - "Mande languages" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dmo", - "Description": [ - "Kemedzung" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dmr", - "Description": [ - "East Damar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dms", - "Description": [ - "Dampelas" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dmu", - "Description": [ - "Dubu", - "Tebi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dmv", - "Description": [ - "Dumpas" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dmw", - "Description": [ - "Mudburra" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dmx", - "Description": [ - "Dema" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dmy", - "Description": [ - "Demta", - "Sowari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dna", - "Description": [ - "Upper Grand Valley Dani" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dnd", - "Description": [ - "Daonda" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dne", - "Description": [ - "Ndendeule" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dng", - "Description": [ - "Dungan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dni", - "Description": [ - "Lower Grand Valley Dani" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dnj", - "Description": [ - "Dan" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dnk", - "Description": [ - "Dengka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dnn", - "Description": [ - "Dz\u00F9\u00F9ngoo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dno", - "Description": [ - "Ndrulo", - "Northern Lendu" - ], - "Added": "2018-10-28", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dnr", - "Description": [ - "Danaru" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dnt", - "Description": [ - "Mid Grand Valley Dani" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dnu", - "Description": [ - "Danau" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dnv", - "Description": [ - "Danu" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dnw", - "Description": [ - "Western Dani" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dny", - "Description": [ - "Den\u00ED" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "doa", - "Description": [ - "Dom" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dob", - "Description": [ - "Dobu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "doc", - "Description": [ - "Northern Dong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "doe", - "Description": [ - "Doe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dof", - "Description": [ - "Domu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "doh", - "Description": [ - "Dong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "doi", - "Description": [ - "Dogri (macrolanguage)" - ], - "Added": "2005-10-16", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dok", - "Description": [ - "Dondo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dol", - "Description": [ - "Doso" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "don", - "Description": [ - "Toura (Papua New Guinea)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "doo", - "Description": [ - "Dongo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dop", - "Description": [ - "Lukpa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "doq", - "Description": [ - "Dominican Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dor", - "Description": [ - "Dori\u0027o" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dos", - "Description": [ - "Dogos\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dot", - "Description": [ - "Dass" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dov", - "Description": [ - "Dombe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dow", - "Description": [ - "Doyayo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dox", - "Description": [ - "Bussa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "doy", - "Description": [ - "Dompo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "doz", - "Description": [ - "Dorze" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dpp", - "Description": [ - "Papar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dra", - "Description": [ - "Dravidian languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "drb", - "Description": [ - "Dair" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "drc", - "Description": [ - "Minderico" - ], - "Added": "2011-08-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "drd", - "Description": [ - "Darmiya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dre", - "Description": [ - "Dolpo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "drg", - "Description": [ - "Rungus" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "drh", - "Description": [ - "Darkhat" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2010-03-11", - "Comments": [], - "Prefix": [], - "PreferredValue": "khk" - }, - { - "Type": "Language", - "SubTag": "dri", - "Description": [ - "C\u0027Lela" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "drl", - "Description": [ - "Paakantyi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "drn", - "Description": [ - "West Damar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dro", - "Description": [ - "Daro-Matu Melanau" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "drq", - "Description": [ - "Dura" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "drr", - "Description": [ - "Dororo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2020-03-28", - "Comments": [], - "Prefix": [], - "PreferredValue": "kzk" - }, - { - "Type": "Language", - "SubTag": "drs", - "Description": [ - "Gedeo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "drt", - "Description": [ - "Drents" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dru", - "Description": [ - "Rukai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "drw", - "Description": [ - "Darwazi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2010-03-11", - "Comments": [], - "Prefix": [], - "PreferredValue": "prs" - }, - { - "Type": "Language", - "SubTag": "dry", - "Description": [ - "Darai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dsb", - "Description": [ - "Lower Sorbian" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dse", - "Description": [ - "Dutch Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dsh", - "Description": [ - "Daasanach" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dsi", - "Description": [ - "Disa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dsk", - "Description": [ - "Dokshi" - ], - "Added": "2023-03-17", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dsl", - "Description": [ - "Danish Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dsn", - "Description": [ - "Dusner" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dso", - "Description": [ - "Desiya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dsq", - "Description": [ - "Tadaksahak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dsz", - "Description": [ - "Mardin Sign Language" - ], - "Added": "2022-02-25", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dta", - "Description": [ - "Daur" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dtb", - "Description": [ - "Labuk-Kinabatangan Kadazan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dtd", - "Description": [ - "Ditidaht" - ], - "Added": "2011-08-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dth", - "Description": [ - "Adithinngithigh" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dti", - "Description": [ - "Ana Tinga Dogon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dtk", - "Description": [ - "Tene Kan Dogon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dtm", - "Description": [ - "Tomo Kan Dogon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dtn", - "Description": [ - "Daats\u02BC\u00EDin" - ], - "Added": "2016-05-30", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dto", - "Description": [ - "Tommo So Dogon" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dtp", - "Description": [ - "Kadazan Dusun", - "Central Dusun" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dtr", - "Description": [ - "Lotud" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dts", - "Description": [ - "Toro So Dogon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dtt", - "Description": [ - "Toro Tegu Dogon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dtu", - "Description": [ - "Tebul Ure Dogon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dty", - "Description": [ - "Dotyali" - ], - "Added": "2012-08-12", - "Scope": "None", - "MacroLanguage": "ne", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dua", - "Description": [ - "Duala" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dub", - "Description": [ - "Dubli" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "duc", - "Description": [ - "Duna" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dud", - "Description": [ - "Hun-Saare" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2019-04-16", - "Comments": [ - "see uth, uss" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "due", - "Description": [ - "Umiray Dumaget Agta" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "duf", - "Description": [ - "Dumbea", - "Drubea" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dug", - "Description": [ - "Duruma", - "Chiduruma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "duh", - "Description": [ - "Dungra Bhil" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dui", - "Description": [ - "Dumun" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "duj", - "Description": [ - "Dhuwal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2016-05-30", - "Comments": [ - "see dwu, dwy" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "duk", - "Description": [ - "Uyajitaya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dul", - "Description": [ - "Alabat Island Agta" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dum", - "Description": [ - "Middle Dutch (ca. 1050-1350)" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dun", - "Description": [ - "Dusun Deyah" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "duo", - "Description": [ - "Dupaninan Agta" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dup", - "Description": [ - "Duano" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "duq", - "Description": [ - "Dusun Malang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dur", - "Description": [ - "Dii" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dus", - "Description": [ - "Dumi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "duu", - "Description": [ - "Drung" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "duv", - "Description": [ - "Duvle" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "duw", - "Description": [ - "Dusun Witu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dux", - "Description": [ - "Duungooma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "duy", - "Description": [ - "Dicamay Agta" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "duz", - "Description": [ - "Duli-Gey" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dva", - "Description": [ - "Duau" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dwa", - "Description": [ - "Diri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dwk", - "Description": [ - "Dawik Kui" - ], - "Added": "2020-03-28", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dwl", - "Description": [ - "Walo Kumbe Dogon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2012-08-12", - "Comments": [ - "see dbt, dbw" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dwr", - "Description": [ - "Dawro" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dws", - "Description": [ - "Dutton World Speedwords" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dwu", - "Description": [ - "Dhuwal" - ], - "Added": "2016-05-30", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dww", - "Description": [ - "Dawawa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dwy", - "Description": [ - "Dhuwaya" - ], - "Added": "2016-05-30", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dwz", - "Description": [ - "Dewas Rai" - ], - "Added": "2018-10-28", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dya", - "Description": [ - "Dyan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dyb", - "Description": [ - "Dyaberdyaber" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dyd", - "Description": [ - "Dyugun" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dyg", - "Description": [ - "Villa Viciosa Agta" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dyi", - "Description": [ - "Djimini Senoufo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dyl", - "Description": [ - "Bhutanese Sign Language" - ], - "Added": "2026-04-09", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dym", - "Description": [ - "Yanda Dom Dogon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dyn", - "Description": [ - "Dyangadi", - "Dhanggatti" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dyo", - "Description": [ - "Jola-Fonyi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dyr", - "Description": [ - "Dyarim" - ], - "Added": "2023-03-17", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dyu", - "Description": [ - "Dyula" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dyy", - "Description": [ - "Djabugay", - "Dyaabugay" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dza", - "Description": [ - "Tunzu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dzd", - "Description": [ - "Daza" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dze", - "Description": [ - "Djiwarli" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dzg", - "Description": [ - "Dazaga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dzl", - "Description": [ - "Dzalakha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "dzn", - "Description": [ - "Dzando" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "eaa", - "Description": [ - "Karenggapa" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ebc", - "Description": [ - "Beginci" - ], - "Added": "2020-03-28", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ebg", - "Description": [ - "Ebughu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ebk", - "Description": [ - "Eastern Bontok" - ], - "Added": "2010-03-11", - "Scope": "None", - "MacroLanguage": "bnc", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ebo", - "Description": [ - "Teke-Ebo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ebr", - "Description": [ - "Ebri\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ebu", - "Description": [ - "Embu", - "Kiembu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ecr", - "Description": [ - "Eteocretan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ecs", - "Description": [ - "Ecuadorian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ecy", - "Description": [ - "Eteocypriot" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "eee", - "Description": [ - "E" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "efa", - "Description": [ - "Efai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "efe", - "Description": [ - "Efe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "efi", - "Description": [ - "Efik" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ega", - "Description": [ - "Ega" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "egl", - "Description": [ - "Emilian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "egm", - "Description": [ - "Benamanga" - ], - "Added": "2022-02-25", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ego", - "Description": [ - "Eggon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "egx", - "Description": [ - "Egyptian languages" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "egy", - "Description": [ - "Egyptian (Ancient)" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ehs", - "Description": [ - "Miyakubo Sign Language" - ], - "Added": "2021-02-20", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ehu", - "Description": [ - "Ehueun" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "eip", - "Description": [ - "Eipomek" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "eit", - "Description": [ - "Eitiep" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "eiv", - "Description": [ - "Askopan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "eja", - "Description": [ - "Ejamat" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "eka", - "Description": [ - "Ekajuk" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ekc", - "Description": [ - "Eastern Karnic" - ], - "Added": "2013-09-10", - "Scope": "None", - "Deprecated": "2020-03-28", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "eke", - "Description": [ - "Ekit" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ekg", - "Description": [ - "Ekari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "eki", - "Description": [ - "Eki" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ekk", - "Description": [ - "Standard Estonian" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "et", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ekl", - "Description": [ - "Kol (Bangladesh)", - "Kol" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ekm", - "Description": [ - "Elip" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "eko", - "Description": [ - "Koti" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ekp", - "Description": [ - "Ekpeye" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ekr", - "Description": [ - "Yace" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "eky", - "Description": [ - "Eastern Kayah" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ele", - "Description": [ - "Elepi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "elh", - "Description": [ - "El Hugeirat" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "eli", - "Description": [ - "Nding" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "elk", - "Description": [ - "Elkei" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "elm", - "Description": [ - "Eleme" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "elo", - "Description": [ - "El Molo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "elp", - "Description": [ - "Elpaputih" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2012-08-12", - "Comments": [ - "see amq, plh" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "elu", - "Description": [ - "Elu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "elx", - "Description": [ - "Elamite" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ema", - "Description": [ - "Emai-Iuleha-Ora" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "emb", - "Description": [ - "Embaloh" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "eme", - "Description": [ - "Emerillon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "emg", - "Description": [ - "Eastern Meohang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "emi", - "Description": [ - "Mussau-Emira" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "emk", - "Description": [ - "Eastern Maninkakan" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "man", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "emm", - "Description": [ - "Mamulique" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "emn", - "Description": [ - "Eman" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "emo", - "Description": [ - "Emok" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2014-02-28", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "emp", - "Description": [ - "Northern Ember\u00E1" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "emq", - "Description": [ - "Eastern Minyag" - ], - "Added": "2021-02-20", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ems", - "Description": [ - "Pacific Gulf Yupik" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "emu", - "Description": [ - "Eastern Muria" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "emw", - "Description": [ - "Emplawas" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "emx", - "Description": [ - "Erromintxela" - ], - "Added": "2010-03-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "emy", - "Description": [ - "Epigraphic Mayan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "emz", - "Description": [ - "Mbessa" - ], - "Added": "2021-02-20", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ena", - "Description": [ - "Apali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "enb", - "Description": [ - "Markweeta" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "kln", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "enc", - "Description": [ - "En" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "end", - "Description": [ - "Ende" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "enf", - "Description": [ - "Forest Enets" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "enh", - "Description": [ - "Tundra Enets" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "enl", - "Description": [ - "Enlhet" - ], - "Added": "2014-02-28", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "enm", - "Description": [ - "Middle English (1100-1500)" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "enn", - "Description": [ - "Engenni" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "eno", - "Description": [ - "Enggano" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "enq", - "Description": [ - "Enga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "enr", - "Description": [ - "Emumu", - "Emem" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "enu", - "Description": [ - "Enu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "env", - "Description": [ - "Enwan (Edo State)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "enw", - "Description": [ - "Enwan (Akwa Ibom State)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "enx", - "Description": [ - "Enxet" - ], - "Added": "2014-02-28", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "eot", - "Description": [ - "Beti (C\u00F4te d\u0027Ivoire)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "epi", - "Description": [ - "Epie" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "era", - "Description": [ - "Eravallan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "erg", - "Description": [ - "Sie" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "erh", - "Description": [ - "Eruwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "eri", - "Description": [ - "Ogea" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "erk", - "Description": [ - "South Efate" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ero", - "Description": [ - "Horpa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "err", - "Description": [ - "Erre" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ers", - "Description": [ - "Ersu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ert", - "Description": [ - "Eritai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "erw", - "Description": [ - "Erokwanas" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ese", - "Description": [ - "Ese Ejja" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "esg", - "Description": [ - "Aheri Gondi" - ], - "Added": "2016-05-30", - "Scope": "None", - "MacroLanguage": "gon", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "esh", - "Description": [ - "Eshtehardi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "esi", - "Description": [ - "North Alaskan Inupiatun" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ik", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "esk", - "Description": [ - "Northwest Alaska Inupiatun" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ik", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "esl", - "Description": [ - "Egypt Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "esm", - "Description": [ - "Esuma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "esn", - "Description": [ - "Salvadoran Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "eso", - "Description": [ - "Estonian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "esq", - "Description": [ - "Esselen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ess", - "Description": [ - "Central Siberian Yupik" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "esu", - "Description": [ - "Central Yupik" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "esx", - "Description": [ - "Eskimo-Aleut languages" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "esy", - "Description": [ - "Eskayan" - ], - "Added": "2014-04-06", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "etb", - "Description": [ - "Etebi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "etc", - "Description": [ - "Etchemin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "eth", - "Description": [ - "Ethiopian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "etn", - "Description": [ - "Eton (Vanuatu)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "eto", - "Description": [ - "Eton (Cameroon)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "etr", - "Description": [ - "Edolo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ets", - "Description": [ - "Yekhee" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ett", - "Description": [ - "Etruscan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "etu", - "Description": [ - "Ejagham" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "etx", - "Description": [ - "Eten" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "etz", - "Description": [ - "Semimi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "eud", - "Description": [ - "Eudeve" - ], - "Added": "2023-03-17", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "euq", - "Description": [ - "Basque (family)" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "eve", - "Description": [ - "Even" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "evh", - "Description": [ - "Uvbie" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "evn", - "Description": [ - "Evenki" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ewo", - "Description": [ - "Ewondo" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ext", - "Description": [ - "Extremaduran" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "eya", - "Description": [ - "Eyak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "eyo", - "Description": [ - "Keiyo" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "kln", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "eza", - "Description": [ - "Ezaa" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "eze", - "Description": [ - "Uzekwe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "faa", - "Description": [ - "Fasu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fab", - "Description": [ - "Fa d\u0027Ambu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fad", - "Description": [ - "Wagi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "faf", - "Description": [ - "Fagani" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fag", - "Description": [ - "Finongan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fah", - "Description": [ - "Baissa Fali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fai", - "Description": [ - "Faiwol" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "faj", - "Description": [ - "Faita" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fak", - "Description": [ - "Fang (Cameroon)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fal", - "Description": [ - "South Fali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fam", - "Description": [ - "Fam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fan", - "Description": [ - "Fang (Equatorial Guinea)" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fap", - "Description": [ - "Paloor" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "far", - "Description": [ - "Fataleka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fat", - "Description": [ - "Fanti" - ], - "Added": "2005-10-16", - "Scope": "None", - "MacroLanguage": "ak", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fau", - "Description": [ - "Fayu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fax", - "Description": [ - "Fala" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fay", - "Description": [ - "Southwestern Fars" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "faz", - "Description": [ - "Northwestern Fars" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fbl", - "Description": [ - "West Albay Bikol" - ], - "Added": "2010-03-11", - "Scope": "None", - "MacroLanguage": "bik", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fcs", - "Description": [ - "Quebec Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fer", - "Description": [ - "Feroge" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ffi", - "Description": [ - "Foia Foia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ffm", - "Description": [ - "Maasina Fulfulde" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ff", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fgr", - "Description": [ - "Fongoro" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fia", - "Description": [ - "Nobiin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fie", - "Description": [ - "Fyer" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fif", - "Description": [ - "Faifi" - ], - "Added": "2020-06-08", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fil", - "Description": [ - "Filipino", - "Pilipino" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fip", - "Description": [ - "Fipa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fir", - "Description": [ - "Firan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fit", - "Description": [ - "Tornedalen Finnish", - "Me\u00E4nkieli" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fiu", - "Description": [ - "Finno-Ugrian languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fiw", - "Description": [ - "Fiwaga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fkk", - "Description": [ - "Kirya-Konz\u0259l" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fkv", - "Description": [ - "Kven Finnish" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fla", - "Description": [ - "Kalispel-Pend d\u0027Oreille" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "flh", - "Description": [ - "Foau" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fli", - "Description": [ - "Fali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fll", - "Description": [ - "North Fali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fln", - "Description": [ - "Flinders Island" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "flr", - "Description": [ - "Fuliiru" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fly", - "Description": [ - "Flaaitaal", - "Tsotsitaal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fmp", - "Description": [ - "Fe\u0027fe\u0027" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fmu", - "Description": [ - "Far Western Muria" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fnb", - "Description": [ - "Fanbak" - ], - "Added": "2016-05-30", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fng", - "Description": [ - "Fanagalo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fni", - "Description": [ - "Fania" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fod", - "Description": [ - "Foodo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "foi", - "Description": [ - "Foi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fom", - "Description": [ - "Foma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fon", - "Description": [ - "Fon" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "for", - "Description": [ - "Fore" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fos", - "Description": [ - "Siraya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fox", - "Description": [ - "Formosan languages" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fpe", - "Description": [ - "Fernando Po Creole English" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fqs", - "Description": [ - "Fas" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "frc", - "Description": [ - "Cajun French" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "frd", - "Description": [ - "Fordata" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "frk", - "Description": [ - "Frankish" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "frm", - "Description": [ - "Middle French (ca. 1400-1600)" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fro", - "Description": [ - "Old French (842-ca. 1400)" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "frp", - "Description": [ - "Arpitan", - "Francoproven\u00E7al" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "frq", - "Description": [ - "Forak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "frr", - "Description": [ - "Northern Frisian" - ], - "Added": "2006-03-08", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "frs", - "Description": [ - "Eastern Frisian" - ], - "Added": "2006-03-08", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "frt", - "Description": [ - "Fortsenal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fse", - "Description": [ - "Finnish Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fsl", - "Description": [ - "French Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fss", - "Description": [ - "Finland-Swedish Sign Language", - "finlandssvenskt teckenspr\u00E5k", - "suomenruotsalainen viittomakieli" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fub", - "Description": [ - "Adamawa Fulfulde" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ff", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fuc", - "Description": [ - "Pulaar" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ff", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fud", - "Description": [ - "East Futuna" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fue", - "Description": [ - "Borgu Fulfulde" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ff", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fuf", - "Description": [ - "Pular" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ff", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fuh", - "Description": [ - "Western Niger Fulfulde" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ff", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fui", - "Description": [ - "Bagirmi Fulfulde" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ff", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fuj", - "Description": [ - "Ko" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fum", - "Description": [ - "Fum" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fun", - "Description": [ - "Fulni\u00F4" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fuq", - "Description": [ - "Central-Eastern Niger Fulfulde" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ff", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fur", - "Description": [ - "Friulian" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fut", - "Description": [ - "Futuna-Aniwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fuu", - "Description": [ - "Furu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fuv", - "Description": [ - "Nigerian Fulfulde" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ff", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fuy", - "Description": [ - "Fuyug" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fvr", - "Description": [ - "Fur" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fwa", - "Description": [ - "Fw\u00E2i" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "fwe", - "Description": [ - "Fwe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gaa", - "Description": [ - "Ga" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gab", - "Description": [ - "Gabri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gac", - "Description": [ - "Mixed Great Andamanese" - ], - "Added": "2010-03-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gad", - "Description": [ - "Gaddang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gae", - "Description": [ - "Guarequena" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gaf", - "Description": [ - "Gende" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gag", - "Description": [ - "Gagauz" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gah", - "Description": [ - "Alekano" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gai", - "Description": [ - "Borei" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gaj", - "Description": [ - "Gadsup" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gak", - "Description": [ - "Gamkonora" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gal", - "Description": [ - "Galolen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gam", - "Description": [ - "Kandawo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gan", - "Description": [ - "Gan Chinese" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zh", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gao", - "Description": [ - "Gants" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gap", - "Description": [ - "Gal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gaq", - "Description": [ - "Gata\u0027" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gar", - "Description": [ - "Galeya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gas", - "Description": [ - "Adiwasi Garasia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gat", - "Description": [ - "Kenati" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gau", - "Description": [ - "Mudhili Gadaba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gav", - "Description": [ - "Gabutamon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2010-03-11", - "Comments": [], - "Prefix": [], - "PreferredValue": "dev" - }, - { - "Type": "Language", - "SubTag": "gaw", - "Description": [ - "Nobonob" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gax", - "Description": [ - "Borana-Arsi-Guji Oromo" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "om", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gay", - "Description": [ - "Gayo" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gaz", - "Description": [ - "West Central Oromo" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "om", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gba", - "Description": [ - "Gbaya (Central African Republic)" - ], - "Added": "2005-10-16", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gbb", - "Description": [ - "Kaytetye" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gbc", - "Description": [ - "Garawa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2012-08-12", - "Comments": [ - "see wny, wrk" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gbd", - "Description": [ - "Karajarri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gbe", - "Description": [ - "Niksek" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gbf", - "Description": [ - "Gaikundi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gbg", - "Description": [ - "Gbanziri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gbh", - "Description": [ - "Defi Gbe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gbi", - "Description": [ - "Galela" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gbj", - "Description": [ - "Bodo Gadaba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gbk", - "Description": [ - "Gaddi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gbl", - "Description": [ - "Gamit" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gbm", - "Description": [ - "Garhwali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gbn", - "Description": [ - "Mo\u0027da" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gbo", - "Description": [ - "Northern Grebo" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "grb", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gbp", - "Description": [ - "Gbaya-Bossangoa" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "gba", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gbq", - "Description": [ - "Gbaya-Bozoum" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "gba", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gbr", - "Description": [ - "Gbagyi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gbs", - "Description": [ - "Gbesi Gbe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gbu", - "Description": [ - "Gagadu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gbv", - "Description": [ - "Gbanu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gbw", - "Description": [ - "Gabi-Gabi" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gbx", - "Description": [ - "Eastern Xwla Gbe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gby", - "Description": [ - "Gbari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gbz", - "Description": [ - "Zoroastrian Dari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gcc", - "Description": [ - "Mali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gcd", - "Description": [ - "Ganggalida" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gce", - "Description": [ - "Galice" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gcf", - "Description": [ - "Guadeloupean Creole French" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gcl", - "Description": [ - "Grenadian Creole English" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gcn", - "Description": [ - "Gaina" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gcr", - "Description": [ - "Guianese Creole French" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gct", - "Description": [ - "Colonia Tovar German" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gda", - "Description": [ - "Gade Lohar" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "raj", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gdb", - "Description": [ - "Pottangi Ollar Gadaba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gdc", - "Description": [ - "Gugu Badhun" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gdd", - "Description": [ - "Gedaged" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gde", - "Description": [ - "Gude" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gdf", - "Description": [ - "Guduf-Gava" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gdg", - "Description": [ - "Ga\u0027dang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gdh", - "Description": [ - "Gadjerawang", - "Gajirrabeng" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gdi", - "Description": [ - "Gundi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gdj", - "Description": [ - "Gurdjar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gdk", - "Description": [ - "Gadang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gdl", - "Description": [ - "Dirasha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gdm", - "Description": [ - "Laal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gdn", - "Description": [ - "Umanakaina" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gdo", - "Description": [ - "Ghodoberi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gdq", - "Description": [ - "Mehri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gdr", - "Description": [ - "Wipi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gds", - "Description": [ - "Ghandruk Sign Language" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gdt", - "Description": [ - "Kungardutyi" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gdu", - "Description": [ - "Gudu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gdx", - "Description": [ - "Godwari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gea", - "Description": [ - "Geruma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "geb", - "Description": [ - "Kire" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gec", - "Description": [ - "Gboloo Grebo" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "grb", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ged", - "Description": [ - "Gade" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gef", - "Description": [ - "Gerai" - ], - "Added": "2020-03-28", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "geg", - "Description": [ - "Gengle" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "geh", - "Description": [ - "Hutterite German", - "Hutterisch" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gei", - "Description": [ - "Gebe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gej", - "Description": [ - "Gen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gek", - "Description": [ - "Ywom" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gel", - "Description": [ - "ut-Ma\u0027in" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gem", - "Description": [ - "Germanic languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "geq", - "Description": [ - "Geme" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ges", - "Description": [ - "Geser-Gorom" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gev", - "Description": [ - "Eviya" - ], - "Added": "2014-02-28", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gew", - "Description": [ - "Gera" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gex", - "Description": [ - "Garre" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gey", - "Description": [ - "Enya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gez", - "Description": [ - "Geez" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gfk", - "Description": [ - "Patpatar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gft", - "Description": [ - "Gafat" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gfx", - "Description": [ - "Mangetti Dune \u01C3Xung" - ], - "Added": "2012-08-12", - "Scope": "None", - "Deprecated": "2015-02-12", - "Comments": [], - "Prefix": [], - "PreferredValue": "vaj" - }, - { - "Type": "Language", - "SubTag": "gga", - "Description": [ - "Gao" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ggb", - "Description": [ - "Gbii" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ggd", - "Description": [ - "Gugadj" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gge", - "Description": [ - "Gurr-goni" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ggg", - "Description": [ - "Gurgula" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ggk", - "Description": [ - "Kungarakany" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ggl", - "Description": [ - "Ganglau" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ggn", - "Description": [ - "Eastern Gurung" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2016-05-30", - "Comments": [], - "Prefix": [], - "PreferredValue": "gvr" - }, - { - "Type": "Language", - "SubTag": "ggo", - "Description": [ - "Southern Gondi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2016-05-30", - "Comments": [ - "see esg, wsg" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ggr", - "Description": [ - "Aghu Tharnggalu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2013-09-10", - "Comments": [ - "see gtu, ikr" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ggt", - "Description": [ - "Gitua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ggu", - "Description": [ - "Gagu", - "Gban" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ggw", - "Description": [ - "Gogodala" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gha", - "Description": [ - "Ghadam\u00E8s" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ghc", - "Description": [ - "Hiberno-Scottish Gaelic" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ghe", - "Description": [ - "Southern Ghale" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ghh", - "Description": [ - "Northern Ghale" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ghk", - "Description": [ - "Geko Karen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ghl", - "Description": [ - "Ghulfan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ghn", - "Description": [ - "Ghanongga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gho", - "Description": [ - "Ghomara" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ghr", - "Description": [ - "Ghera" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ghs", - "Description": [ - "Guhu-Samane" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ght", - "Description": [ - "Kuke", - "Kutang Ghale" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gia", - "Description": [ - "Kija" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gib", - "Description": [ - "Gibanawa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gic", - "Description": [ - "Gail" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gid", - "Description": [ - "Gidar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gie", - "Description": [ - "Ga\u0253ogbo", - "Gu\u00E9bie" - ], - "Added": "2017-02-23", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gig", - "Description": [ - "Goaria" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gih", - "Description": [ - "Githabul" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gii", - "Description": [ - "Girirra" - ], - "Added": "2021-02-20", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gil", - "Description": [ - "Gilbertese" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gim", - "Description": [ - "Gimi (Eastern Highlands)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gin", - "Description": [ - "Hinukh" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gio", - "Description": [ - "Gelao" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2012-08-12", - "Comments": [ - "see aou, gqu" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gip", - "Description": [ - "Gimi (West New Britain)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "giq", - "Description": [ - "Green Gelao" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gir", - "Description": [ - "Red Gelao" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gis", - "Description": [ - "North Giziga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "git", - "Description": [ - "Gitxsan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "giu", - "Description": [ - "Mulao" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "giw", - "Description": [ - "White Gelao" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gix", - "Description": [ - "Gilima" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "giy", - "Description": [ - "Giyug" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "giz", - "Description": [ - "South Giziga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gji", - "Description": [ - "Geji" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2021-02-20", - "Comments": [ - "see gyz, zbu" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gjk", - "Description": [ - "Kachi Koli" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gjm", - "Description": [ - "Gunditjmara" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gjn", - "Description": [ - "Gonja" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gjr", - "Description": [ - "Gurindji Kriol" - ], - "Added": "2016-05-30", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gju", - "Description": [ - "Gujari" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "raj", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gka", - "Description": [ - "Guya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gkd", - "Description": [ - "Mag\u0268 (Madang Province)" - ], - "Added": "2018-03-08", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gke", - "Description": [ - "Ndai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gkn", - "Description": [ - "Gokana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gko", - "Description": [ - "Kok-Nar" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gkp", - "Description": [ - "Guinea Kpelle" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "kpe", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gku", - "Description": [ - "\u01C2Ungkue" - ], - "Added": "2015-02-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "glb", - "Description": [ - "Belning" - ], - "Added": "2021-02-20", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "glc", - "Description": [ - "Bon Gula" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gld", - "Description": [ - "Nanai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "glh", - "Description": [ - "Northwest Pashai", - "Northwest Pashayi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gli", - "Description": [ - "Guliguli" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2020-03-28", - "Comments": [], - "Prefix": [], - "PreferredValue": "kzk" - }, - { - "Type": "Language", - "SubTag": "glj", - "Description": [ - "Gula Iro" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "glk", - "Description": [ - "Gilaki" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gll", - "Description": [ - "Garlali" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "glo", - "Description": [ - "Galambu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "glr", - "Description": [ - "Glaro-Twabo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "glu", - "Description": [ - "Gula (Chad)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "glw", - "Description": [ - "Glavda" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gly", - "Description": [ - "Gule" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gma", - "Description": [ - "Gambera" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gmb", - "Description": [ - "Gula\u0027alaa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gmd", - "Description": [ - "M\u00E1ghd\u00EC" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gme", - "Description": [ - "East Germanic languages" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gmg", - "Description": [ - "Mag\u0268yi" - ], - "Added": "2014-02-28", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gmh", - "Description": [ - "Middle High German (ca. 1050-1500)" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gml", - "Description": [ - "Middle Low German" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gmm", - "Description": [ - "Gbaya-Mbodomo" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "gba", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gmn", - "Description": [ - "Gimnime" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gmq", - "Description": [ - "North Germanic languages" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gmr", - "Description": [ - "Mirning", - "Mirniny" - ], - "Added": "2020-03-28", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gmu", - "Description": [ - "Gumalu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gmv", - "Description": [ - "Gamo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gmw", - "Description": [ - "West Germanic languages" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gmx", - "Description": [ - "Magoma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gmy", - "Description": [ - "Mycenaean Greek" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gmz", - "Description": [ - "Mgbolizhia" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gna", - "Description": [ - "Kaansa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gnb", - "Description": [ - "Gangte" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gnc", - "Description": [ - "Guanche" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gnd", - "Description": [ - "Zulgo-Gemzek" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gne", - "Description": [ - "Ganang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gng", - "Description": [ - "Ngangam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gnh", - "Description": [ - "Lere" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gni", - "Description": [ - "Gooniyandi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gnj", - "Description": [ - "Ngen" - ], - "Added": "2018-03-08", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gnk", - "Description": [ - "\u01C1Gana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gnl", - "Description": [ - "Gangulu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gnm", - "Description": [ - "Ginuman" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gnn", - "Description": [ - "Gumatj" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gno", - "Description": [ - "Northern Gondi" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "gon", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gnq", - "Description": [ - "Gana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gnr", - "Description": [ - "Gureng Gureng" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gnt", - "Description": [ - "Guntai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gnu", - "Description": [ - "Gnau" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gnw", - "Description": [ - "Western Bolivian Guaran\u00ED" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "gn", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gnz", - "Description": [ - "Ganzi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "goa", - "Description": [ - "Guro" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gob", - "Description": [ - "Playero" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "goc", - "Description": [ - "Gorakor" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "god", - "Description": [ - "Godi\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "goe", - "Description": [ - "Gongduk" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gof", - "Description": [ - "Gofa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gog", - "Description": [ - "Gogo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "goh", - "Description": [ - "Old High German (ca. 750-1050)" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "goi", - "Description": [ - "Gobasi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "goj", - "Description": [ - "Gowlan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gok", - "Description": [ - "Gowli" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gol", - "Description": [ - "Gola" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gom", - "Description": [ - "Goan Konkani" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "kok", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gon", - "Description": [ - "Gondi" - ], - "Added": "2005-10-16", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "goo", - "Description": [ - "Gone Dau" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gop", - "Description": [ - "Yeretuar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "goq", - "Description": [ - "Gorap" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gor", - "Description": [ - "Gorontalo" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gos", - "Description": [ - "Gronings" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "got", - "Description": [ - "Gothic" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gou", - "Description": [ - "Gavar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gov", - "Description": [ - "Goo" - ], - "Added": "2022-02-25", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gow", - "Description": [ - "Gorowa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gox", - "Description": [ - "Gobu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "goy", - "Description": [ - "Goundo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "goz", - "Description": [ - "Gozarkhani" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gpa", - "Description": [ - "Gupa-Abawa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gpe", - "Description": [ - "Ghanaian Pidgin English" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gpn", - "Description": [ - "Taiap" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gqa", - "Description": [ - "Ga\u0027anda" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gqi", - "Description": [ - "Guiqiong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gqn", - "Description": [ - "Guana (Brazil)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gqr", - "Description": [ - "Gor" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gqu", - "Description": [ - "Qau" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gra", - "Description": [ - "Rajput Garasia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "grb", - "Description": [ - "Grebo" - ], - "Added": "2005-10-16", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "grc", - "Description": [ - "Ancient Greek (to 1453)" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "grd", - "Description": [ - "Guruntum-Mbaaru" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "grg", - "Description": [ - "Madi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "grh", - "Description": [ - "Gbiri-Niragu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gri", - "Description": [ - "Ghari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "grj", - "Description": [ - "Southern Grebo" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "grb", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "grk", - "Description": [ - "Greek languages" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "grm", - "Description": [ - "Kota Marudu Talantang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gro", - "Description": [ - "Groma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "grq", - "Description": [ - "Gorovu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "grr", - "Description": [ - "Taznatit" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "grs", - "Description": [ - "Gresi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "grt", - "Description": [ - "Garo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gru", - "Description": [ - "Kistane" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "grv", - "Description": [ - "Central Grebo" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "grb", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "grw", - "Description": [ - "Gweda" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "grx", - "Description": [ - "Guriaso" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gry", - "Description": [ - "Barclayville Grebo" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "grb", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "grz", - "Description": [ - "Guramalum" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gse", - "Description": [ - "Ghanaian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gsg", - "Description": [ - "German Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gsl", - "Description": [ - "Gusilay" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gsm", - "Description": [ - "Guatemalan Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gsn", - "Description": [ - "Nema", - "Gusan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gso", - "Description": [ - "Southwest Gbaya" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "gba", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gsp", - "Description": [ - "Wasembo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gss", - "Description": [ - "Greek Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gsw", - "Description": [ - "Swiss German", - "Alemannic", - "Alsatian" - ], - "Added": "2006-03-08", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gta", - "Description": [ - "Guat\u00F3" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gti", - "Description": [ - "Gbati-ri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2015-02-12", - "Comments": [], - "Prefix": [], - "PreferredValue": "nyc" - }, - { - "Type": "Language", - "SubTag": "gtu", - "Description": [ - "Aghu-Tharnggala" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gua", - "Description": [ - "Shiki" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gub", - "Description": [ - "Guajaj\u00E1ra" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "guc", - "Description": [ - "Wayuu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gud", - "Description": [ - "Yocobou\u00E9 Dida" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gue", - "Description": [ - "Gurindji" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "guf", - "Description": [ - "Gupapuyngu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gug", - "Description": [ - "Paraguayan Guaran\u00ED" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "gn", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "guh", - "Description": [ - "Guahibo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gui", - "Description": [ - "Eastern Bolivian Guaran\u00ED" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "gn", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "guk", - "Description": [ - "Gumuz" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gul", - "Description": [ - "Sea Island Creole English" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gum", - "Description": [ - "Guambiano" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gun", - "Description": [ - "Mby\u00E1 Guaran\u00ED" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "gn", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "guo", - "Description": [ - "Guayabero" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gup", - "Description": [ - "Gunwinggu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "guq", - "Description": [ - "Ach\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gur", - "Description": [ - "Farefare" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gus", - "Description": [ - "Guinean Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gut", - "Description": [ - "Mal\u00E9ku Ja\u00EDka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "guu", - "Description": [ - "Yanomam\u00F6" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "guv", - "Description": [ - "Gey" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2016-05-30", - "Comments": [], - "Prefix": [], - "PreferredValue": "duz" - }, - { - "Type": "Language", - "SubTag": "guw", - "Description": [ - "Gun" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gux", - "Description": [ - "Gourmanch\u00E9ma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "guz", - "Description": [ - "Gusii", - "Ekegusii" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gva", - "Description": [ - "Guana (Paraguay)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gvc", - "Description": [ - "Guanano" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gve", - "Description": [ - "Duwet" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gvf", - "Description": [ - "Golin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gvj", - "Description": [ - "Guaj\u00E1" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gvl", - "Description": [ - "Gulay" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gvm", - "Description": [ - "Gurmana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gvn", - "Description": [ - "Kuku-Yalanji" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gvo", - "Description": [ - "Gavi\u00E3o Do Jiparan\u00E1" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gvp", - "Description": [ - "Par\u00E1 Gavi\u00E3o" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gvr", - "Description": [ - "Gurung" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gvs", - "Description": [ - "Gumawana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gvy", - "Description": [ - "Guyani" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gwa", - "Description": [ - "Mbato" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gwb", - "Description": [ - "Gwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gwc", - "Description": [ - "Gawri", - "Kalami" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gwd", - "Description": [ - "Gawwada" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gwe", - "Description": [ - "Gweno" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gwf", - "Description": [ - "Gowro" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gwg", - "Description": [ - "Moo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gwi", - "Description": [ - "Gwich\u02BCin" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gwj", - "Description": [ - "\u01C0Gwi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gwm", - "Description": [ - "Awngthim" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gwn", - "Description": [ - "Gwandara" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gwr", - "Description": [ - "Gwere" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gwt", - "Description": [ - "Gawar-Bati" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gwu", - "Description": [ - "Guwamu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gww", - "Description": [ - "Kwini" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gwx", - "Description": [ - "Gua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gxx", - "Description": [ - "W\u00E8 Southern" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gya", - "Description": [ - "Northwest Gbaya" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "gba", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gyb", - "Description": [ - "Garus" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gyd", - "Description": [ - "Kayardild" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gye", - "Description": [ - "Gyem" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gyf", - "Description": [ - "Gungabula" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gyg", - "Description": [ - "Gbayi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gyi", - "Description": [ - "Gyele" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gyl", - "Description": [ - "Gayil" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gym", - "Description": [ - "Ng\u00E4bere" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gyn", - "Description": [ - "Guyanese Creole English" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gyo", - "Description": [ - "Gyalsumdo" - ], - "Added": "2018-03-08", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gyr", - "Description": [ - "Guarayu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gyy", - "Description": [ - "Gunya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gyz", - "Description": [ - "Geji", - "Gyaazi" - ], - "Added": "2021-02-20", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gza", - "Description": [ - "Ganza" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gzi", - "Description": [ - "Gazi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "gzn", - "Description": [ - "Gane" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "haa", - "Description": [ - "H\u00E4n" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hab", - "Description": [ - "Hanoi Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hac", - "Description": [ - "Gurani" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "had", - "Description": [ - "Hatam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hae", - "Description": [ - "Eastern Oromo" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "om", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "haf", - "Description": [ - "Haiphong Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hag", - "Description": [ - "Hanga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hah", - "Description": [ - "Hahon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hai", - "Description": [ - "Haida" - ], - "Added": "2005-10-16", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "haj", - "Description": [ - "Hajong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hak", - "Description": [ - "Hakka Chinese" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zh", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hal", - "Description": [ - "Halang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ham", - "Description": [ - "Hewa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "han", - "Description": [ - "Hangaza" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hao", - "Description": [ - "Hak\u00F6" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hap", - "Description": [ - "Hupla" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "haq", - "Description": [ - "Ha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "har", - "Description": [ - "Harari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "has", - "Description": [ - "Haisla" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hav", - "Description": [ - "Havu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "haw", - "Description": [ - "Hawaiian" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hax", - "Description": [ - "Southern Haida" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "hai", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hay", - "Description": [ - "Haya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "haz", - "Description": [ - "Hazaragi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hba", - "Description": [ - "Hamba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hbb", - "Description": [ - "Huba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hbn", - "Description": [ - "Heiban" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hbo", - "Description": [ - "Ancient Hebrew" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hbu", - "Description": [ - "Habu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hca", - "Description": [ - "Andaman Creole Hindi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hch", - "Description": [ - "Huichol" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hdn", - "Description": [ - "Northern Haida" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "hai", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hds", - "Description": [ - "Honduras Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hdy", - "Description": [ - "Hadiyya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hea", - "Description": [ - "Northern Qiandong Miao" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "hmn", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hed", - "Description": [ - "Herd\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "heg", - "Description": [ - "Helong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "heh", - "Description": [ - "Hehe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hei", - "Description": [ - "Heiltsuk" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hem", - "Description": [ - "Hemba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hgm", - "Description": [ - "Hai\u01C1om" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hgw", - "Description": [ - "Haigwai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hhi", - "Description": [ - "Hoia Hoia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hhr", - "Description": [ - "Kerak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hhy", - "Description": [ - "Hoyahoya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hia", - "Description": [ - "Lamang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hib", - "Description": [ - "Hibito" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hid", - "Description": [ - "Hidatsa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hif", - "Description": [ - "Fiji Hindi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hig", - "Description": [ - "Kamwe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hih", - "Description": [ - "Pamosu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hii", - "Description": [ - "Hinduri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hij", - "Description": [ - "Hijuk" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hik", - "Description": [ - "Seit-Kaitetu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hil", - "Description": [ - "Hiligaynon" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "him", - "Description": [ - "Himachali languages", - "Western Pahari languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hio", - "Description": [ - "Tsoa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hir", - "Description": [ - "Himarim\u00E3" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hit", - "Description": [ - "Hittite" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hiw", - "Description": [ - "Hiw" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hix", - "Description": [ - "Hixkary\u00E1na" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hji", - "Description": [ - "Haji" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hka", - "Description": [ - "Kahe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hke", - "Description": [ - "Hunde" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hkh", - "Description": [ - "Khah", - "Poguli" - ], - "Added": "2021-02-20", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hkk", - "Description": [ - "Hunjara-Kaina Ke" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hkn", - "Description": [ - "Mel-Khaonh" - ], - "Added": "2018-03-08", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hks", - "Description": [ - "Hong Kong Sign Language", - "Heung Kong Sau Yue" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hla", - "Description": [ - "Halia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hlb", - "Description": [ - "Halbi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hld", - "Description": [ - "Halang Doan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hle", - "Description": [ - "Hlersu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hlt", - "Description": [ - "Matu Chin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hlu", - "Description": [ - "Hieroglyphic Luwian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hma", - "Description": [ - "Southern Mashan Hmong", - "Southern Mashan Miao" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "hmn", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hmb", - "Description": [ - "Humburi Senni Songhay" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hmc", - "Description": [ - "Central Huishui Hmong", - "Central Huishui Miao" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "hmn", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hmd", - "Description": [ - "Large Flowery Miao", - "A-hmaos", - "Da-Hua Miao" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "hmn", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hme", - "Description": [ - "Eastern Huishui Hmong", - "Eastern Huishui Miao" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "hmn", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hmf", - "Description": [ - "Hmong Don" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hmg", - "Description": [ - "Southwestern Guiyang Hmong" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "hmn", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hmh", - "Description": [ - "Southwestern Huishui Hmong", - "Southwestern Huishui Miao" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "hmn", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hmi", - "Description": [ - "Northern Huishui Hmong", - "Northern Huishui Miao" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "hmn", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hmj", - "Description": [ - "Ge", - "Gejia" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "hmn", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hmk", - "Description": [ - "Maek" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hml", - "Description": [ - "Luopohe Hmong", - "Luopohe Miao" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "hmn", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hmm", - "Description": [ - "Central Mashan Hmong", - "Central Mashan Miao" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "hmn", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hmn", - "Description": [ - "Hmong", - "Mong" - ], - "Added": "2005-10-16", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hmp", - "Description": [ - "Northern Mashan Hmong", - "Northern Mashan Miao" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "hmn", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hmq", - "Description": [ - "Eastern Qiandong Miao" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "hmn", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hmr", - "Description": [ - "Hmar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hms", - "Description": [ - "Southern Qiandong Miao" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "hmn", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hmt", - "Description": [ - "Hamtai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hmu", - "Description": [ - "Hamap" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hmv", - "Description": [ - "Hmong D\u00F4" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hmw", - "Description": [ - "Western Mashan Hmong", - "Western Mashan Miao" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "hmn", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hmx", - "Description": [ - "Hmong-Mien languages" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hmy", - "Description": [ - "Southern Guiyang Hmong", - "Southern Guiyang Miao" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "hmn", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hmz", - "Description": [ - "Hmong Shua", - "Sinicized Miao" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "hmn", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hna", - "Description": [ - "Mina (Cameroon)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hnd", - "Description": [ - "Southern Hindko" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "lah", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hne", - "Description": [ - "Chhattisgarhi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hng", - "Description": [ - "Hungu" - ], - "Added": "2020-03-28", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hnh", - "Description": [ - "\u01C1Ani" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hni", - "Description": [ - "Hani" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hnj", - "Description": [ - "Hmong Njua", - "Mong Leng", - "Mong Njua" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "hmn", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hnm", - "Description": [ - "Hainanese" - ], - "Added": "2024-12-12", - "Scope": "None", - "MacroLanguage": "zh", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hnn", - "Description": [ - "Hanunoo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hno", - "Description": [ - "Northern Hindko" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "lah", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hns", - "Description": [ - "Caribbean Hindustani" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hnu", - "Description": [ - "Hung" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hoa", - "Description": [ - "Hoava" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hob", - "Description": [ - "Mari (Madang Province)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hoc", - "Description": [ - "Ho" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hod", - "Description": [ - "Holma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hoe", - "Description": [ - "Horom" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hoh", - "Description": [ - "Hoby\u00F3t" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hoi", - "Description": [ - "Holikachuk" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hoj", - "Description": [ - "Hadothi", - "Haroti" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "raj", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hok", - "Description": [ - "Hokan languages" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hol", - "Description": [ - "Holu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hom", - "Description": [ - "Homa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hoo", - "Description": [ - "Holoholo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hop", - "Description": [ - "Hopi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hor", - "Description": [ - "Horo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hos", - "Description": [ - "Ho Chi Minh City Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hot", - "Description": [ - "Hote", - "Mal\u00EA" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hov", - "Description": [ - "Hovongan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "how", - "Description": [ - "Honi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hoy", - "Description": [ - "Holiya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hoz", - "Description": [ - "Hozo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hpo", - "Description": [ - "Hpon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hps", - "Description": [ - "Hawai\u0027i Sign Language (HSL)", - "Hawai\u0027i Pidgin Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hra", - "Description": [ - "Hrangkhol" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hrc", - "Description": [ - "Niwer Mil" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hre", - "Description": [ - "Hre" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hrk", - "Description": [ - "Haruku" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hrm", - "Description": [ - "Horned Miao" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "hmn", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hro", - "Description": [ - "Haroi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hrp", - "Description": [ - "Nhirrpi" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hrr", - "Description": [ - "Horuru" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2012-08-12", - "Comments": [], - "Prefix": [], - "PreferredValue": "jal" - }, - { - "Type": "Language", - "SubTag": "hrt", - "Description": [ - "H\u00E9rtevin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hru", - "Description": [ - "Hruso" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hrw", - "Description": [ - "Warwar Feni" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hrx", - "Description": [ - "Hunsrik" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hrz", - "Description": [ - "Harzani" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hsb", - "Description": [ - "Upper Sorbian" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hsh", - "Description": [ - "Hungarian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hsl", - "Description": [ - "Hausa Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hsn", - "Description": [ - "Xiang Chinese" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zh", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hss", - "Description": [ - "Harsusi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hti", - "Description": [ - "Hoti" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hto", - "Description": [ - "Minica Huitoto" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hts", - "Description": [ - "Hadza" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "htu", - "Description": [ - "Hitu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "htx", - "Description": [ - "Middle Hittite" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hub", - "Description": [ - "Huambisa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "huc", - "Description": [ - "\u01C2Hua", - "\u01C2\u02BCAmkhoe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hud", - "Description": [ - "Huaulu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hue", - "Description": [ - "San Francisco Del Mar Huave" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "huf", - "Description": [ - "Humene" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hug", - "Description": [ - "Huachipaeri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "huh", - "Description": [ - "Huilliche" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hui", - "Description": [ - "Huli" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "huj", - "Description": [ - "Northern Guiyang Hmong", - "Northern Guiyang Miao" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "hmn", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "huk", - "Description": [ - "Hulung" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hul", - "Description": [ - "Hula" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hum", - "Description": [ - "Hungana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "huo", - "Description": [ - "Hu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hup", - "Description": [ - "Hupa" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "huq", - "Description": [ - "Tsat" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hur", - "Description": [ - "Halkomelem" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hus", - "Description": [ - "Huastec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hut", - "Description": [ - "Humla" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "huu", - "Description": [ - "Murui Huitoto" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "huv", - "Description": [ - "San Mateo Del Mar Huave" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "huw", - "Description": [ - "Hukumina" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hux", - "Description": [ - "N\u00FCpode Huitoto" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "huy", - "Description": [ - "Hulaul\u00E1" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "huz", - "Description": [ - "Hunzib" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hvc", - "Description": [ - "Haitian Vodoun Culture Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hve", - "Description": [ - "San Dionisio Del Mar Huave" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hvk", - "Description": [ - "Haveke" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hvn", - "Description": [ - "Sabu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hvv", - "Description": [ - "Santa Mar\u00EDa Del Mar Huave" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hwa", - "Description": [ - "Wan\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hwc", - "Description": [ - "Hawai\u0027i Creole English", - "Hawai\u0027i Pidgin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hwo", - "Description": [ - "Hwana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hya", - "Description": [ - "Hya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hyw", - "Description": [ - "Western Armenian" - ], - "Added": "2018-03-08", - "Scope": "None", - "Comments": [ - "see also hy" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "hyx", - "Description": [ - "Armenian (family)" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "iai", - "Description": [ - "Iaai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ian", - "Description": [ - "Iatmul" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "iap", - "Description": [ - "Iapama" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2016-05-30", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "iar", - "Description": [ - "Purari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "iba", - "Description": [ - "Iban" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ibb", - "Description": [ - "Ibibio" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ibd", - "Description": [ - "Iwaidja" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ibe", - "Description": [ - "Akpes" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ibg", - "Description": [ - "Ibanag" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ibh", - "Description": [ - "Bih" - ], - "Added": "2017-02-23", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ibi", - "Description": [ - "Ibilo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2012-08-12", - "Comments": [], - "Prefix": [], - "PreferredValue": "opa" - }, - { - "Type": "Language", - "SubTag": "ibl", - "Description": [ - "Ibaloi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ibm", - "Description": [ - "Agoi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ibn", - "Description": [ - "Ibino" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ibr", - "Description": [ - "Ibuoro" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ibu", - "Description": [ - "Ibu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "iby", - "Description": [ - "Ibani" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ica", - "Description": [ - "Ede Ica" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ich", - "Description": [ - "Etkywan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "icl", - "Description": [ - "Icelandic Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "icr", - "Description": [ - "Islander Creole English" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ida", - "Description": [ - "Idakho-Isukha-Tiriki", - "Luidakho-Luisukha-Lutirichi" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "luy", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "idb", - "Description": [ - "Indo-Portuguese" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "idc", - "Description": [ - "Idon", - "Ajiya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "idd", - "Description": [ - "Ede Idaca" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ide", - "Description": [ - "Idere" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "idi", - "Description": [ - "Idi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "idr", - "Description": [ - "Indri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ids", - "Description": [ - "Idesa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "idt", - "Description": [ - "Idat\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "idu", - "Description": [ - "Idoma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ifa", - "Description": [ - "Amganad Ifugao" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ifb", - "Description": [ - "Batad Ifugao", - "Ayangan Ifugao" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ife", - "Description": [ - "If\u00E8" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "iff", - "Description": [ - "Ifo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ifk", - "Description": [ - "Tuwali Ifugao" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ifm", - "Description": [ - "Teke-Fuumu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ifu", - "Description": [ - "Mayoyao Ifugao" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ify", - "Description": [ - "Keley-I Kallahan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "igb", - "Description": [ - "Ebira" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ige", - "Description": [ - "Igede" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "igg", - "Description": [ - "Igana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "igl", - "Description": [ - "Igala" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "igm", - "Description": [ - "Kanggape" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ign", - "Description": [ - "Ignaciano" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "igo", - "Description": [ - "Isebe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "igs", - "Description": [ - "Interglossa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "igw", - "Description": [ - "Igwe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ihb", - "Description": [ - "Iha Based Pidgin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ihi", - "Description": [ - "Ihievbe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ihp", - "Description": [ - "Iha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ihw", - "Description": [ - "Bidhawal" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "iin", - "Description": [ - "Thiin" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "iir", - "Description": [ - "Indo-Iranian languages" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ijc", - "Description": [ - "Izon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ije", - "Description": [ - "Biseni" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ijj", - "Description": [ - "Ede Ije" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ijn", - "Description": [ - "Kalabari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ijo", - "Description": [ - "Ijo languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ijs", - "Description": [ - "Southeast Ijo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ike", - "Description": [ - "Eastern Canadian Inuktitut" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "iu", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ikh", - "Description": [ - "Ikhin-Arokho" - ], - "Added": "2023-03-17", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "iki", - "Description": [ - "Iko" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ikk", - "Description": [ - "Ika" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ikl", - "Description": [ - "Ikulu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "iko", - "Description": [ - "Olulumo-Ikom" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ikp", - "Description": [ - "Ikpeshi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ikr", - "Description": [ - "Ikaranggal" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "iks", - "Description": [ - "Inuit Sign Language" - ], - "Added": "2015-02-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ikt", - "Description": [ - "Inuinnaqtun", - "Western Canadian Inuktitut" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "iu", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ikv", - "Description": [ - "Iku-Gora-Ankwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ikw", - "Description": [ - "Ikwere" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ikx", - "Description": [ - "Ik" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ikz", - "Description": [ - "Ikizu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ila", - "Description": [ - "Ile Ape" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ilb", - "Description": [ - "Ila" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ilg", - "Description": [ - "Garig-Ilgar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ili", - "Description": [ - "Ili Turki" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ilk", - "Description": [ - "Ilongot" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ill", - "Description": [ - "Iranun" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2016-05-30", - "Comments": [ - "see ilm, ilp" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ilm", - "Description": [ - "Iranun (Malaysia)" - ], - "Added": "2016-05-30", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ilo", - "Description": [ - "Iloko" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ilp", - "Description": [ - "Iranun (Philippines)" - ], - "Added": "2016-05-30", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ils", - "Description": [ - "International Sign" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ilu", - "Description": [ - "Ili\u0027uun" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ilv", - "Description": [ - "Ilue" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ilw", - "Description": [ - "Talur" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2013-09-10", - "Comments": [], - "Prefix": [], - "PreferredValue": "gal" - }, - { - "Type": "Language", - "SubTag": "ima", - "Description": [ - "Mala Malasar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ime", - "Description": [ - "Imeraguen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2015-02-12", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "imi", - "Description": [ - "Anamgura" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "iml", - "Description": [ - "Miluk" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "imn", - "Description": [ - "Imonda" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "imo", - "Description": [ - "Imbongu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "imr", - "Description": [ - "Imroing" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ims", - "Description": [ - "Marsian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "imt", - "Description": [ - "Imotong" - ], - "Added": "2022-02-25", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "imy", - "Description": [ - "Milyan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "inb", - "Description": [ - "Inga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "inc", - "Description": [ - "Indic languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ine", - "Description": [ - "Indo-European languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ing", - "Description": [ - "Degexit\u0027an" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "inh", - "Description": [ - "Ingush" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "inj", - "Description": [ - "Jungle Inga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "inl", - "Description": [ - "Indonesian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "inm", - "Description": [ - "Minaean" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "inn", - "Description": [ - "Isinai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ino", - "Description": [ - "Inoke-Yate" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "inp", - "Description": [ - "I\u00F1apari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ins", - "Description": [ - "Indian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "int", - "Description": [ - "Intha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "inz", - "Description": [ - "Inese\u00F1o" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ior", - "Description": [ - "Inor" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "iou", - "Description": [ - "Tuma-Irumu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "iow", - "Description": [ - "Iowa-Oto" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ipi", - "Description": [ - "Ipili" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ipo", - "Description": [ - "Ipiko" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "iqu", - "Description": [ - "Iquito" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "iqw", - "Description": [ - "Ikwo" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ira", - "Description": [ - "Iranian languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ire", - "Description": [ - "Iresim" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "irh", - "Description": [ - "Irarutu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "iri", - "Description": [ - "Rigwe", - "Irigwe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "irk", - "Description": [ - "Iraqw" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "irn", - "Description": [ - "Ir\u00E1ntxe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "iro", - "Description": [ - "Iroquoian languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "irr", - "Description": [ - "Ir" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "iru", - "Description": [ - "Irula" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "irx", - "Description": [ - "Kamberau" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "iry", - "Description": [ - "Iraya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "isa", - "Description": [ - "Isabi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "isc", - "Description": [ - "Isconahua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "isd", - "Description": [ - "Isnag" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ise", - "Description": [ - "Italian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "isg", - "Description": [ - "Irish Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ish", - "Description": [ - "Esan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "isi", - "Description": [ - "Nkem-Nkum" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "isk", - "Description": [ - "Ishkashimi" - ], - "Added": "2010-03-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ism", - "Description": [ - "Masimasi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "isn", - "Description": [ - "Isanzu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "iso", - "Description": [ - "Isoko" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "isr", - "Description": [ - "Israeli Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ist", - "Description": [ - "Istriot" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "isu", - "Description": [ - "Isu", - "Isu (Menchum Division)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "isv", - "Description": [ - "Interslavic" - ], - "Added": "2024-05-15", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "itb", - "Description": [ - "Binongan Itneg" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "itc", - "Description": [ - "Italic languages" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "itd", - "Description": [ - "Southern Tidung" - ], - "Added": "2016-05-30", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ite", - "Description": [ - "Itene" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "iti", - "Description": [ - "Inlaod Itneg" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "itk", - "Description": [ - "Judeo-Italian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "itl", - "Description": [ - "Itelmen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "itm", - "Description": [ - "Itu Mbon Uzo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ito", - "Description": [ - "Itonama" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "itr", - "Description": [ - "Iteri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "its", - "Description": [ - "Isekiri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "itt", - "Description": [ - "Maeng Itneg" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "itv", - "Description": [ - "Itawit" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "itw", - "Description": [ - "Ito" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "itx", - "Description": [ - "Itik" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ity", - "Description": [ - "Moyadan Itneg" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "itz", - "Description": [ - "Itz\u00E1" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ium", - "Description": [ - "Iu Mien" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ivb", - "Description": [ - "Ibatan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ivv", - "Description": [ - "Ivatan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "iwk", - "Description": [ - "I-Wak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "iwm", - "Description": [ - "Iwam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "iwo", - "Description": [ - "Iwur" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "iws", - "Description": [ - "Sepik Iwam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ixc", - "Description": [ - "Ixcatec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ixl", - "Description": [ - "Ixil" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "iya", - "Description": [ - "Iyayu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "iyo", - "Description": [ - "Mesaka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "iyx", - "Description": [ - "Yaka (Congo)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "izh", - "Description": [ - "Ingrian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "izi", - "Description": [ - "Izi-Ezaa-Ikwo-Mgbo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2013-09-10", - "Comments": [ - "see eza, gmz, iqw, izz" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "izm", - "Description": [ - "Kizamani" - ], - "Added": "2023-03-17", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "izr", - "Description": [ - "Izere" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "izz", - "Description": [ - "Izii" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jaa", - "Description": [ - "Jamamad\u00ED" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jab", - "Description": [ - "Hyam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jac", - "Description": [ - "Popti\u0027", - "Jakalteko" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jad", - "Description": [ - "Jahanka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jae", - "Description": [ - "Yabem" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jaf", - "Description": [ - "Jara" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jah", - "Description": [ - "Jah Hut" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jaj", - "Description": [ - "Zazao" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jak", - "Description": [ - "Jakun" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jal", - "Description": [ - "Yalahatan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jam", - "Description": [ - "Jamaican Creole English" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jan", - "Description": [ - "Jandai" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jao", - "Description": [ - "Yanyuwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jaq", - "Description": [ - "Yaqay" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jar", - "Description": [ - "Jarawa (Nigeria)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2012-08-12", - "Comments": [ - "see jgk, jjr" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jas", - "Description": [ - "New Caledonian Javanese" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jat", - "Description": [ - "Jakati" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "lah", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jau", - "Description": [ - "Yaur" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jax", - "Description": [ - "Jambi Malay" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jay", - "Description": [ - "Yan-nhangu", - "Nhangu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jaz", - "Description": [ - "Jawe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jbe", - "Description": [ - "Judeo-Berber" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jbi", - "Description": [ - "Badjiri" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jbj", - "Description": [ - "Arandai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jbk", - "Description": [ - "Barikewa" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jbm", - "Description": [ - "Bijim" - ], - "Added": "2021-02-20", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jbn", - "Description": [ - "Nafusi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jbo", - "Description": [ - "Lojban" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jbr", - "Description": [ - "Jofotek-Bromnya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jbt", - "Description": [ - "Jabut\u00ED" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jbu", - "Description": [ - "Jukun Takum" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jbw", - "Description": [ - "Yawijibaya" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jcs", - "Description": [ - "Jamaican Country Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jct", - "Description": [ - "Krymchak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jda", - "Description": [ - "Jad" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jdg", - "Description": [ - "Jadgali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jdt", - "Description": [ - "Judeo-Tat" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jeb", - "Description": [ - "Jebero" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jee", - "Description": [ - "Jerung" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jeg", - "Description": [ - "Jeng" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2017-02-23", - "Comments": [], - "Prefix": [], - "PreferredValue": "oyb" - }, - { - "Type": "Language", - "SubTag": "jeh", - "Description": [ - "Jeh" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jei", - "Description": [ - "Yei" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jek", - "Description": [ - "Jeri Kuo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jel", - "Description": [ - "Yelmek" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jen", - "Description": [ - "Dza" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jer", - "Description": [ - "Jere" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jet", - "Description": [ - "Manem" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jeu", - "Description": [ - "Jonkor Bourmataguil" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jgb", - "Description": [ - "Ngbee" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jge", - "Description": [ - "Judeo-Georgian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jgk", - "Description": [ - "Gwak" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jgo", - "Description": [ - "Ngomba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jhi", - "Description": [ - "Jehai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jhs", - "Description": [ - "Jhankot Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jia", - "Description": [ - "Jina" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jib", - "Description": [ - "Jibu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jic", - "Description": [ - "Tol" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jid", - "Description": [ - "Bu (Kaduna State)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jie", - "Description": [ - "Jilbe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jig", - "Description": [ - "Jingulu", - "Djingili" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jih", - "Description": [ - "sTodsde", - "Shangzhai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jii", - "Description": [ - "Jiiddu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jil", - "Description": [ - "Jilim" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jim", - "Description": [ - "Jimi (Cameroon)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jio", - "Description": [ - "Jiamao" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jiq", - "Description": [ - "Guanyinqiao", - "Lavrung" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jit", - "Description": [ - "Jita" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jiu", - "Description": [ - "Youle Jinuo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jiv", - "Description": [ - "Shuar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jiy", - "Description": [ - "Buyuan Jinuo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jje", - "Description": [ - "Jejueo" - ], - "Added": "2015-02-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jjr", - "Description": [ - "Bankal" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jka", - "Description": [ - "Kaera" - ], - "Added": "2016-05-30", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jkm", - "Description": [ - "Mobwa Karen" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jko", - "Description": [ - "Kubo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jkp", - "Description": [ - "Paku Karen" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jkr", - "Description": [ - "Koro (India)" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jks", - "Description": [ - "Amami Koniya Sign Language" - ], - "Added": "2021-02-20", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jku", - "Description": [ - "Labir" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jle", - "Description": [ - "Ngile" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jls", - "Description": [ - "Jamaican Sign Language" - ], - "Added": "2010-03-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jma", - "Description": [ - "Dima" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jmb", - "Description": [ - "Zumbun" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jmc", - "Description": [ - "Machame" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jmd", - "Description": [ - "Yamdena" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jmi", - "Description": [ - "Jimi (Nigeria)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jml", - "Description": [ - "Jumli" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jmn", - "Description": [ - "Makuri Naga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jmr", - "Description": [ - "Kamara" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jms", - "Description": [ - "Mashi (Nigeria)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jmw", - "Description": [ - "Mouwase" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jmx", - "Description": [ - "Western Juxtlahuaca Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jna", - "Description": [ - "Jangshung" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jnd", - "Description": [ - "Jandavra" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jng", - "Description": [ - "Yangman" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jni", - "Description": [ - "Janji" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jnj", - "Description": [ - "Yemsa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jnl", - "Description": [ - "Rawat" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jns", - "Description": [ - "Jaunsari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "job", - "Description": [ - "Joba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jod", - "Description": [ - "Wojenaka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jog", - "Description": [ - "Jogi" - ], - "Added": "2015-05-27", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jor", - "Description": [ - "Jor\u00E1" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jos", - "Description": [ - "Jordanian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jow", - "Description": [ - "Jowulu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jpa", - "Description": [ - "Jewish Palestinian Aramaic" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jpr", - "Description": [ - "Judeo-Persian" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jpx", - "Description": [ - "Japanese (family)" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jqr", - "Description": [ - "Jaqaru" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jra", - "Description": [ - "Jarai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jrb", - "Description": [ - "Judeo-Arabic" - ], - "Added": "2005-10-16", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jrr", - "Description": [ - "Jiru" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jrt", - "Description": [ - "Jakattoe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jru", - "Description": [ - "Japrer\u00EDa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jsl", - "Description": [ - "Japanese Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jua", - "Description": [ - "J\u00FAma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jub", - "Description": [ - "Wannu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "juc", - "Description": [ - "Jurchen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jud", - "Description": [ - "Worodougou" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "juh", - "Description": [ - "H\u00F5ne" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jui", - "Description": [ - "Ngadjuri" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "juk", - "Description": [ - "Wapan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jul", - "Description": [ - "Jirel" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jum", - "Description": [ - "Jumjum" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jun", - "Description": [ - "Juang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "juo", - "Description": [ - "Jiba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jup", - "Description": [ - "Hupd\u00EB" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jur", - "Description": [ - "Jur\u00FAna" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jus", - "Description": [ - "Jumla Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jut", - "Description": [ - "Jutish" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "juu", - "Description": [ - "Ju" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "juw", - "Description": [ - "W\u00E3pha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "juy", - "Description": [ - "Juray" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jvd", - "Description": [ - "Javindo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jvn", - "Description": [ - "Caribbean Javanese" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jwi", - "Description": [ - "Jwira-Pepesa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jya", - "Description": [ - "Jiarong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jye", - "Description": [ - "Judeo-Yemeni Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "jrb", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "jyy", - "Description": [ - "Jaya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kaa", - "Description": [ - "Kara-Kalpak", - "Karakalpak" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kab", - "Description": [ - "Kabyle" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kac", - "Description": [ - "Kachin", - "Jingpho" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kad", - "Description": [ - "Adara" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kae", - "Description": [ - "Ketangalan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kaf", - "Description": [ - "Katso" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kag", - "Description": [ - "Kajaman" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kah", - "Description": [ - "Kara (Central African Republic)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kai", - "Description": [ - "Karekare" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kaj", - "Description": [ - "Jju" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kak", - "Description": [ - "Kalanguya", - "Kayapa Kallahan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kam", - "Description": [ - "Kamba (Kenya)" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kao", - "Description": [ - "Xaasongaxango" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kap", - "Description": [ - "Bezhta" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kaq", - "Description": [ - "Capanahua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kar", - "Description": [ - "Karen languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kav", - "Description": [ - "Katuk\u00EDna" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kaw", - "Description": [ - "Kawi" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kax", - "Description": [ - "Kao" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kay", - "Description": [ - "Kamayur\u00E1" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kba", - "Description": [ - "Kalarko" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kbb", - "Description": [ - "Kaxui\u00E2na" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kbc", - "Description": [ - "Kadiw\u00E9u" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kbd", - "Description": [ - "Kabardian" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kbe", - "Description": [ - "Kanju" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kbf", - "Description": [ - "Kakauhua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2015-02-12", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kbg", - "Description": [ - "Khamba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kbh", - "Description": [ - "Cams\u00E1" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kbi", - "Description": [ - "Kaptiau" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kbj", - "Description": [ - "Kari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kbk", - "Description": [ - "Grass Koiari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kbl", - "Description": [ - "Kanembu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kbm", - "Description": [ - "Iwal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kbn", - "Description": [ - "Kare (Central African Republic)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kbo", - "Description": [ - "Keliko" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kbp", - "Description": [ - "Kabiy\u00E8" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kbq", - "Description": [ - "Kamano" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kbr", - "Description": [ - "Kafa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kbs", - "Description": [ - "Kande" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kbt", - "Description": [ - "Abadi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kbu", - "Description": [ - "Kabutra" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kbv", - "Description": [ - "Dera (Indonesia)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kbw", - "Description": [ - "Kaiep" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kbx", - "Description": [ - "Ap Ma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kby", - "Description": [ - "Manga Kanuri" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "kr", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kbz", - "Description": [ - "Duhwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kca", - "Description": [ - "Khanty" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kcb", - "Description": [ - "Kawacha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kcc", - "Description": [ - "Lubila" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kcd", - "Description": [ - "Ngk\u00E2lmpw Kanum" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kce", - "Description": [ - "Kaivi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kcf", - "Description": [ - "Ukaan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kcg", - "Description": [ - "Tyap" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kch", - "Description": [ - "Vono" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kci", - "Description": [ - "Ngyian", - "Kamantan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kcj", - "Description": [ - "Kobiana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kck", - "Description": [ - "Kalanga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kcl", - "Description": [ - "Kela (Papua New Guinea)", - "Kala" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kcm", - "Description": [ - "Gula (Central African Republic)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kcn", - "Description": [ - "Nubi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kco", - "Description": [ - "Kinalakna" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kcp", - "Description": [ - "Kanga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kcq", - "Description": [ - "Kamo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kcr", - "Description": [ - "Katla" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kcs", - "Description": [ - "Koenoem" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kct", - "Description": [ - "Kaian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kcu", - "Description": [ - "Kami (Tanzania)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kcv", - "Description": [ - "Kete" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kcw", - "Description": [ - "Kabwari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kcx", - "Description": [ - "Kachama-Ganjule" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kcy", - "Description": [ - "Korandje" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kcz", - "Description": [ - "Konongo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kda", - "Description": [ - "Worimi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kdc", - "Description": [ - "Kutu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kdd", - "Description": [ - "Yankunytjatjara" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kde", - "Description": [ - "Makonde" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kdf", - "Description": [ - "Mamusi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kdg", - "Description": [ - "Seba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kdh", - "Description": [ - "Tem" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kdi", - "Description": [ - "Kumam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kdj", - "Description": [ - "Karamojong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kdk", - "Description": [ - "Num\u00E8\u00E8", - "Kw\u00E9nyi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kdl", - "Description": [ - "Tsikimba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kdm", - "Description": [ - "Kagoma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kdn", - "Description": [ - "Kunda" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kdo", - "Description": [ - "Kordofanian languages" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kdp", - "Description": [ - "Kaningdon-Nindem" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kdq", - "Description": [ - "Koch" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kdr", - "Description": [ - "Karaim" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kdt", - "Description": [ - "Kuy" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kdu", - "Description": [ - "Kadaru" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kdv", - "Description": [ - "Kado" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2012-08-12", - "Comments": [ - "see zkd, zkn" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kdw", - "Description": [ - "Koneraw" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kdx", - "Description": [ - "Kam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kdy", - "Description": [ - "Keder", - "Keijar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kdz", - "Description": [ - "Kwaja" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kea", - "Description": [ - "Kabuverdianu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "keb", - "Description": [ - "K\u00E9l\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kec", - "Description": [ - "Keiga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ked", - "Description": [ - "Kerewe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kee", - "Description": [ - "Eastern Keres" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kef", - "Description": [ - "Kpessi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "keg", - "Description": [ - "Tese" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "keh", - "Description": [ - "Keak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kei", - "Description": [ - "Kei" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kej", - "Description": [ - "Kadar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kek", - "Description": [ - "Kekch\u00ED" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kel", - "Description": [ - "Kela (Democratic Republic of Congo)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kem", - "Description": [ - "Kemak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ken", - "Description": [ - "Kenyang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "keo", - "Description": [ - "Kakwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kep", - "Description": [ - "Kaikadi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "keq", - "Description": [ - "Kamar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ker", - "Description": [ - "Kera" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kes", - "Description": [ - "Kugbo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ket", - "Description": [ - "Ket" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "keu", - "Description": [ - "Akebu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kev", - "Description": [ - "Kanikkaran" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kew", - "Description": [ - "West Kewa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kex", - "Description": [ - "Kukna" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "key", - "Description": [ - "Kupia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kez", - "Description": [ - "Kukele" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kfa", - "Description": [ - "Kodava" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kfb", - "Description": [ - "Northwestern Kolami" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kfc", - "Description": [ - "Konda-Dora" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kfd", - "Description": [ - "Korra Koraga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kfe", - "Description": [ - "Kota (India)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kff", - "Description": [ - "Koya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kfg", - "Description": [ - "Kudiya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kfh", - "Description": [ - "Kurichiya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kfi", - "Description": [ - "Kannada Kurumba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kfj", - "Description": [ - "Kemiehua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kfk", - "Description": [ - "Kinnauri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kfl", - "Description": [ - "Kung" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kfm", - "Description": [ - "Khunsari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kfn", - "Description": [ - "Kuk" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kfo", - "Description": [ - "Koro (C\u00F4te d\u0027Ivoire)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kfp", - "Description": [ - "Korwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kfq", - "Description": [ - "Korku" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kfr", - "Description": [ - "Kachhi", - "Kutchi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kfs", - "Description": [ - "Bilaspuri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kft", - "Description": [ - "Kanjari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kfu", - "Description": [ - "Katkari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kfv", - "Description": [ - "Kurmukar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kfw", - "Description": [ - "Kharam Naga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kfx", - "Description": [ - "Kullu Pahari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kfy", - "Description": [ - "Kumaoni" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kfz", - "Description": [ - "Koromf\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kga", - "Description": [ - "Koyaga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kgb", - "Description": [ - "Kawe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kgc", - "Description": [ - "Kasseng" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2016-05-30", - "Comments": [], - "Prefix": [], - "PreferredValue": "tdf" - }, - { - "Type": "Language", - "SubTag": "kgd", - "Description": [ - "Kataang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2017-02-23", - "Comments": [ - "see ncq, sct" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kge", - "Description": [ - "Komering" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kgf", - "Description": [ - "Kube" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kgg", - "Description": [ - "Kusunda" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kgh", - "Description": [ - "Upper Tanudan Kalinga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2012-08-12", - "Comments": [], - "Prefix": [], - "PreferredValue": "kml" - }, - { - "Type": "Language", - "SubTag": "kgi", - "Description": [ - "Selangor Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kgj", - "Description": [ - "Gamale Kham" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kgk", - "Description": [ - "Kaiw\u00E1" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kgl", - "Description": [ - "Kunggari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kgm", - "Description": [ - "Karip\u00FAna" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2023-03-17", - "Comments": [], - "Prefix": [], - "PreferredValue": "plu" - }, - { - "Type": "Language", - "SubTag": "kgn", - "Description": [ - "Karingani" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kgo", - "Description": [ - "Krongo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kgp", - "Description": [ - "Kaingang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kgq", - "Description": [ - "Kamoro" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kgr", - "Description": [ - "Abun" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kgs", - "Description": [ - "Kumbainggar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kgt", - "Description": [ - "Somyev" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kgu", - "Description": [ - "Kobol" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kgv", - "Description": [ - "Karas" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kgw", - "Description": [ - "Karon Dori" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kgx", - "Description": [ - "Kamaru" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kgy", - "Description": [ - "Kyerung" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kha", - "Description": [ - "Khasi" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [ - "as of 2008-04-21 this subtag does not include Lyngngam; see lyg" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "khb", - "Description": [ - "L\u00FC" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "khc", - "Description": [ - "Tukang Besi North" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "khd", - "Description": [ - "B\u00E4di Kanum" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "khe", - "Description": [ - "Korowai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "khf", - "Description": [ - "Khuen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "khg", - "Description": [ - "Khams Tibetan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "khh", - "Description": [ - "Kehu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "khi", - "Description": [ - "Khoisan languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "khj", - "Description": [ - "Kuturmi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "khk", - "Description": [ - "Halh Mongolian" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "mn", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "khl", - "Description": [ - "Lusi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "khn", - "Description": [ - "Khandesi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kho", - "Description": [ - "Khotanese", - "Sakan" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "khp", - "Description": [ - "Kapori", - "Kapauri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "khq", - "Description": [ - "Koyra Chiini Songhay" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "khr", - "Description": [ - "Kharia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "khs", - "Description": [ - "Kasua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kht", - "Description": [ - "Khamti" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "khu", - "Description": [ - "Nkhumbi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "khv", - "Description": [ - "Khvarshi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "khw", - "Description": [ - "Khowar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "khx", - "Description": [ - "Kanu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "khy", - "Description": [ - "Kele (Democratic Republic of Congo)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "khz", - "Description": [ - "Keapara" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kia", - "Description": [ - "Kim" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kib", - "Description": [ - "Koalib" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kic", - "Description": [ - "Kickapoo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kid", - "Description": [ - "Koshin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kie", - "Description": [ - "Kibet" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kif", - "Description": [ - "Eastern Parbate Kham" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kig", - "Description": [ - "Kimaama", - "Kimaghima" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kih", - "Description": [ - "Kilmeri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kii", - "Description": [ - "Kitsai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kij", - "Description": [ - "Kilivila" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kil", - "Description": [ - "Kariya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kim", - "Description": [ - "Karagas" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kio", - "Description": [ - "Kiowa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kip", - "Description": [ - "Sheshi Kham" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kiq", - "Description": [ - "Kosadle", - "Kosare" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kis", - "Description": [ - "Kis" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kit", - "Description": [ - "Agob" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kiu", - "Description": [ - "Kirmanjki (individual language)" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zza", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kiv", - "Description": [ - "Kimbu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kiw", - "Description": [ - "Northeast Kiwai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kix", - "Description": [ - "Khiamniungan Naga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kiy", - "Description": [ - "Kirikiri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kiz", - "Description": [ - "Kisi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kja", - "Description": [ - "Mlap" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kjb", - "Description": [ - "Q\u0027anjob\u0027al", - "Kanjobal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kjc", - "Description": [ - "Coastal Konjo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kjd", - "Description": [ - "Southern Kiwai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kje", - "Description": [ - "Kisar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kjf", - "Description": [ - "Khalaj [Indo-Iranian]" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2020-03-28", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kjg", - "Description": [ - "Khmu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kjh", - "Description": [ - "Khakas" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kji", - "Description": [ - "Zabana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kjj", - "Description": [ - "Khinalugh" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kjk", - "Description": [ - "Highland Konjo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kjl", - "Description": [ - "Western Parbate Kham" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kjm", - "Description": [ - "Kh\u00E1ng" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kjn", - "Description": [ - "Kunjen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kjo", - "Description": [ - "Kinnauri Pahari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kjp", - "Description": [ - "Pwo Eastern Karen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kjq", - "Description": [ - "Western Keres" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kjr", - "Description": [ - "Kurudu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kjs", - "Description": [ - "East Kewa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kjt", - "Description": [ - "Phrae Pwo Karen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kju", - "Description": [ - "Kashaya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kjv", - "Description": [ - "Kaikavian Literary Language" - ], - "Added": "2015-02-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kjx", - "Description": [ - "Ramopa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kjy", - "Description": [ - "Erave" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kjz", - "Description": [ - "Bumthangkha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kka", - "Description": [ - "Kakanda" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kkb", - "Description": [ - "Kwerisa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kkc", - "Description": [ - "Odoodee" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kkd", - "Description": [ - "Kinuku" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kke", - "Description": [ - "Kakabe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kkf", - "Description": [ - "Kalaktang Monpa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kkg", - "Description": [ - "Mabaka Valley Kalinga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kkh", - "Description": [ - "Kh\u00FCn" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kki", - "Description": [ - "Kagulu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kkj", - "Description": [ - "Kako" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kkk", - "Description": [ - "Kokota" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kkl", - "Description": [ - "Kosarek Yale" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kkm", - "Description": [ - "Kiong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kkn", - "Description": [ - "Kon Keu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kko", - "Description": [ - "Karko" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kkp", - "Description": [ - "Gugubera", - "Koko-Bera" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kkq", - "Description": [ - "Kaeku" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kkr", - "Description": [ - "Kir-Balar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kks", - "Description": [ - "Giiwo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kkt", - "Description": [ - "Koi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kku", - "Description": [ - "Tumi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kkv", - "Description": [ - "Kangean" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kkw", - "Description": [ - "Teke-Kukuya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kkx", - "Description": [ - "Kohin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kky", - "Description": [ - "Guugu Yimidhirr", - "Guguyimidjir" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kkz", - "Description": [ - "Kaska" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kla", - "Description": [ - "Klamath-Modoc" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "klb", - "Description": [ - "Kiliwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "klc", - "Description": [ - "Kolbila" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kld", - "Description": [ - "Gamilaraay" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kle", - "Description": [ - "Kulung (Nepal)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "klf", - "Description": [ - "Kendeje" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "klg", - "Description": [ - "Tagakaulo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "klh", - "Description": [ - "Weliki" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kli", - "Description": [ - "Kalumpang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "klj", - "Description": [ - "Khalaj" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "klk", - "Description": [ - "Kono (Nigeria)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kll", - "Description": [ - "Kagan Kalagan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "klm", - "Description": [ - "Migum" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kln", - "Description": [ - "Kalenjin" - ], - "Added": "2009-07-29", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "klo", - "Description": [ - "Kapya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "klp", - "Description": [ - "Kamasa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "klq", - "Description": [ - "Rumu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "klr", - "Description": [ - "Khaling" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kls", - "Description": [ - "Kalasha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "klt", - "Description": [ - "Nukna" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "klu", - "Description": [ - "Klao" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "klv", - "Description": [ - "Maskelynes" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "klw", - "Description": [ - "Tado", - "Lindu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "klx", - "Description": [ - "Koluwawa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kly", - "Description": [ - "Kalao" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "klz", - "Description": [ - "Kabola" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kma", - "Description": [ - "Konni" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kmb", - "Description": [ - "Kimbundu" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kmc", - "Description": [ - "Southern Dong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kmd", - "Description": [ - "Majukayang Kalinga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kme", - "Description": [ - "Bakole" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kmf", - "Description": [ - "Kare (Papua New Guinea)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kmg", - "Description": [ - "K\u00E2te" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kmh", - "Description": [ - "Kalam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kmi", - "Description": [ - "Kami (Nigeria)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kmj", - "Description": [ - "Kumarbhag Paharia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kmk", - "Description": [ - "Limos Kalinga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kml", - "Description": [ - "Tanudan Kalinga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kmm", - "Description": [ - "Kom (India)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kmn", - "Description": [ - "Awtuw" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kmo", - "Description": [ - "Kwoma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kmp", - "Description": [ - "Gimme" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kmq", - "Description": [ - "Kwama" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kmr", - "Description": [ - "Northern Kurdish" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ku", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kms", - "Description": [ - "Kamasau" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kmt", - "Description": [ - "Kemtuik" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kmu", - "Description": [ - "Kanite" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kmv", - "Description": [ - "Karip\u00FAna Creole French" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kmw", - "Description": [ - "Komo (Democratic Republic of Congo)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kmx", - "Description": [ - "Waboda" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kmy", - "Description": [ - "Koma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kmz", - "Description": [ - "Khorasani Turkish" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kna", - "Description": [ - "Dera (Nigeria)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "knb", - "Description": [ - "Lubuagan Kalinga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "knc", - "Description": [ - "Central Kanuri" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "kr", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "knd", - "Description": [ - "Konda" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kne", - "Description": [ - "Kankanaey" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "knf", - "Description": [ - "Mankanya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kng", - "Description": [ - "Koongo" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "kg", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kni", - "Description": [ - "Kanufi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "knj", - "Description": [ - "Western Kanjobal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "knk", - "Description": [ - "Kuranko" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "knl", - "Description": [ - "Keninjal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "knm", - "Description": [ - "Kanamar\u00ED" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "knn", - "Description": [ - "Konkani (individual language)" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "kok", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kno", - "Description": [ - "Kono (Sierra Leone)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "knp", - "Description": [ - "Kwanja" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "knq", - "Description": [ - "Kintaq" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "knr", - "Description": [ - "Kaningra" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kns", - "Description": [ - "Kensiu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "knt", - "Description": [ - "Panoan Katuk\u00EDna" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "knu", - "Description": [ - "Kono (Guinea)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "knv", - "Description": [ - "Tabo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "knw", - "Description": [ - "Kung-Ekoka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "knx", - "Description": [ - "Kendayan", - "Salako" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kny", - "Description": [ - "Kanyok" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "knz", - "Description": [ - "Kalams\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "koa", - "Description": [ - "Konomala" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "koc", - "Description": [ - "Kpati" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kod", - "Description": [ - "Kodi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "koe", - "Description": [ - "Kacipo-Bale Suri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kof", - "Description": [ - "Kubi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kog", - "Description": [ - "Cogui", - "Kogi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "koh", - "Description": [ - "Koyo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "koi", - "Description": [ - "Komi-Permyak" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "kv", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "koj", - "Description": [ - "Sara Dunjo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2015-02-12", - "Comments": [], - "Prefix": [], - "PreferredValue": "kwv" - }, - { - "Type": "Language", - "SubTag": "kok", - "Description": [ - "Konkani (macrolanguage)" - ], - "Added": "2005-10-16", - "SuppressScript": "Deva", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kol", - "Description": [ - "Kol (Papua New Guinea)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "koo", - "Description": [ - "Konzo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kop", - "Description": [ - "Waube" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "koq", - "Description": [ - "Kota (Gabon)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kos", - "Description": [ - "Kosraean" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kot", - "Description": [ - "Lagwan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kou", - "Description": [ - "Koke" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kov", - "Description": [ - "Kudu-Camo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kow", - "Description": [ - "Kugama" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kox", - "Description": [ - "Coxima" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2016-05-30", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "koy", - "Description": [ - "Koyukon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "koz", - "Description": [ - "Korak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kpa", - "Description": [ - "Kutto" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kpb", - "Description": [ - "Mullu Kurumba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kpc", - "Description": [ - "Curripaco" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kpd", - "Description": [ - "Koba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kpe", - "Description": [ - "Kpelle" - ], - "Added": "2005-10-16", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kpf", - "Description": [ - "Komba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kpg", - "Description": [ - "Kapingamarangi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kph", - "Description": [ - "Kplang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kpi", - "Description": [ - "Kofei" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kpj", - "Description": [ - "Karaj\u00E1" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kpk", - "Description": [ - "Kpan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kpl", - "Description": [ - "Kpala" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kpm", - "Description": [ - "Koho" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kpn", - "Description": [ - "Kepkiriw\u00E1t" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kpo", - "Description": [ - "Ikposo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kpp", - "Description": [ - "Paku Karen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2012-08-12", - "Comments": [ - "see jkm, jkp" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kpq", - "Description": [ - "Korupun-Sela" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kpr", - "Description": [ - "Korafe-Yegha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kps", - "Description": [ - "Tehit" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kpt", - "Description": [ - "Karata" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kpu", - "Description": [ - "Kafoa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kpv", - "Description": [ - "Komi-Zyrian" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "kv", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kpw", - "Description": [ - "Kobon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kpx", - "Description": [ - "Mountain Koiali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kpy", - "Description": [ - "Koryak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kpz", - "Description": [ - "Kupsabiny" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kqa", - "Description": [ - "Mum" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kqb", - "Description": [ - "Kovai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kqc", - "Description": [ - "Doromu-Koki" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kqd", - "Description": [ - "Koy Sanjaq Surat" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kqe", - "Description": [ - "Kalagan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kqf", - "Description": [ - "Kakabai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kqg", - "Description": [ - "Khe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kqh", - "Description": [ - "Kisankasa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kqi", - "Description": [ - "Koitabu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kqj", - "Description": [ - "Koromira" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kqk", - "Description": [ - "Kotafon Gbe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kql", - "Description": [ - "Kyenele" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kqm", - "Description": [ - "Khisa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kqn", - "Description": [ - "Kaonde" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kqo", - "Description": [ - "Eastern Krahn" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kqp", - "Description": [ - "Kimr\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kqq", - "Description": [ - "Krenak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kqr", - "Description": [ - "Kimaragang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kqs", - "Description": [ - "Northern Kissi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kqt", - "Description": [ - "Klias River Kadazan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kqu", - "Description": [ - "Seroa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kqv", - "Description": [ - "Okolod" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kqw", - "Description": [ - "Kandas" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kqx", - "Description": [ - "Mser" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kqy", - "Description": [ - "Koorete" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kqz", - "Description": [ - "Korana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kra", - "Description": [ - "Kumhali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "krb", - "Description": [ - "Karkin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "krc", - "Description": [ - "Karachay-Balkar" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "krd", - "Description": [ - "Kairui-Midiki" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kre", - "Description": [ - "Panar\u00E1" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "krf", - "Description": [ - "Koro (Vanuatu)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "krh", - "Description": [ - "Kurama" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kri", - "Description": [ - "Krio" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "krj", - "Description": [ - "Kinaray-A" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "krk", - "Description": [ - "Kerek" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "krl", - "Description": [ - "Karelian" - ], - "Added": "2006-03-08", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "krm", - "Description": [ - "Krim" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2017-02-23", - "Comments": [], - "Prefix": [], - "PreferredValue": "bmf" - }, - { - "Type": "Language", - "SubTag": "krn", - "Description": [ - "Sapo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kro", - "Description": [ - "Kru languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "krp", - "Description": [ - "Durop" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "krr", - "Description": [ - "Krung" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "krs", - "Description": [ - "Gbaya (Sudan)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "krt", - "Description": [ - "Tumari Kanuri" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "kr", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kru", - "Description": [ - "Kurukh" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "krv", - "Description": [ - "Kavet" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "krw", - "Description": [ - "Western Krahn" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "krx", - "Description": [ - "Karon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kry", - "Description": [ - "Kryts" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "krz", - "Description": [ - "Sota Kanum" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ksa", - "Description": [ - "Shuwa-Zamani" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2023-03-17", - "Comments": [ - "see izm, rsw" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ksb", - "Description": [ - "Shambala" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ksc", - "Description": [ - "Southern Kalinga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ksd", - "Description": [ - "Kuanua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kse", - "Description": [ - "Kuni" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ksf", - "Description": [ - "Bafia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ksg", - "Description": [ - "Kusaghe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ksh", - "Description": [ - "K\u00F6lsch" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ksi", - "Description": [ - "Krisa", - "I\u0027saka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ksj", - "Description": [ - "Uare" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ksk", - "Description": [ - "Kansa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ksl", - "Description": [ - "Kumalu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ksm", - "Description": [ - "Kumba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ksn", - "Description": [ - "Kasiguranin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kso", - "Description": [ - "Kofa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ksp", - "Description": [ - "Kaba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ksq", - "Description": [ - "Kwaami" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ksr", - "Description": [ - "Borong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kss", - "Description": [ - "Southern Kisi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kst", - "Description": [ - "Winy\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ksu", - "Description": [ - "Khamyang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ksv", - "Description": [ - "Kusu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ksw", - "Description": [ - "S\u0027gaw Karen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ksx", - "Description": [ - "Kedang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ksy", - "Description": [ - "Kharia Thar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ksz", - "Description": [ - "Kodaku" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kta", - "Description": [ - "Katua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ktb", - "Description": [ - "Kambaata" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ktc", - "Description": [ - "Kholok" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ktd", - "Description": [ - "Kokata", - "Kukatha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kte", - "Description": [ - "Nubri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ktf", - "Description": [ - "Kwami" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ktg", - "Description": [ - "Kalkutung" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kth", - "Description": [ - "Karanga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kti", - "Description": [ - "North Muyu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ktj", - "Description": [ - "Plapo Krumen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ktk", - "Description": [ - "Kaniet" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ktl", - "Description": [ - "Koroshi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ktm", - "Description": [ - "Kurti" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ktn", - "Description": [ - "Kariti\u00E2na" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kto", - "Description": [ - "Kuot" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ktp", - "Description": [ - "Kaduo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ktq", - "Description": [ - "Katabaga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ktr", - "Description": [ - "Kota Marudu Tinagas" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2016-05-30", - "Comments": [], - "Prefix": [], - "PreferredValue": "dtp" - }, - { - "Type": "Language", - "SubTag": "kts", - "Description": [ - "South Muyu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ktt", - "Description": [ - "Ketum" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ktu", - "Description": [ - "Kituba (Democratic Republic of Congo)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ktv", - "Description": [ - "Eastern Katu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ktw", - "Description": [ - "Kato" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ktx", - "Description": [ - "Kaxarar\u00ED" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kty", - "Description": [ - "Kango (Bas-U\u00E9l\u00E9 District)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ktz", - "Description": [ - "Ju\u01C0\u02BChoan", - "Ju\u01C0\u02BChoansi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kub", - "Description": [ - "Kutep" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kuc", - "Description": [ - "Kwinsu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kud", - "Description": [ - "\u0027Auhelawa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kue", - "Description": [ - "Kuman (Papua New Guinea)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kuf", - "Description": [ - "Western Katu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kug", - "Description": [ - "Kupa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kuh", - "Description": [ - "Kushi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kui", - "Description": [ - "Kuik\u00FAro-Kalap\u00E1lo", - "Kalapalo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kuj", - "Description": [ - "Kuria" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kuk", - "Description": [ - "Kepo\u0027" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kul", - "Description": [ - "Kulere" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kum", - "Description": [ - "Kumyk" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kun", - "Description": [ - "Kunama" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kuo", - "Description": [ - "Kumukio" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kup", - "Description": [ - "Kunimaipa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kuq", - "Description": [ - "Karipuna" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kus", - "Description": [ - "Kusaal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kut", - "Description": [ - "Ktunaxa", - "Ksanka", - "Kutenai" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kuu", - "Description": [ - "Upper Kuskokwim" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kuv", - "Description": [ - "Kur" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kuw", - "Description": [ - "Kpagua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kux", - "Description": [ - "Kukatja" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kuy", - "Description": [ - "Kuuku-Ya\u0027u" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kuz", - "Description": [ - "Kunza" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kva", - "Description": [ - "Bagvalal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kvb", - "Description": [ - "Kubu" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kvc", - "Description": [ - "Kove" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kvd", - "Description": [ - "Kui (Indonesia)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kve", - "Description": [ - "Kalabakan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kvf", - "Description": [ - "Kabalai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kvg", - "Description": [ - "Kuni-Boazi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kvh", - "Description": [ - "Komodo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kvi", - "Description": [ - "Kwang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kvj", - "Description": [ - "Psikye" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kvk", - "Description": [ - "Korean Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kvl", - "Description": [ - "Kayaw" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kvm", - "Description": [ - "Kendem" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kvn", - "Description": [ - "Border Kuna" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kvo", - "Description": [ - "Dobel" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kvp", - "Description": [ - "Kompane" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kvq", - "Description": [ - "Geba Karen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kvr", - "Description": [ - "Kerinci" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kvs", - "Description": [ - "Kunggara" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2016-05-30", - "Comments": [], - "Prefix": [], - "PreferredValue": "gdj" - }, - { - "Type": "Language", - "SubTag": "kvt", - "Description": [ - "Lahta Karen", - "Lahta" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kvu", - "Description": [ - "Yinbaw Karen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kvv", - "Description": [ - "Kola" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kvw", - "Description": [ - "Wersing" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kvx", - "Description": [ - "Parkari Koli" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kvy", - "Description": [ - "Yintale Karen", - "Yintale" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kvz", - "Description": [ - "Tsakwambo", - "Tsaukambo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kwa", - "Description": [ - "D\u00E2w" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kwb", - "Description": [ - "Kwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kwc", - "Description": [ - "Likwala" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kwd", - "Description": [ - "Kwaio" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kwe", - "Description": [ - "Kwerba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kwf", - "Description": [ - "Kwara\u0027ae" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kwg", - "Description": [ - "Sara Kaba Deme" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kwh", - "Description": [ - "Kowiai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kwi", - "Description": [ - "Awa-Cuaiquer" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kwj", - "Description": [ - "Kwanga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kwk", - "Description": [ - "Kwak\u0027wala", - "Kwakiutl" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kwl", - "Description": [ - "Kofyar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kwm", - "Description": [ - "Kwambi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kwn", - "Description": [ - "Kwangali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kwo", - "Description": [ - "Kwomtari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kwp", - "Description": [ - "Kodia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kwq", - "Description": [ - "Kwak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2015-02-12", - "Comments": [], - "Prefix": [], - "PreferredValue": "yam" - }, - { - "Type": "Language", - "SubTag": "kwr", - "Description": [ - "Kwer" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kws", - "Description": [ - "Kwese" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kwt", - "Description": [ - "Kwesten" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kwu", - "Description": [ - "Kwakum" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kwv", - "Description": [ - "Sara Kaba N\u00E1\u00E0" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kww", - "Description": [ - "Kwinti" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kwx", - "Description": [ - "Khirwar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kwy", - "Description": [ - "San Salvador Kongo" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "kg", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kwz", - "Description": [ - "Kwadi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kxa", - "Description": [ - "Kairiru" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kxb", - "Description": [ - "Krobu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kxc", - "Description": [ - "Konso", - "Khonso" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kxd", - "Description": [ - "Brunei" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kxe", - "Description": [ - "Kakihum" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2015-02-12", - "Comments": [], - "Prefix": [], - "PreferredValue": "tvd" - }, - { - "Type": "Language", - "SubTag": "kxf", - "Description": [ - "Manumanaw Karen", - "Manumanaw" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kxh", - "Description": [ - "Karo (Ethiopia)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kxi", - "Description": [ - "Keningau Murut" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kxj", - "Description": [ - "Kulfa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kxk", - "Description": [ - "Zayein Karen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kxl", - "Description": [ - "Nepali Kurux" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2020-03-28", - "Comments": [], - "Prefix": [], - "PreferredValue": "kru" - }, - { - "Type": "Language", - "SubTag": "kxm", - "Description": [ - "Northern Khmer" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kxn", - "Description": [ - "Kanowit-Tanjong Melanau" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kxo", - "Description": [ - "Kano\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kxp", - "Description": [ - "Wadiyara Koli" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kxq", - "Description": [ - "Sm\u00E4rky Kanum" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kxr", - "Description": [ - "Koro (Papua New Guinea)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kxs", - "Description": [ - "Kangjia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kxt", - "Description": [ - "Koiwat" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kxu", - "Description": [ - "Kui (India)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2020-03-28", - "Comments": [ - "see dwk, uki" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kxv", - "Description": [ - "Kuvi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kxw", - "Description": [ - "Konai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kxx", - "Description": [ - "Likuba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kxy", - "Description": [ - "Kayong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kxz", - "Description": [ - "Kerewo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kya", - "Description": [ - "Kwaya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kyb", - "Description": [ - "Butbut Kalinga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kyc", - "Description": [ - "Kyaka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kyd", - "Description": [ - "Karey" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kye", - "Description": [ - "Krache" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kyf", - "Description": [ - "Kouya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kyg", - "Description": [ - "Keyagana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kyh", - "Description": [ - "Karok" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kyi", - "Description": [ - "Kiput" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kyj", - "Description": [ - "Karao" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kyk", - "Description": [ - "Kamayo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kyl", - "Description": [ - "Kalapuya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kym", - "Description": [ - "Kpatili" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kyn", - "Description": [ - "Northern Binukidnon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kyo", - "Description": [ - "Kelon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kyp", - "Description": [ - "Kang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kyq", - "Description": [ - "Kenga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kyr", - "Description": [ - "Kuru\u00E1ya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kys", - "Description": [ - "Baram Kayan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kyt", - "Description": [ - "Kayagar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kyu", - "Description": [ - "Western Kayah" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kyv", - "Description": [ - "Kayort" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kyw", - "Description": [ - "Kudmali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kyx", - "Description": [ - "Rapoisi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kyy", - "Description": [ - "Kambaira" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kyz", - "Description": [ - "Kayab\u00ED" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kza", - "Description": [ - "Western Karaboro" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kzb", - "Description": [ - "Kaibobo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kzc", - "Description": [ - "Bondoukou Kulango" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kzd", - "Description": [ - "Kadai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kze", - "Description": [ - "Kosena" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kzf", - "Description": [ - "Da\u0027a Kaili" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kzg", - "Description": [ - "Kikai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kzh", - "Description": [ - "Kenuzi-Dongola" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2012-08-12", - "Comments": [ - "see dgl, xnz" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kzi", - "Description": [ - "Kelabit" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kzj", - "Description": [ - "Coastal Kadazan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2016-05-30", - "Comments": [], - "Prefix": [], - "PreferredValue": "dtp" - }, - { - "Type": "Language", - "SubTag": "kzk", - "Description": [ - "Kazukuru" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kzl", - "Description": [ - "Kayeli" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kzm", - "Description": [ - "Kais" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kzn", - "Description": [ - "Kokola" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kzo", - "Description": [ - "Kaningi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kzp", - "Description": [ - "Kaidipang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kzq", - "Description": [ - "Kaike" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kzr", - "Description": [ - "Karang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kzs", - "Description": [ - "Sugut Dusun" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kzt", - "Description": [ - "Tambunan Dusun" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2016-05-30", - "Comments": [], - "Prefix": [], - "PreferredValue": "dtp" - }, - { - "Type": "Language", - "SubTag": "kzu", - "Description": [ - "Kayupulau" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kzv", - "Description": [ - "Komyandaret" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kzw", - "Description": [ - "Karir\u00ED-Xoc\u00F3" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kzx", - "Description": [ - "Kamarian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kzy", - "Description": [ - "Kango (Tshopo District)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "kzz", - "Description": [ - "Kalabra" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "laa", - "Description": [ - "Southern Subanen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lab", - "Description": [ - "Linear A" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lac", - "Description": [ - "Lacandon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lad", - "Description": [ - "Ladino" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lae", - "Description": [ - "Pattani" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "laf", - "Description": [ - "Lafofa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lag", - "Description": [ - "Rangi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lah", - "Description": [ - "Lahnda" - ], - "Added": "2005-10-16", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lai", - "Description": [ - "Lambya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "laj", - "Description": [ - "Lango (Uganda)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lak", - "Description": [ - "Laka (Nigeria)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2022-02-25", - "Comments": [], - "Prefix": [], - "PreferredValue": "ksp" - }, - { - "Type": "Language", - "SubTag": "lal", - "Description": [ - "Lalia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lam", - "Description": [ - "Lamba" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lan", - "Description": [ - "Laru" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lap", - "Description": [ - "Laka (Chad)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "laq", - "Description": [ - "Qabiao" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lar", - "Description": [ - "Larteh" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "las", - "Description": [ - "Lama (Togo)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lau", - "Description": [ - "Laba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "law", - "Description": [ - "Lauje" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lax", - "Description": [ - "Tiwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lay", - "Description": [ - "Lama Bai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "laz", - "Description": [ - "Aribwatsa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lba", - "Description": [ - "Lui" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2019-04-16", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lbb", - "Description": [ - "Label" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lbc", - "Description": [ - "Lakkia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lbe", - "Description": [ - "Lak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lbf", - "Description": [ - "Tinani" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lbg", - "Description": [ - "Laopang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lbi", - "Description": [ - "La\u0027bi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lbj", - "Description": [ - "Ladakhi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lbk", - "Description": [ - "Central Bontok" - ], - "Added": "2010-03-11", - "Scope": "None", - "MacroLanguage": "bnc", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lbl", - "Description": [ - "Libon Bikol" - ], - "Added": "2010-03-11", - "Scope": "None", - "MacroLanguage": "bik", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lbm", - "Description": [ - "Lodhi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lbn", - "Description": [ - "Rmeet" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lbo", - "Description": [ - "Laven" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lbq", - "Description": [ - "Wampar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lbr", - "Description": [ - "Lohorung" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lbs", - "Description": [ - "Libyan Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lbt", - "Description": [ - "Lachi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lbu", - "Description": [ - "Labu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lbv", - "Description": [ - "Lavatbura-Lamusong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lbw", - "Description": [ - "Tolaki" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lbx", - "Description": [ - "Lawangan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lby", - "Description": [ - "Lamalama", - "Lamu-Lamu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lbz", - "Description": [ - "Lardil" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lcc", - "Description": [ - "Legenyem" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lcd", - "Description": [ - "Lola" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lce", - "Description": [ - "Loncong", - "Sekak" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lcf", - "Description": [ - "Lubu" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lch", - "Description": [ - "Luchazi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lcl", - "Description": [ - "Lisela" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lcm", - "Description": [ - "Tungag" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lcp", - "Description": [ - "Western Lawa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lcq", - "Description": [ - "Luhu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lcs", - "Description": [ - "Lisabata-Nuniali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lda", - "Description": [ - "Kla-Dan" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ldb", - "Description": [ - "D\u0169ya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ldd", - "Description": [ - "Luri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ldg", - "Description": [ - "Lenyima" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ldh", - "Description": [ - "Lamja-Dengsa-Tola" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ldi", - "Description": [ - "Laari" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "kg", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ldj", - "Description": [ - "Lemoro" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ldk", - "Description": [ - "Leelau" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ldl", - "Description": [ - "Kaan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ldm", - "Description": [ - "Landoma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ldn", - "Description": [ - "L\u00E1adan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ldo", - "Description": [ - "Loo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ldp", - "Description": [ - "Tso" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ldq", - "Description": [ - "Lufu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lea", - "Description": [ - "Lega-Shabunda" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "leb", - "Description": [ - "Lala-Bisa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lec", - "Description": [ - "Leco" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "led", - "Description": [ - "Lendu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lee", - "Description": [ - "Ly\u00E9l\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lef", - "Description": [ - "Lelemi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "leg", - "Description": [ - "Lengua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2014-02-28", - "Comments": [ - "see enl, enx" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "leh", - "Description": [ - "Lenje" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lei", - "Description": [ - "Lemio" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lej", - "Description": [ - "Lengola" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lek", - "Description": [ - "Leipon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lel", - "Description": [ - "Lele (Democratic Republic of Congo)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lem", - "Description": [ - "Nomaande" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "len", - "Description": [ - "Lenca" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "leo", - "Description": [ - "Leti (Cameroon)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lep", - "Description": [ - "Lepcha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "leq", - "Description": [ - "Lembena" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ler", - "Description": [ - "Lenkau" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "les", - "Description": [ - "Lese" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "let", - "Description": [ - "Lesing-Gelimi", - "Amio-Gelimi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "leu", - "Description": [ - "Kara (Papua New Guinea)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lev", - "Description": [ - "Lamma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lew", - "Description": [ - "Ledo Kaili" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lex", - "Description": [ - "Luang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ley", - "Description": [ - "Lemolang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lez", - "Description": [ - "Lezghian" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lfa", - "Description": [ - "Lefa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lfb", - "Description": [ - "Buu (Cameroon)" - ], - "Added": "2026-04-09", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lfn", - "Description": [ - "Lingua Franca Nova" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lga", - "Description": [ - "Lungga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lgb", - "Description": [ - "Laghu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lgg", - "Description": [ - "Lugbara" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lgh", - "Description": [ - "Laghuu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lgi", - "Description": [ - "Lengilu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lgk", - "Description": [ - "Lingarak", - "Neverver" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lgl", - "Description": [ - "Wala" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lgm", - "Description": [ - "Lega-Mwenga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lgn", - "Description": [ - "T\u0027apo", - "Opuuo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lgo", - "Description": [ - "Lango (South Sudan)" - ], - "Added": "2022-02-25", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lgq", - "Description": [ - "Logba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lgr", - "Description": [ - "Lengo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lgs", - "Description": [ - "Guinea-Bissau Sign Language", - "L\u00EDngua Gestual Guineense" - ], - "Added": "2023-03-17", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lgt", - "Description": [ - "Pahi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lgu", - "Description": [ - "Longgu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lgz", - "Description": [ - "Ligenza" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lha", - "Description": [ - "Laha (Viet Nam)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lhh", - "Description": [ - "Laha (Indonesia)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lhi", - "Description": [ - "Lahu Shi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lhl", - "Description": [ - "Lahul Lohar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lhm", - "Description": [ - "Lhomi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lhn", - "Description": [ - "Lahanan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lhp", - "Description": [ - "Lhokpu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lhs", - "Description": [ - "Mlahs\u00F6" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lht", - "Description": [ - "Lo-Toga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lhu", - "Description": [ - "Lahu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lia", - "Description": [ - "West-Central Limba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lib", - "Description": [ - "Likum" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lic", - "Description": [ - "Hlai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lid", - "Description": [ - "Nyindrou" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lie", - "Description": [ - "Likila" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lif", - "Description": [ - "Limbu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lig", - "Description": [ - "Ligbi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lih", - "Description": [ - "Lihir" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lii", - "Description": [ - "Lingkhim" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2015-02-12", - "Comments": [], - "Prefix": [], - "PreferredValue": "raq" - }, - { - "Type": "Language", - "SubTag": "lij", - "Description": [ - "Ligurian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lik", - "Description": [ - "Lika" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lil", - "Description": [ - "Lillooet" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lio", - "Description": [ - "Liki" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lip", - "Description": [ - "Sekpele" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "liq", - "Description": [ - "Libido" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lir", - "Description": [ - "Liberian English" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lis", - "Description": [ - "Lisu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "liu", - "Description": [ - "Logorik" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "liv", - "Description": [ - "Liv" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "liw", - "Description": [ - "Col" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lix", - "Description": [ - "Liabuku" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "liy", - "Description": [ - "Banda-Bambari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "liz", - "Description": [ - "Libinza" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lja", - "Description": [ - "Golpa" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lje", - "Description": [ - "Rampi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lji", - "Description": [ - "Laiyolo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ljl", - "Description": [ - "Li\u0027o" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ljp", - "Description": [ - "Lampung Api" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ljw", - "Description": [ - "Yirandali" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ljx", - "Description": [ - "Yuru" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lka", - "Description": [ - "Lakalei" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lkb", - "Description": [ - "Kabras", - "Lukabaras" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "luy", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lkc", - "Description": [ - "Kucong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lkd", - "Description": [ - "Lakond\u00EA" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lke", - "Description": [ - "Kenyi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lkh", - "Description": [ - "Lakha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lki", - "Description": [ - "Laki" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lkj", - "Description": [ - "Remun" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lkl", - "Description": [ - "Laeko-Libuat" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lkm", - "Description": [ - "Kalaamaya" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lkn", - "Description": [ - "Lakon", - "Vure" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lko", - "Description": [ - "Khayo", - "Olukhayo" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "luy", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lkr", - "Description": [ - "P\u00E4ri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lks", - "Description": [ - "Kisa", - "Olushisa" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "luy", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lkt", - "Description": [ - "Lakota" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lku", - "Description": [ - "Kungkari" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lky", - "Description": [ - "Lokoya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lla", - "Description": [ - "Lala-Roba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "llb", - "Description": [ - "Lolo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "llc", - "Description": [ - "Lele (Guinea)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lld", - "Description": [ - "Ladin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lle", - "Description": [ - "Lele (Papua New Guinea)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "llf", - "Description": [ - "Hermit" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "llg", - "Description": [ - "Lole" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "llh", - "Description": [ - "Lamu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lli", - "Description": [ - "Teke-Laali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "llj", - "Description": [ - "Ladji Ladji" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "llk", - "Description": [ - "Lelak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lll", - "Description": [ - "Lilau" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "llm", - "Description": [ - "Lasalimu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lln", - "Description": [ - "Lele (Chad)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "llo", - "Description": [ - "Khlor" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2019-04-16", - "Comments": [], - "Prefix": [], - "PreferredValue": "ngt" - }, - { - "Type": "Language", - "SubTag": "llp", - "Description": [ - "North Efate" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "llq", - "Description": [ - "Lolak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lls", - "Description": [ - "Lithuanian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "llu", - "Description": [ - "Lau" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "llx", - "Description": [ - "Lauan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lma", - "Description": [ - "East Limba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lmb", - "Description": [ - "Merei" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lmc", - "Description": [ - "Limilngan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lmd", - "Description": [ - "Lumun" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lme", - "Description": [ - "P\u00E9v\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lmf", - "Description": [ - "South Lembata" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lmg", - "Description": [ - "Lamogai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lmh", - "Description": [ - "Lambichhong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lmi", - "Description": [ - "Lombi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lmj", - "Description": [ - "West Lembata" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lmk", - "Description": [ - "Lamkang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lml", - "Description": [ - "Hano" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lmm", - "Description": [ - "Lamam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2014-02-28", - "Comments": [], - "Prefix": [], - "PreferredValue": "rmx" - }, - { - "Type": "Language", - "SubTag": "lmn", - "Description": [ - "Lambadi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lmo", - "Description": [ - "Lombard" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lmp", - "Description": [ - "Limbum" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lmq", - "Description": [ - "Lamatuka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lmr", - "Description": [ - "Lamalera" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lmu", - "Description": [ - "Lamenu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lmv", - "Description": [ - "Lomaiviti" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lmw", - "Description": [ - "Lake Miwok" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lmx", - "Description": [ - "Laimbue" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lmy", - "Description": [ - "Lamboya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lmz", - "Description": [ - "Lumbee" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2020-03-28", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lna", - "Description": [ - "Langbashe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lnb", - "Description": [ - "Mbalanhu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lnd", - "Description": [ - "Lundayeh", - "Lun Bawang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lng", - "Description": [ - "Langobardic" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lnh", - "Description": [ - "Lanoh" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lni", - "Description": [ - "Daantanai\u0027" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lnj", - "Description": [ - "Leningitij" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lnl", - "Description": [ - "South Central Banda" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lnm", - "Description": [ - "Langam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lnn", - "Description": [ - "Lorediakarkar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lno", - "Description": [ - "Lango (South Sudan)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2022-02-25", - "Comments": [ - "see imt, lgo, lqr, oie" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lns", - "Description": [ - "Lamnso\u0027" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lnu", - "Description": [ - "Longuda" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lnw", - "Description": [ - "Lanima" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lnz", - "Description": [ - "Lonzo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "loa", - "Description": [ - "Loloda" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lob", - "Description": [ - "Lobi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "loc", - "Description": [ - "Inonhan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "loe", - "Description": [ - "Saluan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lof", - "Description": [ - "Logol" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "log", - "Description": [ - "Logo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "loh", - "Description": [ - "Laarim", - "Narim" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "loi", - "Description": [ - "Loma (C\u00F4te d\u0027Ivoire)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "loj", - "Description": [ - "Lou" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lok", - "Description": [ - "Loko" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lol", - "Description": [ - "Mongo" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lom", - "Description": [ - "Loma (Liberia)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lon", - "Description": [ - "Malawi Lomwe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "loo", - "Description": [ - "Lombo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lop", - "Description": [ - "Lopa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "loq", - "Description": [ - "Lobala" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lor", - "Description": [ - "T\u00E9\u00E9n" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "los", - "Description": [ - "Loniu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lot", - "Description": [ - "Otuho" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lou", - "Description": [ - "Louisiana Creole" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lov", - "Description": [ - "Lopi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "low", - "Description": [ - "Tampias Lobu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lox", - "Description": [ - "Loun" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "loy", - "Description": [ - "Loke" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "loz", - "Description": [ - "Lozi" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lpa", - "Description": [ - "Lelepa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lpe", - "Description": [ - "Lepki" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lpn", - "Description": [ - "Long Phuri Naga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lpo", - "Description": [ - "Lipo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lpx", - "Description": [ - "Lopit" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lqr", - "Description": [ - "Logir" - ], - "Added": "2022-02-25", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lra", - "Description": [ - "Rara Bakati\u0027" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lrc", - "Description": [ - "Northern Luri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lre", - "Description": [ - "Laurentian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lrg", - "Description": [ - "Laragia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lri", - "Description": [ - "Marachi", - "Olumarachi" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "luy", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lrk", - "Description": [ - "Loarki" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lrl", - "Description": [ - "Lari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lrm", - "Description": [ - "Marama", - "Olumarama" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "luy", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lrn", - "Description": [ - "Lorang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lro", - "Description": [ - "Laro" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lrr", - "Description": [ - "Southern Yamphu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lrt", - "Description": [ - "Larantuka Malay" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lrv", - "Description": [ - "Larevat" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lrz", - "Description": [ - "Lemerig" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lsa", - "Description": [ - "Lasgerdi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lsb", - "Description": [ - "Burundian Sign Language", - "Langue des Signes Burundaise" - ], - "Added": "2021-02-20", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lsc", - "Description": [ - "Albarradas Sign Language", - "Lengua de se\u00F1as Albarradas" - ], - "Added": "2022-02-25", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lsd", - "Description": [ - "Lishana Deni" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lse", - "Description": [ - "Lusengo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lsg", - "Description": [ - "Lyons Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2018-03-08", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lsh", - "Description": [ - "Lish" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lsi", - "Description": [ - "Lashi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lsl", - "Description": [ - "Latvian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lsm", - "Description": [ - "Saamia", - "Olusamia" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "luy", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lsn", - "Description": [ - "Tibetan Sign Language" - ], - "Added": "2019-04-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lso", - "Description": [ - "Laos Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lsp", - "Description": [ - "Panamanian Sign Language", - "Lengua de Se\u00F1as Paname\u00F1as" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lsr", - "Description": [ - "Aruop" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lss", - "Description": [ - "Lasi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lst", - "Description": [ - "Trinidad and Tobago Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lsv", - "Description": [ - "Sivia Sign Language" - ], - "Added": "2019-04-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lsw", - "Description": [ - "Seychelles Sign Language", - "Lalang Siny Seselwa", - "Langue des Signes Seychelloise" - ], - "Added": "2022-02-25", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lsy", - "Description": [ - "Mauritian Sign Language" - ], - "Added": "2010-03-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ltc", - "Description": [ - "Late Middle Chinese" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ltg", - "Description": [ - "Latgalian" - ], - "Added": "2010-03-11", - "Scope": "None", - "MacroLanguage": "lv", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lth", - "Description": [ - "Thur" - ], - "Added": "2017-02-23", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lti", - "Description": [ - "Leti (Indonesia)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ltn", - "Description": [ - "Latund\u00EA" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lto", - "Description": [ - "Tsotso", - "Olutsotso" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "luy", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lts", - "Description": [ - "Tachoni", - "Lutachoni" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "luy", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ltu", - "Description": [ - "Latu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lua", - "Description": [ - "Luba-Lulua" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "luc", - "Description": [ - "Aringa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lud", - "Description": [ - "Ludian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lue", - "Description": [ - "Luvale" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "luf", - "Description": [ - "Laua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "luh", - "Description": [ - "Leizhou Chinese" - ], - "Added": "2024-12-12", - "Scope": "None", - "MacroLanguage": "zh", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lui", - "Description": [ - "Luise\u00F1o" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "luj", - "Description": [ - "Luna" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "luk", - "Description": [ - "Lunanakha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lul", - "Description": [ - "Olu\u0027bo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lum", - "Description": [ - "Luimbi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lun", - "Description": [ - "Lunda" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "luo", - "Description": [ - "Luo (Kenya and Tanzania)", - "Dholuo" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lup", - "Description": [ - "Lumbu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "luq", - "Description": [ - "Lucumi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lur", - "Description": [ - "Laura" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lus", - "Description": [ - "Lushai" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lut", - "Description": [ - "Lushootseed" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "luu", - "Description": [ - "Lumba-Yakkha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "luv", - "Description": [ - "Luwati" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "luw", - "Description": [ - "Luo (Cameroon)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "luy", - "Description": [ - "Luyia", - "Oluluyia" - ], - "Added": "2009-07-29", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "luz", - "Description": [ - "Southern Luri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lva", - "Description": [ - "Maku\u0027a" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lvi", - "Description": [ - "Lavi" - ], - "Added": "2019-04-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lvk", - "Description": [ - "Lavukaleve" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lvl", - "Description": [ - "Lwel" - ], - "Added": "2023-03-17", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lvs", - "Description": [ - "Standard Latvian" - ], - "Added": "2010-03-11", - "Scope": "None", - "MacroLanguage": "lv", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lvu", - "Description": [ - "Levuka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lwa", - "Description": [ - "Lwalu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lwe", - "Description": [ - "Lewo Eleng" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lwg", - "Description": [ - "Wanga", - "Oluwanga" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "luy", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lwh", - "Description": [ - "White Lachi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lwl", - "Description": [ - "Eastern Lawa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lwm", - "Description": [ - "Laomian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lwo", - "Description": [ - "Luwo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lws", - "Description": [ - "Malawian Sign Language" - ], - "Added": "2018-03-08", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lwt", - "Description": [ - "Lewotobi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lwu", - "Description": [ - "Lawu" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lww", - "Description": [ - "Lewo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lxm", - "Description": [ - "Lakurumau" - ], - "Added": "2021-02-20", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lya", - "Description": [ - "Layakha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lyg", - "Description": [ - "Lyngngam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lyn", - "Description": [ - "Luyana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lzh", - "Description": [ - "Literary Chinese" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zh", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lzl", - "Description": [ - "Litzlitz" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lzn", - "Description": [ - "Leinong Naga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "lzz", - "Description": [ - "Laz" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "maa", - "Description": [ - "San Jer\u00F3nimo Tec\u00F3atl Mazatec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [ - "see also pbm" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mab", - "Description": [ - "Yutanduchi Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mad", - "Description": [ - "Madurese" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mae", - "Description": [ - "Bo-Rukul" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "maf", - "Description": [ - "Mafa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mag", - "Description": [ - "Magahi" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mai", - "Description": [ - "Maithili" - ], - "Added": "2005-10-16", - "SuppressScript": "Deva", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "maj", - "Description": [ - "Jalapa De D\u00EDaz Mazatec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mak", - "Description": [ - "Makasar" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mam", - "Description": [ - "Mam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "man", - "Description": [ - "Mandingo", - "Manding" - ], - "Added": "2005-10-16", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "map", - "Description": [ - "Austronesian languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "maq", - "Description": [ - "Chiquihuitl\u00E1n Mazatec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mas", - "Description": [ - "Masai" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mat", - "Description": [ - "San Francisco Matlatzinca" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mau", - "Description": [ - "Huautla Mazatec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mav", - "Description": [ - "Sater\u00E9-Maw\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "maw", - "Description": [ - "Mampruli" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "max", - "Description": [ - "North Moluccan Malay" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "maz", - "Description": [ - "Central Mazahua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mba", - "Description": [ - "Higaonon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mbb", - "Description": [ - "Western Bukidnon Manobo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mbc", - "Description": [ - "Macushi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mbd", - "Description": [ - "Dibabawon Manobo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mbe", - "Description": [ - "Molale" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mbf", - "Description": [ - "Baba Malay" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mbh", - "Description": [ - "Mangseng" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mbi", - "Description": [ - "Ilianen Manobo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mbj", - "Description": [ - "Nad\u00EBb" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mbk", - "Description": [ - "Malol" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mbl", - "Description": [ - "Maxakal\u00ED" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mbm", - "Description": [ - "Ombamba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mbn", - "Description": [ - "Macagu\u00E1n" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mbo", - "Description": [ - "Mbo (Cameroon)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mbp", - "Description": [ - "Malayo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mbq", - "Description": [ - "Maisin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mbr", - "Description": [ - "Nukak Mak\u00FA" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mbs", - "Description": [ - "Sarangani Manobo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mbt", - "Description": [ - "Matigsalug Manobo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mbu", - "Description": [ - "Mbula-Bwazza" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mbv", - "Description": [ - "Mbulungish" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mbw", - "Description": [ - "Maring" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mbx", - "Description": [ - "Mari (East Sepik Province)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mby", - "Description": [ - "Memoni" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mbz", - "Description": [ - "Amoltepec Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mca", - "Description": [ - "Maca" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mcb", - "Description": [ - "Machiguenga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mcc", - "Description": [ - "Bitur" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mcd", - "Description": [ - "Sharanahua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mce", - "Description": [ - "Itundujia Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mcf", - "Description": [ - "Mats\u00E9s" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mcg", - "Description": [ - "Mapoyo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mch", - "Description": [ - "Maquiritari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mci", - "Description": [ - "Mese" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mcj", - "Description": [ - "Mvanip" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mck", - "Description": [ - "Mbunda" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mcl", - "Description": [ - "Macaguaje" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mcm", - "Description": [ - "Malaccan Creole Portuguese" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mcn", - "Description": [ - "Masana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mco", - "Description": [ - "Coatl\u00E1n Mixe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mcp", - "Description": [ - "Makaa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mcq", - "Description": [ - "Ese" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mcr", - "Description": [ - "Menya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mcs", - "Description": [ - "Mambai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mct", - "Description": [ - "Mengisa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mcu", - "Description": [ - "Cameroon Mambila" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mcv", - "Description": [ - "Minanibai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mcw", - "Description": [ - "Mawa (Chad)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mcx", - "Description": [ - "Mpiemo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mcy", - "Description": [ - "South Watut" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mcz", - "Description": [ - "Mawan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mda", - "Description": [ - "Mada (Nigeria)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mdb", - "Description": [ - "Morigi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mdc", - "Description": [ - "Soq", - "Male (Papua New Guinea)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mdd", - "Description": [ - "Mbum" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mde", - "Description": [ - "Maba (Chad)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mdf", - "Description": [ - "Moksha" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mdg", - "Description": [ - "Massalat" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mdh", - "Description": [ - "Maguindanaon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mdi", - "Description": [ - "Mamvu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mdj", - "Description": [ - "Mangbetu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mdk", - "Description": [ - "Mangbutu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mdl", - "Description": [ - "Maltese Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mdm", - "Description": [ - "Mayogo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mdn", - "Description": [ - "Mbati" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mdp", - "Description": [ - "Mbala" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mdq", - "Description": [ - "Mbole" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mdr", - "Description": [ - "Mandar" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mds", - "Description": [ - "Maria (Papua New Guinea)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mdt", - "Description": [ - "Mbere" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mdu", - "Description": [ - "Mboko" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mdv", - "Description": [ - "Santa Luc\u00EDa Monteverde Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mdw", - "Description": [ - "Mbosi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mdx", - "Description": [ - "Dizin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mdy", - "Description": [ - "Male", - "Male (Ethiopia)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mdz", - "Description": [ - "Suru\u00ED Do Par\u00E1" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mea", - "Description": [ - "Menka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "meb", - "Description": [ - "Ikobi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mec", - "Description": [ - "Marra" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "med", - "Description": [ - "Melpa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mee", - "Description": [ - "Mengen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mef", - "Description": [ - "Megam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "meg", - "Description": [ - "Mea" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2013-09-10", - "Comments": [], - "Prefix": [], - "PreferredValue": "cir" - }, - { - "Type": "Language", - "SubTag": "meh", - "Description": [ - "Southwestern Tlaxiaco Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mei", - "Description": [ - "Midob" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mej", - "Description": [ - "Meyah" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mek", - "Description": [ - "Mekeo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mel", - "Description": [ - "Central Melanau" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mem", - "Description": [ - "Mangala" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "men", - "Description": [ - "Mende (Sierra Leone)" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "meo", - "Description": [ - "Kedah Malay" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mep", - "Description": [ - "Miriwoong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "meq", - "Description": [ - "Merey" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mer", - "Description": [ - "Meru" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mes", - "Description": [ - "Masmaje" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "met", - "Description": [ - "Mato" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "meu", - "Description": [ - "Motu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mev", - "Description": [ - "Mano" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mew", - "Description": [ - "Maaka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mey", - "Description": [ - "Hassaniyya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mez", - "Description": [ - "Menominee" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mfa", - "Description": [ - "Pattani Malay" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mfb", - "Description": [ - "Bangka" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mfc", - "Description": [ - "Mba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mfd", - "Description": [ - "Mendankwe-Nkwen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mfe", - "Description": [ - "Morisyen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mff", - "Description": [ - "Naki" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mfg", - "Description": [ - "Mogofin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mfh", - "Description": [ - "Matal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mfi", - "Description": [ - "Wandala" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mfj", - "Description": [ - "Mefele" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mfk", - "Description": [ - "North Mofu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mfl", - "Description": [ - "Putai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mfm", - "Description": [ - "Marghi South" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mfn", - "Description": [ - "Cross River Mbembe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mfo", - "Description": [ - "Mbe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mfp", - "Description": [ - "Makassar Malay" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mfq", - "Description": [ - "Moba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mfr", - "Description": [ - "Marrithiyel" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mfs", - "Description": [ - "Mexican Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mft", - "Description": [ - "Mokerang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mfu", - "Description": [ - "Mbwela" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mfv", - "Description": [ - "Mandjak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mfw", - "Description": [ - "Mulaha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mfx", - "Description": [ - "Melo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mfy", - "Description": [ - "Mayo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mfz", - "Description": [ - "Mabaan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mga", - "Description": [ - "Middle Irish (900-1200)" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mgb", - "Description": [ - "Mararit" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mgc", - "Description": [ - "Morokodo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mgd", - "Description": [ - "Moru" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mge", - "Description": [ - "Mango" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mgf", - "Description": [ - "Maklew" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mgg", - "Description": [ - "Mpumpong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mgh", - "Description": [ - "Makhuwa-Meetto" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mgi", - "Description": [ - "Lijili" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mgj", - "Description": [ - "Abureni" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mgk", - "Description": [ - "Mawes" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mgl", - "Description": [ - "Maleu-Kilenge" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mgm", - "Description": [ - "Mambae" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mgn", - "Description": [ - "Mbangi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mgo", - "Description": [ - "Meta\u0027" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mgp", - "Description": [ - "Eastern Magar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mgq", - "Description": [ - "Malila" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mgr", - "Description": [ - "Mambwe-Lungu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mgs", - "Description": [ - "Manda (Tanzania)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mgt", - "Description": [ - "Mongol" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mgu", - "Description": [ - "Mailu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mgv", - "Description": [ - "Matengo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mgw", - "Description": [ - "Matumbi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mgx", - "Description": [ - "Omati" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2012-08-12", - "Comments": [ - "see jbk, jmw" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mgy", - "Description": [ - "Mbunga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mgz", - "Description": [ - "Mbugwe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mha", - "Description": [ - "Manda (India)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mhb", - "Description": [ - "Mahongwe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mhc", - "Description": [ - "Mocho" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mhd", - "Description": [ - "Mbugu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mhe", - "Description": [ - "Besisi", - "Mah Meri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mhf", - "Description": [ - "Mamaa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mhg", - "Description": [ - "Margu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mhh", - "Description": [ - "Maskoy Pidgin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2014-02-28", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mhi", - "Description": [ - "Ma\u0027di" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mhj", - "Description": [ - "Mogholi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mhk", - "Description": [ - "Mungaka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mhl", - "Description": [ - "Mauwake" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mhm", - "Description": [ - "Makhuwa-Moniga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mhn", - "Description": [ - "M\u00F2cheno" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mho", - "Description": [ - "Mashi (Zambia)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mhp", - "Description": [ - "Balinese Malay" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mhq", - "Description": [ - "Mandan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mhr", - "Description": [ - "Eastern Mari" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "chm", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mhs", - "Description": [ - "Buru (Indonesia)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mht", - "Description": [ - "Mandahuaca" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mhu", - "Description": [ - "Digaro-Mishmi", - "Darang Deng" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mhw", - "Description": [ - "Mbukushu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mhx", - "Description": [ - "Maru", - "Lhaovo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mhy", - "Description": [ - "Ma\u0027anyan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mhz", - "Description": [ - "Mor (Mor Islands)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mia", - "Description": [ - "Miami" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mib", - "Description": [ - "Atatl\u00E1huca Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mic", - "Description": [ - "Mi\u0027kmaq", - "Micmac" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mid", - "Description": [ - "Mandaic" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mie", - "Description": [ - "Ocotepec Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mif", - "Description": [ - "Mofu-Gudur" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mig", - "Description": [ - "San Miguel El Grande Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mih", - "Description": [ - "Chayuco Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mii", - "Description": [ - "Chigmecatitl\u00E1n Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mij", - "Description": [ - "Abar", - "Mungbam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mik", - "Description": [ - "Mikasuki" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mil", - "Description": [ - "Pe\u00F1oles Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mim", - "Description": [ - "Alacatlatzala Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "min", - "Description": [ - "Minangkabau" - ], - "Added": "2005-10-16", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mio", - "Description": [ - "Pinotepa Nacional Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mip", - "Description": [ - "Apasco-Apoala Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "miq", - "Description": [ - "M\u00EDskito" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mir", - "Description": [ - "Isthmus Mixe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mis", - "Description": [ - "Uncoded languages" - ], - "Added": "2005-10-16", - "Scope": "Special", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mit", - "Description": [ - "Southern Puebla Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "miu", - "Description": [ - "Cacaloxtepec Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "miw", - "Description": [ - "Akoye" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mix", - "Description": [ - "Mixtepec Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "miy", - "Description": [ - "Ayutla Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "miz", - "Description": [ - "Coatzospan Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mja", - "Description": [ - "Mahei" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2011-08-16", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mjb", - "Description": [ - "Makalero" - ], - "Added": "2016-05-30", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mjc", - "Description": [ - "San Juan Colorado Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mjd", - "Description": [ - "Northwest Maidu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mje", - "Description": [ - "Muskum" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mjg", - "Description": [ - "Tu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mjh", - "Description": [ - "Mwera (Nyasa)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mji", - "Description": [ - "Kim Mun" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mjj", - "Description": [ - "Mawak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mjk", - "Description": [ - "Matukar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mjl", - "Description": [ - "Mandeali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mjm", - "Description": [ - "Medebur" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mjn", - "Description": [ - "Ma (Papua New Guinea)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mjo", - "Description": [ - "Malankuravan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mjp", - "Description": [ - "Malapandaram" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mjq", - "Description": [ - "Malaryan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mjr", - "Description": [ - "Malavedan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mjs", - "Description": [ - "Miship" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mjt", - "Description": [ - "Sauria Paharia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mju", - "Description": [ - "Manna-Dora" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mjv", - "Description": [ - "Mannan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mjw", - "Description": [ - "Karbi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mjx", - "Description": [ - "Mahali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mjy", - "Description": [ - "Mahican" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mjz", - "Description": [ - "Majhi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mka", - "Description": [ - "Mbre" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mkb", - "Description": [ - "Mal Paharia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mkc", - "Description": [ - "Siliput" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mke", - "Description": [ - "Mawchi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mkf", - "Description": [ - "Miya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mkg", - "Description": [ - "Mak (China)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mkh", - "Description": [ - "Mon-Khmer languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mki", - "Description": [ - "Dhatki" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mkj", - "Description": [ - "Mokilese" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mkk", - "Description": [ - "Byep" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mkl", - "Description": [ - "Mokole" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mkm", - "Description": [ - "Moklen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mkn", - "Description": [ - "Kupang Malay" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mko", - "Description": [ - "Mingang Doso" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mkp", - "Description": [ - "Moikodi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mkq", - "Description": [ - "Bay Miwok" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mkr", - "Description": [ - "Malas" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mks", - "Description": [ - "Silacayoapan Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mkt", - "Description": [ - "Vamale" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mku", - "Description": [ - "Konyanka Maninka" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "man", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mkv", - "Description": [ - "Mafea" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mkw", - "Description": [ - "Kituba (Congo)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mkx", - "Description": [ - "Kinamiging Manobo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mky", - "Description": [ - "East Makian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mkz", - "Description": [ - "Makasae" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mla", - "Description": [ - "Malo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mlb", - "Description": [ - "Mbule" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mlc", - "Description": [ - "Cao Lan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mld", - "Description": [ - "Malakhel" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2013-09-10", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mle", - "Description": [ - "Manambu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mlf", - "Description": [ - "Mal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mlh", - "Description": [ - "Mape" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mli", - "Description": [ - "Malimpung" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mlj", - "Description": [ - "Miltu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mlk", - "Description": [ - "Ilwana", - "Kiwilwana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mll", - "Description": [ - "Malua Bay" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mlm", - "Description": [ - "Mulam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mln", - "Description": [ - "Malango" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mlo", - "Description": [ - "Mlomp" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mlp", - "Description": [ - "Bargam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mlq", - "Description": [ - "Western Maninkakan" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "man", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mlr", - "Description": [ - "Vame" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mls", - "Description": [ - "Masalit" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mlu", - "Description": [ - "To\u0027abaita" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mlv", - "Description": [ - "Motlav", - "Mwotlap" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mlw", - "Description": [ - "Moloko" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mlx", - "Description": [ - "Malfaxal", - "Naha\u0027ai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mlz", - "Description": [ - "Malaynon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mma", - "Description": [ - "Mama" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mmb", - "Description": [ - "Momina" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mmc", - "Description": [ - "Michoac\u00E1n Mazahua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mmd", - "Description": [ - "Maonan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mme", - "Description": [ - "Mae" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mmf", - "Description": [ - "Mundat" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mmg", - "Description": [ - "North Ambrym" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mmh", - "Description": [ - "Mehin\u00E1ku" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mmi", - "Description": [ - "Hember Avu", - "Amben", - "Musar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mmj", - "Description": [ - "Majhwar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mmk", - "Description": [ - "Mukha-Dora" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mml", - "Description": [ - "Man Met" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mmm", - "Description": [ - "Maii" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mmn", - "Description": [ - "Mamanwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mmo", - "Description": [ - "Mangga Buang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mmp", - "Description": [ - "Siawi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mmq", - "Description": [ - "Musak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mmr", - "Description": [ - "Western Xiangxi Miao" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "hmn", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mmt", - "Description": [ - "Malalamai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mmu", - "Description": [ - "Mmaala" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mmv", - "Description": [ - "Miriti" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mmw", - "Description": [ - "Emae" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mmx", - "Description": [ - "Madak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mmy", - "Description": [ - "Migaama" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mmz", - "Description": [ - "Mabaale" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mna", - "Description": [ - "Mbula" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mnb", - "Description": [ - "Muna" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mnc", - "Description": [ - "Manchu" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mnd", - "Description": [ - "Mond\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mne", - "Description": [ - "Naba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mnf", - "Description": [ - "Mundani" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mng", - "Description": [ - "Eastern Mnong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mnh", - "Description": [ - "Mono (Democratic Republic of Congo)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mni", - "Description": [ - "Manipuri" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mnj", - "Description": [ - "Munji" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mnk", - "Description": [ - "Mandinka" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "man", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mnl", - "Description": [ - "Tiale" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mnm", - "Description": [ - "Mapena" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mnn", - "Description": [ - "Southern Mnong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mno", - "Description": [ - "Manobo languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mnp", - "Description": [ - "Min Bei Chinese" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zh", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mnq", - "Description": [ - "Minriq" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mnr", - "Description": [ - "Mono (USA)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mns", - "Description": [ - "Mansi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mnt", - "Description": [ - "Maykulan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2013-09-10", - "Comments": [ - "see wnn, xyj, xyk, xyt" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mnu", - "Description": [ - "Mer" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mnv", - "Description": [ - "Rennell-Bellona" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mnw", - "Description": [ - "Mon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mnx", - "Description": [ - "Manikion" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mny", - "Description": [ - "Manyawa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mnz", - "Description": [ - "Moni" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "moa", - "Description": [ - "Mwan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "moc", - "Description": [ - "Mocov\u00ED" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mod", - "Description": [ - "Mobilian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "moe", - "Description": [ - "Innu", - "Montagnais" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mof", - "Description": [ - "Mohegan-Montauk-Narragansett" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2010-03-11", - "Comments": [ - "see xnt, xpq" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mog", - "Description": [ - "Mongondow" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "moh", - "Description": [ - "Mohawk", - "Kanien\u0027k\u00E9ha" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "moi", - "Description": [ - "Mboi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "moj", - "Description": [ - "Monzombo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mok", - "Description": [ - "Morori" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mom", - "Description": [ - "Mangue" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "moo", - "Description": [ - "Monom" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mop", - "Description": [ - "Mop\u00E1n Maya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "moq", - "Description": [ - "Mor (Bomberai Peninsula)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mor", - "Description": [ - "Moro" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mos", - "Description": [ - "Mossi" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mot", - "Description": [ - "Bar\u00ED" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mou", - "Description": [ - "Mogum" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mov", - "Description": [ - "Mohave" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mow", - "Description": [ - "Moi (Congo)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mox", - "Description": [ - "Molima" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "moy", - "Description": [ - "Shekkacho" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "moz", - "Description": [ - "Mukulu", - "Gergiko" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mpa", - "Description": [ - "Mpoto" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mpb", - "Description": [ - "Malak Malak", - "Mullukmulluk" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mpc", - "Description": [ - "Mangarrayi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mpd", - "Description": [ - "Machinere" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mpe", - "Description": [ - "Majang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mpg", - "Description": [ - "Marba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mph", - "Description": [ - "Maung" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mpi", - "Description": [ - "Mpade" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mpj", - "Description": [ - "Martu Wangka", - "Wangkajunga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mpk", - "Description": [ - "Mbara (Chad)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mpl", - "Description": [ - "Middle Watut" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mpm", - "Description": [ - "Yosond\u00FAa Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mpn", - "Description": [ - "Mindiri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mpo", - "Description": [ - "Miu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mpp", - "Description": [ - "Migabac" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mpq", - "Description": [ - "Mat\u00EDs" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mpr", - "Description": [ - "Vangunu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mps", - "Description": [ - "Dadibi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mpt", - "Description": [ - "Mian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mpu", - "Description": [ - "Makur\u00E1p" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mpv", - "Description": [ - "Mungkip" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mpw", - "Description": [ - "Mapidian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mpx", - "Description": [ - "Misima-Panaeati" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mpy", - "Description": [ - "Mapia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mpz", - "Description": [ - "Mpi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mqa", - "Description": [ - "Maba (Indonesia)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mqb", - "Description": [ - "Mbuko" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mqc", - "Description": [ - "Mangole" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mqe", - "Description": [ - "Matepi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mqf", - "Description": [ - "Momuna" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mqg", - "Description": [ - "Kota Bangun Kutai Malay" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mqh", - "Description": [ - "Tlazoyaltepec Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mqi", - "Description": [ - "Mariri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mqj", - "Description": [ - "Mamasa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mqk", - "Description": [ - "Rajah Kabunsuwan Manobo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mql", - "Description": [ - "Mbelime" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mqm", - "Description": [ - "South Marquesan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mqn", - "Description": [ - "Moronene" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mqo", - "Description": [ - "Modole" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mqp", - "Description": [ - "Manipa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mqq", - "Description": [ - "Minokok" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mqr", - "Description": [ - "Mander" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mqs", - "Description": [ - "West Makian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mqt", - "Description": [ - "Mok" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mqu", - "Description": [ - "Mandari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mqv", - "Description": [ - "Mosimo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mqw", - "Description": [ - "Murupi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mqx", - "Description": [ - "Mamuju" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mqy", - "Description": [ - "Manggarai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mqz", - "Description": [ - "Pano" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mra", - "Description": [ - "Mlabri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mrb", - "Description": [ - "Marino" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mrc", - "Description": [ - "Maricopa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mrd", - "Description": [ - "Western Magar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mre", - "Description": [ - "Martha\u0027s Vineyard Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mrf", - "Description": [ - "Elseng" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mrg", - "Description": [ - "Mising" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mrh", - "Description": [ - "Mara Chin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mrj", - "Description": [ - "Western Mari" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "chm", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mrk", - "Description": [ - "Hmwaveke" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mrl", - "Description": [ - "Mortlockese" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mrm", - "Description": [ - "Merlav", - "Mwerlap" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mrn", - "Description": [ - "Cheke Holo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mro", - "Description": [ - "Mru" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mrp", - "Description": [ - "Morouas" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mrq", - "Description": [ - "North Marquesan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mrr", - "Description": [ - "Maria (India)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mrs", - "Description": [ - "Maragus" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mrt", - "Description": [ - "Marghi Central" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mru", - "Description": [ - "Mono (Cameroon)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mrv", - "Description": [ - "Mangareva" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mrw", - "Description": [ - "Maranao" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mrx", - "Description": [ - "Maremgi", - "Dineor" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mry", - "Description": [ - "Mandaya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mrz", - "Description": [ - "Marind" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "msb", - "Description": [ - "Masbatenyo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "msc", - "Description": [ - "Sankaran Maninka" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "man", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "msd", - "Description": [ - "Yucatec Maya Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mse", - "Description": [ - "Musey" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "msf", - "Description": [ - "Mekwei" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "msg", - "Description": [ - "Moraid" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "msh", - "Description": [ - "Masikoro Malagasy" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "mg", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "msi", - "Description": [ - "Sabah Malay" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "msj", - "Description": [ - "Ma (Democratic Republic of Congo)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "msk", - "Description": [ - "Mansaka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "msl", - "Description": [ - "Molof", - "Poule" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "msm", - "Description": [ - "Agusan Manobo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "msn", - "Description": [ - "Vur\u00EBs" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mso", - "Description": [ - "Mombum" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "msp", - "Description": [ - "Maritsau\u00E1" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "msq", - "Description": [ - "Caac" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "msr", - "Description": [ - "Mongolian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mss", - "Description": [ - "West Masela" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mst", - "Description": [ - "Cataelano Mandaya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2010-03-11", - "Comments": [], - "Prefix": [], - "PreferredValue": "mry" - }, - { - "Type": "Language", - "SubTag": "msu", - "Description": [ - "Musom" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "msv", - "Description": [ - "Maslam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "msw", - "Description": [ - "Mansoanka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "msx", - "Description": [ - "Moresada" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "msy", - "Description": [ - "Aruamu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "msz", - "Description": [ - "Momare" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mta", - "Description": [ - "Cotabato Manobo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mtb", - "Description": [ - "Anyin Morofo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mtc", - "Description": [ - "Munit" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mtd", - "Description": [ - "Mualang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mte", - "Description": [ - "Mono (Solomon Islands)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mtf", - "Description": [ - "Murik (Papua New Guinea)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mtg", - "Description": [ - "Una" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mth", - "Description": [ - "Munggui" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mti", - "Description": [ - "Maiwa (Papua New Guinea)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mtj", - "Description": [ - "Moskona" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mtk", - "Description": [ - "Mbe\u0027" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mtl", - "Description": [ - "Montol" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mtm", - "Description": [ - "Mator" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mtn", - "Description": [ - "Matagalpa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mto", - "Description": [ - "Totontepec Mixe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mtp", - "Description": [ - "Wich\u00ED Lhamt\u00E9s Nocten" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mtq", - "Description": [ - "Muong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mtr", - "Description": [ - "Mewari" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "mwr", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mts", - "Description": [ - "Yora" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mtt", - "Description": [ - "Mota" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mtu", - "Description": [ - "Tututepec Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mtv", - "Description": [ - "Asaro\u0027o" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mtw", - "Description": [ - "Southern Binukidnon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mtx", - "Description": [ - "Tida\u00E1 Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mty", - "Description": [ - "Nabi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mua", - "Description": [ - "Mundang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mub", - "Description": [ - "Mubi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "muc", - "Description": [ - "Ajumbu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mud", - "Description": [ - "Mednyj Aleut" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mue", - "Description": [ - "Media Lengua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mug", - "Description": [ - "Musgu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "muh", - "Description": [ - "M\u00FCnd\u00FC" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mui", - "Description": [ - "Musi" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "muj", - "Description": [ - "Mabire" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "muk", - "Description": [ - "Mugom" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mul", - "Description": [ - "Multiple languages" - ], - "Added": "2005-10-16", - "Scope": "Special", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mum", - "Description": [ - "Maiwala" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mun", - "Description": [ - "Munda languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "muo", - "Description": [ - "Nyong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mup", - "Description": [ - "Malvi" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "raj", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "muq", - "Description": [ - "Eastern Xiangxi Miao" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "hmn", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mur", - "Description": [ - "Murle" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mus", - "Description": [ - "Creek" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mut", - "Description": [ - "Western Muria" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "muu", - "Description": [ - "Yaaku" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "muv", - "Description": [ - "Muthuvan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mux", - "Description": [ - "Bo-Ung" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "muy", - "Description": [ - "Muyang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "muz", - "Description": [ - "Mursi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mva", - "Description": [ - "Manam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mvb", - "Description": [ - "Mattole" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mvd", - "Description": [ - "Mamboru" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mve", - "Description": [ - "Marwari (Pakistan)" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "mwr", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mvf", - "Description": [ - "Peripheral Mongolian" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "mn", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mvg", - "Description": [ - "Yucua\u00F1e Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mvh", - "Description": [ - "Mulgi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mvi", - "Description": [ - "Miyako" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mvk", - "Description": [ - "Mekmek" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mvl", - "Description": [ - "Mbara (Australia)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mvm", - "Description": [ - "Muya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2021-02-20", - "Comments": [ - "see emq, wmg" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mvn", - "Description": [ - "Minaveha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mvo", - "Description": [ - "Marovo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mvp", - "Description": [ - "Duri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mvq", - "Description": [ - "Moere" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mvr", - "Description": [ - "Marau" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mvs", - "Description": [ - "Massep" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mvt", - "Description": [ - "Mpotovoro" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mvu", - "Description": [ - "Marfa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mvv", - "Description": [ - "Tagal Murut" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mvw", - "Description": [ - "Machinga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mvx", - "Description": [ - "Meoswar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mvy", - "Description": [ - "Indus Kohistani" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mvz", - "Description": [ - "Mesqan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mwa", - "Description": [ - "Mwatebu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mwb", - "Description": [ - "Juwal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mwc", - "Description": [ - "Are" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mwd", - "Description": [ - "Mudbura" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2013-09-10", - "Comments": [ - "see dmw, xrq" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mwe", - "Description": [ - "Mwera (Chimwera)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mwf", - "Description": [ - "Murrinh-Patha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mwg", - "Description": [ - "Aiklep" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mwh", - "Description": [ - "Mouk-Aria" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mwi", - "Description": [ - "Labo", - "Ninde" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mwj", - "Description": [ - "Maligo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2015-02-12", - "Comments": [], - "Prefix": [], - "PreferredValue": "vaj" - }, - { - "Type": "Language", - "SubTag": "mwk", - "Description": [ - "Kita Maninkakan" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "man", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mwl", - "Description": [ - "Mirandese" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mwm", - "Description": [ - "Sar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mwn", - "Description": [ - "Nyamwanga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mwo", - "Description": [ - "Central Maewo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mwp", - "Description": [ - "Kala Lagaw Ya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mwq", - "Description": [ - "M\u00FCn Chin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mwr", - "Description": [ - "Marwari" - ], - "Added": "2005-10-16", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mws", - "Description": [ - "Mwimbi-Muthambi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mwt", - "Description": [ - "Moken" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mwu", - "Description": [ - "Mittu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mwv", - "Description": [ - "Mentawai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mww", - "Description": [ - "Hmong Daw" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "hmn", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mwx", - "Description": [ - "Mediak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2018-03-08", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mwy", - "Description": [ - "Mosiro" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2018-03-08", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mwz", - "Description": [ - "Moingi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mxa", - "Description": [ - "Northwest Oaxaca Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mxb", - "Description": [ - "Tezoatl\u00E1n Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mxc", - "Description": [ - "Manyika" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mxd", - "Description": [ - "Modang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mxe", - "Description": [ - "Mele-Fila" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mxf", - "Description": [ - "Malgbe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mxg", - "Description": [ - "Mbangala" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mxh", - "Description": [ - "Mvuba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mxi", - "Description": [ - "Mozarabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mxj", - "Description": [ - "Miju-Mishmi", - "Geman Deng" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mxk", - "Description": [ - "Monumbo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mxl", - "Description": [ - "Maxi Gbe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mxm", - "Description": [ - "Meramera" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mxn", - "Description": [ - "Moi (Indonesia)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mxo", - "Description": [ - "Mbowe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mxp", - "Description": [ - "Tlahuitoltepec Mixe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mxq", - "Description": [ - "Juquila Mixe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mxr", - "Description": [ - "Murik (Malaysia)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mxs", - "Description": [ - "Huitepec Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mxt", - "Description": [ - "Jamiltepec Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mxu", - "Description": [ - "Mada (Cameroon)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mxv", - "Description": [ - "Metlat\u00F3noc Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mxw", - "Description": [ - "Namo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mxx", - "Description": [ - "Mahou", - "Mawukakan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mxy", - "Description": [ - "Southeastern Nochixtl\u00E1n Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mxz", - "Description": [ - "Central Masela" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "myb", - "Description": [ - "Mbay" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "myc", - "Description": [ - "Mayeka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "myd", - "Description": [ - "Maramba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2019-04-16", - "Comments": [], - "Prefix": [], - "PreferredValue": "aog" - }, - { - "Type": "Language", - "SubTag": "mye", - "Description": [ - "Myene" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "myf", - "Description": [ - "Bambassi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "myg", - "Description": [ - "Manta" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "myh", - "Description": [ - "Makah" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "myi", - "Description": [ - "Mina (India)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2019-04-16", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "myj", - "Description": [ - "Mangayat" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "myk", - "Description": [ - "Mamara Senoufo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "myl", - "Description": [ - "Moma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mym", - "Description": [ - "Me\u0027en" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "myn", - "Description": [ - "Mayan languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "myo", - "Description": [ - "Anfillo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "myp", - "Description": [ - "Pirah\u00E3" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "myq", - "Description": [ - "Forest Maninka" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "man", - "Deprecated": "2013-09-10", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "myr", - "Description": [ - "Muniche" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mys", - "Description": [ - "Mesmes" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "myt", - "Description": [ - "Sangab Mandaya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2010-03-11", - "Comments": [], - "Prefix": [], - "PreferredValue": "mry" - }, - { - "Type": "Language", - "SubTag": "myu", - "Description": [ - "Munduruk\u00FA" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "myv", - "Description": [ - "Erzya" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "myw", - "Description": [ - "Muyuw" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "myx", - "Description": [ - "Masaaba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "myy", - "Description": [ - "Macuna" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "myz", - "Description": [ - "Classical Mandaic" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mza", - "Description": [ - "Santa Mar\u00EDa Zacatepec Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mzb", - "Description": [ - "Tumzabt" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mzc", - "Description": [ - "Madagascar Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mzd", - "Description": [ - "Malimba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mze", - "Description": [ - "Morawa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mzg", - "Description": [ - "Monastic Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mzh", - "Description": [ - "Wich\u00ED Lhamt\u00E9s G\u00FCisnay" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mzi", - "Description": [ - "Ixcatl\u00E1n Mazatec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mzj", - "Description": [ - "Manya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mzk", - "Description": [ - "Nigeria Mambila" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mzl", - "Description": [ - "Mazatl\u00E1n Mixe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mzm", - "Description": [ - "Mumuye" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mzn", - "Description": [ - "Mazanderani" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mzo", - "Description": [ - "Matipuhy" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mzp", - "Description": [ - "Movima" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mzq", - "Description": [ - "Mori Atas" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mzr", - "Description": [ - "Mar\u00FAbo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mzs", - "Description": [ - "Macanese" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mzt", - "Description": [ - "Mintil" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mzu", - "Description": [ - "Inapang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mzv", - "Description": [ - "Manza" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mzw", - "Description": [ - "Deg" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mzx", - "Description": [ - "Mawayana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mzy", - "Description": [ - "Mozambican Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "mzz", - "Description": [ - "Maiadomu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "naa", - "Description": [ - "Namla" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nab", - "Description": [ - "Southern Nambiku\u00E1ra" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nac", - "Description": [ - "Narak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nad", - "Description": [ - "Nijadali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2016-05-30", - "Comments": [], - "Prefix": [], - "PreferredValue": "xny" - }, - { - "Type": "Language", - "SubTag": "nae", - "Description": [ - "Naka\u0027ela" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "naf", - "Description": [ - "Nabak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nag", - "Description": [ - "Naga Pidgin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nah", - "Description": [ - "Nahuatl languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nai", - "Description": [ - "North American Indian languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "naj", - "Description": [ - "Nalu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nak", - "Description": [ - "Nakanai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nal", - "Description": [ - "Nalik" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nam", - "Description": [ - "Ngan\u0027gityemerri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nan", - "Description": [ - "Min Nan Chinese" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zh", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nao", - "Description": [ - "Naaba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nap", - "Description": [ - "Neapolitan" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "naq", - "Description": [ - "Khoekhoe", - "Nama (Namibia)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nar", - "Description": [ - "Iguta" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nas", - "Description": [ - "Naasioi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nat", - "Description": [ - "Ca\u0331hungwa\u0331rya\u0331", - "Hungworo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "naw", - "Description": [ - "Nawuri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nax", - "Description": [ - "Nakwi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nay", - "Description": [ - "Ngarrindjeri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "naz", - "Description": [ - "Coatepec Nahuatl" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nba", - "Description": [ - "Nyemba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nbb", - "Description": [ - "Ndoe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nbc", - "Description": [ - "Chang Naga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nbd", - "Description": [ - "Ngbinda" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nbe", - "Description": [ - "Konyak Naga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nbf", - "Description": [ - "Naxi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2011-08-16", - "Comments": [ - "see nru, nxq" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nbg", - "Description": [ - "Nagarchal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nbh", - "Description": [ - "Ngamo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nbi", - "Description": [ - "Mao Naga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nbj", - "Description": [ - "Ngarinyman" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nbk", - "Description": [ - "Nake" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nbm", - "Description": [ - "Ngbaka Ma\u0027bo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nbn", - "Description": [ - "Kuri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nbo", - "Description": [ - "Nkukoli" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nbp", - "Description": [ - "Nnam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nbq", - "Description": [ - "Nggem" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nbr", - "Description": [ - "Numana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nbs", - "Description": [ - "Namibian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nbt", - "Description": [ - "Na" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nbu", - "Description": [ - "Rongmei Naga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nbv", - "Description": [ - "Ngamambo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nbw", - "Description": [ - "Southern Ngbandi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nbx", - "Description": [ - "Ngura" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2013-09-10", - "Comments": [ - "see ekc, gll, jbi, xpt, xwk" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nby", - "Description": [ - "Ningera" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nca", - "Description": [ - "Iyo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ncb", - "Description": [ - "Central Nicobarese" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ncc", - "Description": [ - "Ponam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ncd", - "Description": [ - "Nachering" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nce", - "Description": [ - "Yale" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ncf", - "Description": [ - "Notsi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ncg", - "Description": [ - "Nisga\u0027a" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nch", - "Description": [ - "Central Huasteca Nahuatl" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nci", - "Description": [ - "Classical Nahuatl" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ncj", - "Description": [ - "Northern Puebla Nahuatl" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nck", - "Description": [ - "Na-kara" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ncl", - "Description": [ - "Michoac\u00E1n Nahuatl" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ncm", - "Description": [ - "Nambo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ncn", - "Description": [ - "Nauna" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nco", - "Description": [ - "Sibe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ncp", - "Description": [ - "Ndaktup" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2018-03-08", - "Comments": [], - "Prefix": [], - "PreferredValue": "kdz" - }, - { - "Type": "Language", - "SubTag": "ncq", - "Description": [ - "Northern Katang" - ], - "Added": "2017-02-23", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ncr", - "Description": [ - "Ncane" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ncs", - "Description": [ - "Nicaraguan Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nct", - "Description": [ - "Chothe Naga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ncu", - "Description": [ - "Chumburung" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ncx", - "Description": [ - "Central Puebla Nahuatl" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ncz", - "Description": [ - "Natchez" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nda", - "Description": [ - "Ndasa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ndb", - "Description": [ - "Kenswei Nsei" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ndc", - "Description": [ - "Ndau" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ndd", - "Description": [ - "Nde-Nsele-Nta" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ndf", - "Description": [ - "Nadruvian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ndg", - "Description": [ - "Ndengereko" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ndh", - "Description": [ - "Ndali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ndi", - "Description": [ - "Samba Leko" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ndj", - "Description": [ - "Ndamba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ndk", - "Description": [ - "Ndaka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ndl", - "Description": [ - "Ndolo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ndm", - "Description": [ - "Ndam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ndn", - "Description": [ - "Ngundi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ndp", - "Description": [ - "Ndo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ndq", - "Description": [ - "Ndombe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ndr", - "Description": [ - "Ndoola" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nds", - "Description": [ - "Low German", - "Low Saxon" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ndt", - "Description": [ - "Ndunga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ndu", - "Description": [ - "Dugun" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ndv", - "Description": [ - "Ndut" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ndw", - "Description": [ - "Ndobo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ndx", - "Description": [ - "Nduga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ndy", - "Description": [ - "Lutos" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ndz", - "Description": [ - "Ndogo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nea", - "Description": [ - "Eastern Ngad\u0027a" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "neb", - "Description": [ - "Toura (C\u00F4te d\u0027Ivoire)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nec", - "Description": [ - "Nedebang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ned", - "Description": [ - "Nde-Gbite" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nee", - "Description": [ - "N\u00EAl\u00EAmwa-Nixumwak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nef", - "Description": [ - "Nefamese" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "neg", - "Description": [ - "Negidal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "neh", - "Description": [ - "Nyenkha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nei", - "Description": [ - "Neo-Hittite" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nej", - "Description": [ - "Neko" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nek", - "Description": [ - "Neku" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nem", - "Description": [ - "Nemi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nen", - "Description": [ - "Nengone" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "neo", - "Description": [ - "N\u00E1-Meo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "neq", - "Description": [ - "North Central Mixe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ner", - "Description": [ - "Yahadian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nes", - "Description": [ - "Bhoti Kinnauri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "net", - "Description": [ - "Nete" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "neu", - "Description": [ - "Neo" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nev", - "Description": [ - "Nyaheun" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "new", - "Description": [ - "Nepal Bhasa", - "Newar", - "Newari" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nex", - "Description": [ - "Neme" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ney", - "Description": [ - "Neyo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nez", - "Description": [ - "Nez Perce" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nfa", - "Description": [ - "Dhao" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nfd", - "Description": [ - "Ahwai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nfl", - "Description": [ - "Ayiwo", - "\u00C4iwoo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nfr", - "Description": [ - "Nafaanra" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nfu", - "Description": [ - "Mfumte" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nga", - "Description": [ - "Ngbaka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ngb", - "Description": [ - "Northern Ngbandi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ngc", - "Description": [ - "Ngombe (Democratic Republic of Congo)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ngd", - "Description": [ - "Ngando (Central African Republic)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nge", - "Description": [ - "Ngemba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ngf", - "Description": [ - "Trans-New Guinea languages" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ngg", - "Description": [ - "Ngbaka Manza" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ngh", - "Description": [ - "N\u01C1ng" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ngi", - "Description": [ - "Ngizim" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ngj", - "Description": [ - "Ngie" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ngk", - "Description": [ - "Dalabon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ngl", - "Description": [ - "Lomwe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ngm", - "Description": [ - "Ngatik Men\u0027s Creole" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ngn", - "Description": [ - "Ngwo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ngo", - "Description": [ - "Ngoni" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2021-02-20", - "Comments": [ - "see xnj, xnq" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ngp", - "Description": [ - "Ngulu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ngq", - "Description": [ - "Ngurimi", - "Ngoreme" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ngr", - "Description": [ - "Engdewu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ngs", - "Description": [ - "Gvoko" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ngt", - "Description": [ - "Kriang", - "Ngeq" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ngu", - "Description": [ - "Guerrero Nahuatl" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ngv", - "Description": [ - "Nagumi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ngw", - "Description": [ - "Ngwaba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ngx", - "Description": [ - "Nggwahyi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ngy", - "Description": [ - "Tibea" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ngz", - "Description": [ - "Ngungwel" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nha", - "Description": [ - "Nhanda" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nhb", - "Description": [ - "Beng" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nhc", - "Description": [ - "Tabasco Nahuatl" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nhd", - "Description": [ - "Chirip\u00E1", - "Ava Guaran\u00ED" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "gn", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nhe", - "Description": [ - "Eastern Huasteca Nahuatl" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nhf", - "Description": [ - "Nhuwala" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nhg", - "Description": [ - "Tetelcingo Nahuatl" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nhh", - "Description": [ - "Nahari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nhi", - "Description": [ - "Zacatl\u00E1n-Ahuacatl\u00E1n-Tepetzintla Nahuatl" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nhk", - "Description": [ - "Isthmus-Cosoleacaque Nahuatl" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nhm", - "Description": [ - "Morelos Nahuatl" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nhn", - "Description": [ - "Central Nahuatl" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nho", - "Description": [ - "Takuu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nhp", - "Description": [ - "Isthmus-Pajapan Nahuatl" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nhq", - "Description": [ - "Huaxcaleca Nahuatl" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nhr", - "Description": [ - "Naro" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nht", - "Description": [ - "Ometepec Nahuatl" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nhu", - "Description": [ - "Noone" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nhv", - "Description": [ - "Temascaltepec Nahuatl" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nhw", - "Description": [ - "Western Huasteca Nahuatl" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nhx", - "Description": [ - "Isthmus-Mecayapan Nahuatl" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nhy", - "Description": [ - "Northern Oaxaca Nahuatl" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nhz", - "Description": [ - "Santa Mar\u00EDa La Alta Nahuatl" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nia", - "Description": [ - "Nias" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nib", - "Description": [ - "Nakame" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nic", - "Description": [ - "Niger-Kordofanian languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nid", - "Description": [ - "Ngandi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nie", - "Description": [ - "Niellim" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nif", - "Description": [ - "Nek" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nig", - "Description": [ - "Ngalakgan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nih", - "Description": [ - "Nyiha (Tanzania)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nii", - "Description": [ - "Nii" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nij", - "Description": [ - "Ngaju" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nik", - "Description": [ - "Southern Nicobarese" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nil", - "Description": [ - "Nila" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nim", - "Description": [ - "Nilamba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nin", - "Description": [ - "Ninzo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nio", - "Description": [ - "Nganasan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "niq", - "Description": [ - "Nandi" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "kln", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nir", - "Description": [ - "Nimboran" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nis", - "Description": [ - "Nimi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nit", - "Description": [ - "Southeastern Kolami" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "niu", - "Description": [ - "Niuean" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "niv", - "Description": [ - "Gilyak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "niw", - "Description": [ - "Nimo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nix", - "Description": [ - "Hema" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "niy", - "Description": [ - "Ngiti" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "niz", - "Description": [ - "Ningil" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nja", - "Description": [ - "Nzanyi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "njb", - "Description": [ - "Nocte Naga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "njd", - "Description": [ - "Ndonde Hamba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "njh", - "Description": [ - "Lotha Naga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nji", - "Description": [ - "Gudanji" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "njj", - "Description": [ - "Njen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "njl", - "Description": [ - "Njalgulgule" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "njm", - "Description": [ - "Angami Naga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "njn", - "Description": [ - "Liangmai Naga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "njo", - "Description": [ - "Ao Naga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "njr", - "Description": [ - "Njerep" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "njs", - "Description": [ - "Nisa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "njt", - "Description": [ - "Ndyuka-Trio Pidgin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nju", - "Description": [ - "Ngadjunmaya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "njx", - "Description": [ - "Kunyi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "njy", - "Description": [ - "Njyem" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "njz", - "Description": [ - "Nyishi" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nka", - "Description": [ - "Nkoya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nkb", - "Description": [ - "Khoibu Naga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nkc", - "Description": [ - "Nkongho" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nkd", - "Description": [ - "Koireng" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nke", - "Description": [ - "Duke" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nkf", - "Description": [ - "Inpui Naga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nkg", - "Description": [ - "Nekgini" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nkh", - "Description": [ - "Khezha Naga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nki", - "Description": [ - "Thangal Naga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nkj", - "Description": [ - "Nakai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nkk", - "Description": [ - "Nokuku" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nkm", - "Description": [ - "Namat" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nkn", - "Description": [ - "Nkangala" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nko", - "Description": [ - "Nkonya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nkp", - "Description": [ - "Niuatoputapu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nkq", - "Description": [ - "Nkami" - ], - "Added": "2010-04-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nkr", - "Description": [ - "Nukuoro" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nks", - "Description": [ - "North Asmat" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nkt", - "Description": [ - "Nyika (Tanzania)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nku", - "Description": [ - "Bouna Kulango" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nkv", - "Description": [ - "Nyika (Malawi and Zambia)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nkw", - "Description": [ - "Nkutu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nkx", - "Description": [ - "Nkoroo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nkz", - "Description": [ - "Nkari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nla", - "Description": [ - "Ngombale" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nlc", - "Description": [ - "Nalca" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nle", - "Description": [ - "East Nyala" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "luy", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nlg", - "Description": [ - "Gela" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nli", - "Description": [ - "Grangali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nlj", - "Description": [ - "Nyali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nlk", - "Description": [ - "Ninia Yali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nll", - "Description": [ - "Nihali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nlm", - "Description": [ - "Mankiyali" - ], - "Added": "2018-03-08", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nln", - "Description": [ - "Durango Nahuatl" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2012-08-12", - "Comments": [ - "see azd, azn" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nlo", - "Description": [ - "Ngul" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nlq", - "Description": [ - "Lao Naga" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nlr", - "Description": [ - "Ngarla" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2013-09-10", - "Comments": [ - "see nrk, ywg" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nlu", - "Description": [ - "Nchumbulu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nlv", - "Description": [ - "Orizaba Nahuatl" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nlw", - "Description": [ - "Walangama" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nlx", - "Description": [ - "Nahali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nly", - "Description": [ - "Nyamal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nlz", - "Description": [ - "Nal\u00F6go" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nma", - "Description": [ - "Maram Naga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nmb", - "Description": [ - "Big Nambas", - "V\u0027\u00EBnen Taut" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nmc", - "Description": [ - "Ngam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nmd", - "Description": [ - "Ndumu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nme", - "Description": [ - "Mzieme Naga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nmf", - "Description": [ - "Tangkhul Naga (India)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [ - "see ntx" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nmg", - "Description": [ - "Kwasio" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nmh", - "Description": [ - "Monsang Naga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nmi", - "Description": [ - "Nyam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nmj", - "Description": [ - "Ngombe (Central African Republic)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nmk", - "Description": [ - "Namakura" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nml", - "Description": [ - "Ndemli" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nmm", - "Description": [ - "Manangba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nmn", - "Description": [ - "\u01C3X\u00F3\u00F5" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nmo", - "Description": [ - "Moyon Naga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nmp", - "Description": [ - "Nimanbur" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nmq", - "Description": [ - "Nambya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nmr", - "Description": [ - "Nimbari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nms", - "Description": [ - "Letemboi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nmt", - "Description": [ - "Namonuito" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nmu", - "Description": [ - "Northeast Maidu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nmv", - "Description": [ - "Ngamini" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nmw", - "Description": [ - "Nimoa", - "Rifao" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nmx", - "Description": [ - "Nama (Papua New Guinea)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nmy", - "Description": [ - "Namuyi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nmz", - "Description": [ - "Nawdm" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nna", - "Description": [ - "Nyangumarta" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nnb", - "Description": [ - "Nande" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nnc", - "Description": [ - "Nancere" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nnd", - "Description": [ - "West Ambae" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nne", - "Description": [ - "Ngandyera" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nnf", - "Description": [ - "Ngaing" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nng", - "Description": [ - "Maring Naga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nnh", - "Description": [ - "Ngiemboon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nni", - "Description": [ - "North Nuaulu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nnj", - "Description": [ - "Nyangatom" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nnk", - "Description": [ - "Nankina" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nnl", - "Description": [ - "Northern Rengma Naga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nnm", - "Description": [ - "Namia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nnn", - "Description": [ - "Ngete" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nnp", - "Description": [ - "Wancho Naga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nnq", - "Description": [ - "Ngindo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nnr", - "Description": [ - "Narungga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nns", - "Description": [ - "Ningye" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2019-04-16", - "Comments": [], - "Prefix": [], - "PreferredValue": "nbr" - }, - { - "Type": "Language", - "SubTag": "nnt", - "Description": [ - "Nanticoke" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nnu", - "Description": [ - "Dwang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nnv", - "Description": [ - "Nugunu (Australia)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nnw", - "Description": [ - "Southern Nuni" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nnx", - "Description": [ - "Ngong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2015-02-12", - "Comments": [], - "Prefix": [], - "PreferredValue": "ngv" - }, - { - "Type": "Language", - "SubTag": "nny", - "Description": [ - "Nyangga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nnz", - "Description": [ - "Nda\u0027nda\u0027" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "noa", - "Description": [ - "Woun Meu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "noc", - "Description": [ - "Nuk" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nod", - "Description": [ - "Northern Thai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "noe", - "Description": [ - "Nimadi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nof", - "Description": [ - "Nomane" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nog", - "Description": [ - "Nogai" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "noh", - "Description": [ - "Nomu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "noi", - "Description": [ - "Noiri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "noj", - "Description": [ - "Nonuya" - ], - "Added": "2010-03-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nok", - "Description": [ - "Nooksack", - "Lh\u00E9chelesem" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nol", - "Description": [ - "Nomlaki" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nom", - "Description": [ - "Nocam\u00E1n" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2023-03-17", - "Comments": [], - "Prefix": [], - "PreferredValue": "cbr" - }, - { - "Type": "Language", - "SubTag": "non", - "Description": [ - "Old Norse" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "noo", - "Description": [ - "Nootka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2011-08-16", - "Comments": [ - "see dtd, nuk" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nop", - "Description": [ - "Numanggang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "noq", - "Description": [ - "Ngongo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nos", - "Description": [ - "Eastern Nisu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "not", - "Description": [ - "Nomatsiguenga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nou", - "Description": [ - "Ewage-Notu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nov", - "Description": [ - "Novial" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "now", - "Description": [ - "Nyambo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "noy", - "Description": [ - "Noy" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "noz", - "Description": [ - "Nayi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "npa", - "Description": [ - "Nar Phu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "npb", - "Description": [ - "Nupbikha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "npg", - "Description": [ - "Ponyo-Gongwang Naga" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nph", - "Description": [ - "Phom Naga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "npi", - "Description": [ - "Nepali (individual language)" - ], - "Added": "2012-08-12", - "Scope": "None", - "MacroLanguage": "ne", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "npl", - "Description": [ - "Southeastern Puebla Nahuatl" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "npn", - "Description": [ - "Mondropolon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "npo", - "Description": [ - "Pochuri Naga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nps", - "Description": [ - "Nipsan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "npu", - "Description": [ - "Puimei Naga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "npx", - "Description": [ - "Noipx" - ], - "Added": "2017-02-23", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "npy", - "Description": [ - "Napu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nqg", - "Description": [ - "Southern Nago" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nqk", - "Description": [ - "Kura Ede Nago" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nql", - "Description": [ - "Ngendelengo" - ], - "Added": "2017-02-23", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nqm", - "Description": [ - "Ndom" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nqn", - "Description": [ - "Nen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nqo", - "Description": [ - "N\u0027Ko", - "N\u2019Ko" - ], - "Added": "2006-06-05", - "SuppressScript": "Nkoo", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nqq", - "Description": [ - "Kyan-Karyaw Naga" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nqt", - "Description": [ - "Nteng" - ], - "Added": "2021-02-20", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nqy", - "Description": [ - "Akyaung Ari Naga" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nra", - "Description": [ - "Ngom" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nrb", - "Description": [ - "Nara" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nrc", - "Description": [ - "Noric" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nre", - "Description": [ - "Southern Rengma Naga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nrf", - "Description": [ - "J\u00E8rriais", - "Guern\u00E9siais", - "Sercquiais" - ], - "Added": "2015-02-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nrg", - "Description": [ - "Narango" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nri", - "Description": [ - "Chokri Naga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nrk", - "Description": [ - "Ngarla" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nrl", - "Description": [ - "Ngarluma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nrm", - "Description": [ - "Narom" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nrn", - "Description": [ - "Norn" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nrp", - "Description": [ - "North Picene" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nrr", - "Description": [ - "Norra", - "Nora" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nrt", - "Description": [ - "Northern Kalapuya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nru", - "Description": [ - "Narua" - ], - "Added": "2011-08-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nrx", - "Description": [ - "Ngurmbur" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nrz", - "Description": [ - "Lala" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nsa", - "Description": [ - "Sangtam Naga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nsb", - "Description": [ - "Lower Nossob" - ], - "Added": "2020-03-28", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nsc", - "Description": [ - "Nshi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nsd", - "Description": [ - "Southern Nisu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nse", - "Description": [ - "Nsenga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nsf", - "Description": [ - "Northwestern Nisu" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nsg", - "Description": [ - "Ngasa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nsh", - "Description": [ - "Ngoshie" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nsi", - "Description": [ - "Nigerian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nsk", - "Description": [ - "Naskapi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nsl", - "Description": [ - "Norwegian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nsm", - "Description": [ - "Sumi Naga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nsn", - "Description": [ - "Nehan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nso", - "Description": [ - "Pedi", - "Northern Sotho", - "Sepedi" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nsp", - "Description": [ - "Nepalese Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nsq", - "Description": [ - "Northern Sierra Miwok" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nsr", - "Description": [ - "Maritime Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nss", - "Description": [ - "Nali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nst", - "Description": [ - "Tase Naga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nsu", - "Description": [ - "Sierra Negra Nahuatl" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nsv", - "Description": [ - "Southwestern Nisu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nsw", - "Description": [ - "Navut" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nsx", - "Description": [ - "Nsongo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nsy", - "Description": [ - "Nasal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nsz", - "Description": [ - "Nisenan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ntd", - "Description": [ - "Northern Tidung" - ], - "Added": "2016-05-30", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nte", - "Description": [ - "Nathembo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2024-12-12", - "Comments": [], - "Prefix": [], - "PreferredValue": "eko" - }, - { - "Type": "Language", - "SubTag": "ntg", - "Description": [ - "Ngantangarra" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nti", - "Description": [ - "Natioro" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ntj", - "Description": [ - "Ngaanyatjarra" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ntk", - "Description": [ - "Ikoma-Nata-Isenye" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ntm", - "Description": [ - "Nateni" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nto", - "Description": [ - "Ntomba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ntp", - "Description": [ - "Northern Tepehuan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ntr", - "Description": [ - "Delo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nts", - "Description": [ - "Natagaimas" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2016-05-30", - "Comments": [], - "Prefix": [], - "PreferredValue": "pij" - }, - { - "Type": "Language", - "SubTag": "ntu", - "Description": [ - "Nat\u00FCgu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ntw", - "Description": [ - "Nottoway" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ntx", - "Description": [ - "Tangkhul Naga (Myanmar)" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [ - "see nmf" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nty", - "Description": [ - "Mantsi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ntz", - "Description": [ - "Natanzi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nua", - "Description": [ - "Yuanga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nub", - "Description": [ - "Nubian languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nuc", - "Description": [ - "Nukuini" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nud", - "Description": [ - "Ngala" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nue", - "Description": [ - "Ngundu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nuf", - "Description": [ - "Nusu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nug", - "Description": [ - "Nungali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nuh", - "Description": [ - "Ndunda" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nui", - "Description": [ - "Ngumbi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nuj", - "Description": [ - "Nyole" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nuk", - "Description": [ - "Nuu-chah-nulth", - "Nuuchahnulth" - ], - "Added": "2011-08-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nul", - "Description": [ - "Nusa Laut" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "num", - "Description": [ - "Niuafo\u0027ou" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nun", - "Description": [ - "Anong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nuo", - "Description": [ - "Ngu\u00F4n" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nup", - "Description": [ - "Nupe-Nupe-Tako" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nuq", - "Description": [ - "Nukumanu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nur", - "Description": [ - "Nukuria" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nus", - "Description": [ - "Nuer" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nut", - "Description": [ - "Nung (Viet Nam)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nuu", - "Description": [ - "Ngbundu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nuv", - "Description": [ - "Northern Nuni" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nuw", - "Description": [ - "Nguluwan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nux", - "Description": [ - "Mehek" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nuy", - "Description": [ - "Nunggubuyu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nuz", - "Description": [ - "Tlamacazapa Nahuatl" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nvh", - "Description": [ - "Nasarian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nvm", - "Description": [ - "Namiae" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nvo", - "Description": [ - "Nyokon" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nwa", - "Description": [ - "Nawathinehena" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nwb", - "Description": [ - "Nyabwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nwc", - "Description": [ - "Classical Newari", - "Classical Nepal Bhasa", - "Old Newari" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nwe", - "Description": [ - "Ngwe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nwg", - "Description": [ - "Ngayawung" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nwi", - "Description": [ - "Southwest Tanna" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nwm", - "Description": [ - "Nyamusa-Molo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nwo", - "Description": [ - "Nauo" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nwr", - "Description": [ - "Nawaru" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nww", - "Description": [ - "Ndwewe" - ], - "Added": "2022-02-25", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nwx", - "Description": [ - "Middle Newar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nwy", - "Description": [ - "Nottoway-Meherrin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nxa", - "Description": [ - "Nauete" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nxd", - "Description": [ - "Ngando (Democratic Republic of Congo)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nxe", - "Description": [ - "Nage" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nxg", - "Description": [ - "Ngad\u0027a" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nxi", - "Description": [ - "Nindi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nxk", - "Description": [ - "Koki Naga" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nxl", - "Description": [ - "South Nuaulu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nxm", - "Description": [ - "Numidian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nxn", - "Description": [ - "Ngawun" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nxo", - "Description": [ - "Ndambomo" - ], - "Added": "2015-02-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nxq", - "Description": [ - "Naxi" - ], - "Added": "2011-08-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nxr", - "Description": [ - "Ninggerum" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nxu", - "Description": [ - "Narau" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2020-03-28", - "Comments": [], - "Prefix": [], - "PreferredValue": "bpp" - }, - { - "Type": "Language", - "SubTag": "nxx", - "Description": [ - "Nafri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nyb", - "Description": [ - "Nyangbo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nyc", - "Description": [ - "Nyanga-li" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nyd", - "Description": [ - "Nyore", - "Olunyole" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "luy", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nye", - "Description": [ - "Nyengo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nyf", - "Description": [ - "Giryama", - "Kigiryama" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nyg", - "Description": [ - "Nyindu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nyh", - "Description": [ - "Nyikina" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nyi", - "Description": [ - "Ama (Sudan)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nyj", - "Description": [ - "Nyanga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nyk", - "Description": [ - "Nyaneka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nyl", - "Description": [ - "Nyeu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nym", - "Description": [ - "Nyamwezi" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nyn", - "Description": [ - "Nyankole" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nyo", - "Description": [ - "Nyoro" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nyp", - "Description": [ - "Nyang\u0027i" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nyq", - "Description": [ - "Nayini" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nyr", - "Description": [ - "Nyiha (Malawi)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nys", - "Description": [ - "Nyungar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nyt", - "Description": [ - "Nyawaygi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nyu", - "Description": [ - "Nyungwe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nyv", - "Description": [ - "Nyulnyul" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nyw", - "Description": [ - "Nyaw" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nyx", - "Description": [ - "Nganyaywana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nyy", - "Description": [ - "Nyakyusa-Ngonde" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nza", - "Description": [ - "Tigon Mbembe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nzb", - "Description": [ - "Njebi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nzd", - "Description": [ - "Nzadi" - ], - "Added": "2018-03-08", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nzi", - "Description": [ - "Nzima" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nzk", - "Description": [ - "Nzakara" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nzm", - "Description": [ - "Zeme Naga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nzr", - "Description": [ - "Dir-Nyamzak-Mbarimi" - ], - "Added": "2023-03-17", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nzs", - "Description": [ - "New Zealand Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nzu", - "Description": [ - "Teke-Nzikou" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nzy", - "Description": [ - "Nzakambay" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "nzz", - "Description": [ - "Nanga Dama Dogon" - ], - "Added": "2010-03-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "oaa", - "Description": [ - "Orok" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "oac", - "Description": [ - "Oroch" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "oak", - "Description": [ - "Noakhali", - "Noakhailla" - ], - "Added": "2025-05-14", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "oar", - "Description": [ - "Old Aramaic (up to 700 BCE)", - "Ancient Aramaic (up to 700 BCE)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "oav", - "Description": [ - "Old Avar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "obi", - "Description": [ - "Obispe\u00F1o" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "obk", - "Description": [ - "Southern Bontok" - ], - "Added": "2010-03-11", - "Scope": "None", - "MacroLanguage": "bnc", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "obl", - "Description": [ - "Oblo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "obm", - "Description": [ - "Moabite" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "obo", - "Description": [ - "Obo Manobo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "obr", - "Description": [ - "Old Burmese" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "obt", - "Description": [ - "Old Breton" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "obu", - "Description": [ - "Obulom" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "oca", - "Description": [ - "Ocaina" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "och", - "Description": [ - "Old Chinese" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ocm", - "Description": [ - "Old Cham" - ], - "Added": "2021-02-20", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "oco", - "Description": [ - "Old Cornish" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ocu", - "Description": [ - "Atzingo Matlatzinca" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "oda", - "Description": [ - "Odut" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "odk", - "Description": [ - "Od" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "odt", - "Description": [ - "Old Dutch" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "odu", - "Description": [ - "Odual" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ofo", - "Description": [ - "Ofo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ofs", - "Description": [ - "Old Frisian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ofu", - "Description": [ - "Efutop" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ogb", - "Description": [ - "Ogbia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ogc", - "Description": [ - "Ogbah" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "oge", - "Description": [ - "Old Georgian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ogg", - "Description": [ - "Ogbogolo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ogo", - "Description": [ - "Khana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ogu", - "Description": [ - "Ogbronuagum" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "oht", - "Description": [ - "Old Hittite" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ohu", - "Description": [ - "Old Hungarian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "oia", - "Description": [ - "Oirata" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "oie", - "Description": [ - "Okolie" - ], - "Added": "2022-02-25", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "oin", - "Description": [ - "Inebu One" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ojb", - "Description": [ - "Northwestern Ojibwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "oj", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ojc", - "Description": [ - "Central Ojibwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "oj", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ojg", - "Description": [ - "Eastern Ojibwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "oj", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ojp", - "Description": [ - "Old Japanese" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ojs", - "Description": [ - "Severn Ojibwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "oj", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ojv", - "Description": [ - "Ontong Java" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ojw", - "Description": [ - "Western Ojibwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "oj", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "oka", - "Description": [ - "Okanagan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "okb", - "Description": [ - "Okobo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "okc", - "Description": [ - "Kobo" - ], - "Added": "2021-02-20", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "okd", - "Description": [ - "Okodia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "oke", - "Description": [ - "Okpe (Southwestern Edo)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "okg", - "Description": [ - "Koko Babangk" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "okh", - "Description": [ - "Koresh-e Rostam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "oki", - "Description": [ - "Okiek" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "kln", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "okj", - "Description": [ - "Oko-Juwoi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "okk", - "Description": [ - "Kwamtim One" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "okl", - "Description": [ - "Old Kentish Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "okm", - "Description": [ - "Middle Korean (10th-16th cent.)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "okn", - "Description": [ - "Oki-No-Erabu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "oko", - "Description": [ - "Old Korean (3rd-9th cent.)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "okr", - "Description": [ - "Kirike" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "oks", - "Description": [ - "Oko-Eni-Osayen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "oku", - "Description": [ - "Oku" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "okv", - "Description": [ - "Orokaiva" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "okx", - "Description": [ - "Okpe (Northwestern Edo)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "okz", - "Description": [ - "Old Khmer" - ], - "Added": "2021-02-20", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ola", - "Description": [ - "Walungge" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "olb", - "Description": [ - "Oli-Bodiman" - ], - "Added": "2026-04-09", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "old", - "Description": [ - "Mochi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ole", - "Description": [ - "Olekha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "olk", - "Description": [ - "Olkol" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "olm", - "Description": [ - "Oloma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "olo", - "Description": [ - "Livvi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "olr", - "Description": [ - "Olrat" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "olt", - "Description": [ - "Old Lithuanian" - ], - "Added": "2014-02-28", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "olu", - "Description": [ - "Kuvale" - ], - "Added": "2016-05-30", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "oma", - "Description": [ - "Omaha-Ponca" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "omb", - "Description": [ - "East Ambae" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "omc", - "Description": [ - "Mochica" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ome", - "Description": [ - "Omejes" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2016-05-30", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "omg", - "Description": [ - "Omagua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "omi", - "Description": [ - "Omi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "omk", - "Description": [ - "Omok" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "oml", - "Description": [ - "Ombo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "omn", - "Description": [ - "Minoan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "omo", - "Description": [ - "Utarmbung" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "omp", - "Description": [ - "Old Manipuri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "omq", - "Description": [ - "Oto-Manguean languages" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "omr", - "Description": [ - "Old Marathi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "omt", - "Description": [ - "Omotik" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "omu", - "Description": [ - "Omurano" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "omv", - "Description": [ - "Omotic languages" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "omw", - "Description": [ - "South Tairora" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "omx", - "Description": [ - "Old Mon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "omy", - "Description": [ - "Old Malay" - ], - "Added": "2021-02-20", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ona", - "Description": [ - "Ona" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "onb", - "Description": [ - "Lingao" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "one", - "Description": [ - "Oneida" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ong", - "Description": [ - "Olo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "oni", - "Description": [ - "Onin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "onj", - "Description": [ - "Onjob" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "onk", - "Description": [ - "Kabore One" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "onn", - "Description": [ - "Onobasulu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ono", - "Description": [ - "Onondaga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "onp", - "Description": [ - "Sartang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "onr", - "Description": [ - "Northern One" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ons", - "Description": [ - "Ono" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ont", - "Description": [ - "Ontenu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "onu", - "Description": [ - "Unua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "onw", - "Description": [ - "Old Nubian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "onx", - "Description": [ - "Onin Based Pidgin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ood", - "Description": [ - "Tohono O\u0027odham" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "oog", - "Description": [ - "Ong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "oon", - "Description": [ - "\u00D6nge" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "oor", - "Description": [ - "Oorlams" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "oos", - "Description": [ - "Old Ossetic" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "opa", - "Description": [ - "Okpamheri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "opk", - "Description": [ - "Kopkaka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "opm", - "Description": [ - "Oksapmin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "opo", - "Description": [ - "Opao" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "opt", - "Description": [ - "Opata" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "opy", - "Description": [ - "Ofay\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ora", - "Description": [ - "Oroha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "orc", - "Description": [ - "Orma" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "om", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ore", - "Description": [ - "Orej\u00F3n" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "org", - "Description": [ - "Oring" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "orh", - "Description": [ - "Oroqen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "orn", - "Description": [ - "Orang Kanaq" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "oro", - "Description": [ - "Orokolo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "orr", - "Description": [ - "Oruma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ors", - "Description": [ - "Orang Seletar" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ort", - "Description": [ - "Adivasi Oriya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "oru", - "Description": [ - "Ormuri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "orv", - "Description": [ - "Old Russian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "orw", - "Description": [ - "Oro Win" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "orx", - "Description": [ - "Oro" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ory", - "Description": [ - "Odia (individual language)", - "Oriya (individual language)" - ], - "Added": "2012-08-12", - "Scope": "None", - "MacroLanguage": "or", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "orz", - "Description": [ - "Ormu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "osa", - "Description": [ - "Osage" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "osc", - "Description": [ - "Oscan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "osd", - "Description": [ - "Digor Ossetic", - "Digor", - "Digor Ossetian" - ], - "Added": "2026-04-09", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "osi", - "Description": [ - "Osing" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "osn", - "Description": [ - "Old Sundanese" - ], - "Added": "2021-02-20", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "oso", - "Description": [ - "Ososo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "osp", - "Description": [ - "Old Spanish" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ost", - "Description": [ - "Osatu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "osu", - "Description": [ - "Southern One" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "osx", - "Description": [ - "Old Saxon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ota", - "Description": [ - "Ottoman Turkish (1500-1928)" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "otb", - "Description": [ - "Old Tibetan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "otd", - "Description": [ - "Ot Danum" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ote", - "Description": [ - "Mezquital Otomi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "oti", - "Description": [ - "Oti" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "otk", - "Description": [ - "Old Turkish" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "otl", - "Description": [ - "Tilapa Otomi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "otm", - "Description": [ - "Eastern Highland Otomi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "otn", - "Description": [ - "Tenango Otomi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "oto", - "Description": [ - "Otomian languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "otq", - "Description": [ - "Quer\u00E9taro Otomi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "otr", - "Description": [ - "Otoro" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ots", - "Description": [ - "Estado de M\u00E9xico Otomi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ott", - "Description": [ - "Temoaya Otomi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "otu", - "Description": [ - "Otuke" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "otw", - "Description": [ - "Ottawa" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "oj", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "otx", - "Description": [ - "Texcatepec Otomi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "oty", - "Description": [ - "Old Tamil" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "otz", - "Description": [ - "Ixtenco Otomi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "oua", - "Description": [ - "Tagargrent" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "oub", - "Description": [ - "Glio-Oubi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "oue", - "Description": [ - "Oune" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "oui", - "Description": [ - "Old Uighur" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "oum", - "Description": [ - "Ouma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "oun", - "Description": [ - "\u01C3O\u01C3ung" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2015-02-12", - "Comments": [], - "Prefix": [], - "PreferredValue": "vaj" - }, - { - "Type": "Language", - "SubTag": "ovd", - "Description": [ - "Elfdalian", - "\u00D6vdalian" - ], - "Added": "2016-06-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "owi", - "Description": [ - "Owiniga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "owl", - "Description": [ - "Old Welsh" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "oyb", - "Description": [ - "Oy" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "oyd", - "Description": [ - "Oyda" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "oym", - "Description": [ - "Wayampi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "oyy", - "Description": [ - "Oya\u0027oya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ozm", - "Description": [ - "Koonzime" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "paa", - "Description": [ - "Papuan languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pab", - "Description": [ - "Parec\u00EDs" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pac", - "Description": [ - "Pacoh" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pad", - "Description": [ - "Paumar\u00ED" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pae", - "Description": [ - "Pagibete" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "paf", - "Description": [ - "Paranaw\u00E1t" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pag", - "Description": [ - "Pangasinan" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pah", - "Description": [ - "Tenharim" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pai", - "Description": [ - "Pe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pak", - "Description": [ - "Parakan\u00E3" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pal", - "Description": [ - "Pahlavi" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pam", - "Description": [ - "Pampanga", - "Kapampangan" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pao", - "Description": [ - "Northern Paiute" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pap", - "Description": [ - "Papiamento" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "paq", - "Description": [ - "Parya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "par", - "Description": [ - "Panamint", - "Timbisha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pas", - "Description": [ - "Papasena" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pat", - "Description": [ - "Papitalai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2021-02-20", - "Comments": [], - "Prefix": [], - "PreferredValue": "kxr" - }, - { - "Type": "Language", - "SubTag": "pau", - "Description": [ - "Palauan" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pav", - "Description": [ - "Paka\u00E1snovos" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "paw", - "Description": [ - "Pawnee" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pax", - "Description": [ - "Pankarar\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pay", - "Description": [ - "Pech" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "paz", - "Description": [ - "Pankarar\u00FA" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pbb", - "Description": [ - "P\u00E1ez" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pbc", - "Description": [ - "Patamona" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pbe", - "Description": [ - "Mezontla Popoloca" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pbf", - "Description": [ - "Coyotepec Popoloca" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pbg", - "Description": [ - "Paraujano" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pbh", - "Description": [ - "E\u0027\u00F1apa Woromaipu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pbi", - "Description": [ - "Parkwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pbl", - "Description": [ - "Mak (Nigeria)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pbm", - "Description": [ - "Puebla Mazatec" - ], - "Added": "2018-03-08", - "Scope": "None", - "Comments": [ - "see also maa" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pbn", - "Description": [ - "Kpasam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pbo", - "Description": [ - "Papel" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pbp", - "Description": [ - "Badyara" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pbr", - "Description": [ - "Pangwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pbs", - "Description": [ - "Central Pame" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pbt", - "Description": [ - "Southern Pashto" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ps", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pbu", - "Description": [ - "Northern Pashto" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ps", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pbv", - "Description": [ - "Pnar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pby", - "Description": [ - "Pyu (Papua New Guinea)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pbz", - "Description": [ - "Palu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2012-08-12", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pca", - "Description": [ - "Santa In\u00E9s Ahuatempan Popoloca" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pcb", - "Description": [ - "Pear" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pcc", - "Description": [ - "Bouyei" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pcd", - "Description": [ - "Picard" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pce", - "Description": [ - "Ruching Palaung" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pcf", - "Description": [ - "Paliyan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pcg", - "Description": [ - "Paniya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pch", - "Description": [ - "Pardhan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pci", - "Description": [ - "Duruwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pcj", - "Description": [ - "Parenga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pck", - "Description": [ - "Paite Chin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pcl", - "Description": [ - "Pardhi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pcm", - "Description": [ - "Nigerian Pidgin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pcn", - "Description": [ - "Piti" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pcp", - "Description": [ - "Pacahuara" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pcr", - "Description": [ - "Panang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2013-09-10", - "Comments": [], - "Prefix": [], - "PreferredValue": "adx" - }, - { - "Type": "Language", - "SubTag": "pcw", - "Description": [ - "Pyapun" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pda", - "Description": [ - "Anam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pdc", - "Description": [ - "Pennsylvania German" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pdi", - "Description": [ - "Pa Di" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pdn", - "Description": [ - "Podena", - "Fedan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pdo", - "Description": [ - "Padoe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pdt", - "Description": [ - "Plautdietsch" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pdu", - "Description": [ - "Kayan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pea", - "Description": [ - "Peranakan Indonesian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "peb", - "Description": [ - "Eastern Pomo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ped", - "Description": [ - "Mala (Papua New Guinea)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pee", - "Description": [ - "Taje" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pef", - "Description": [ - "Northeastern Pomo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "peg", - "Description": [ - "Pengo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "peh", - "Description": [ - "Bonan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pei", - "Description": [ - "Chichimeca-Jonaz" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pej", - "Description": [ - "Northern Pomo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pek", - "Description": [ - "Penchal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pel", - "Description": [ - "Pekal" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pem", - "Description": [ - "Phende" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "peo", - "Description": [ - "Old Persian (ca. 600-400 B.C.)" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pep", - "Description": [ - "Kunja" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "peq", - "Description": [ - "Southern Pomo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pes", - "Description": [ - "Iranian Persian" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "fa", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pev", - "Description": [ - "P\u00E9mono" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pex", - "Description": [ - "Petats" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pey", - "Description": [ - "Petjo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pez", - "Description": [ - "Eastern Penan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pfa", - "Description": [ - "P\u00E1\u00E1fang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pfe", - "Description": [ - "Pere" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pfl", - "Description": [ - "Pfaelzisch" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pga", - "Description": [ - "Sudanese Creole Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pgd", - "Description": [ - "G\u0101ndh\u0101r\u012B" - ], - "Added": "2015-02-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pgg", - "Description": [ - "Pangwali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pgi", - "Description": [ - "Pagi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pgk", - "Description": [ - "Rerep" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pgl", - "Description": [ - "Primitive Irish" - ], - "Added": "2011-08-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pgn", - "Description": [ - "Paelignian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pgs", - "Description": [ - "Pangseng" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pgu", - "Description": [ - "Pagu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pgy", - "Description": [ - "Pongyong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2012-08-12", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pgz", - "Description": [ - "Papua New Guinean Sign Language" - ], - "Added": "2016-05-30", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pha", - "Description": [ - "Pa-Hng" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "phd", - "Description": [ - "Phudagi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "phg", - "Description": [ - "Phuong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "phh", - "Description": [ - "Phukha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "phi", - "Description": [ - "Philippine languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "phj", - "Description": [ - "Pahari" - ], - "Added": "2022-02-25", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "phk", - "Description": [ - "Phake" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "phl", - "Description": [ - "Phalura", - "Palula" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "phm", - "Description": [ - "Phimbi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "phn", - "Description": [ - "Phoenician" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pho", - "Description": [ - "Phunoi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "phq", - "Description": [ - "Phana\u0027" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "phr", - "Description": [ - "Pahari-Potwari" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "lah", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pht", - "Description": [ - "Phu Thai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "phu", - "Description": [ - "Phuan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "phv", - "Description": [ - "Pahlavani" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "phw", - "Description": [ - "Phangduwali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pia", - "Description": [ - "Pima Bajo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pib", - "Description": [ - "Yine" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pic", - "Description": [ - "Pinji" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pid", - "Description": [ - "Piaroa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pie", - "Description": [ - "Piro" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pif", - "Description": [ - "Pingelapese" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pig", - "Description": [ - "Pisabo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pih", - "Description": [ - "Pitcairn-Norfolk" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pii", - "Description": [ - "Pini" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2022-02-25", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pij", - "Description": [ - "Pijao" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pil", - "Description": [ - "Yom" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pim", - "Description": [ - "Powhatan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pin", - "Description": [ - "Piame" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pio", - "Description": [ - "Piapoco" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pip", - "Description": [ - "Pero" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pir", - "Description": [ - "Piratapuyo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pis", - "Description": [ - "Pijin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pit", - "Description": [ - "Pitta Pitta" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "piu", - "Description": [ - "Pintupi-Luritja" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "piv", - "Description": [ - "Pileni", - "Vaeakau-Taumako" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "piw", - "Description": [ - "Pimbwe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pix", - "Description": [ - "Piu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "piy", - "Description": [ - "Piya-Kwonci" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "piz", - "Description": [ - "Pije" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pjt", - "Description": [ - "Pitjantjatjara" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pka", - "Description": [ - "Ardham\u0101gadh\u012B Pr\u0101krit" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pkb", - "Description": [ - "Pokomo", - "Kipfokomo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pkc", - "Description": [ - "Paekche" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pkg", - "Description": [ - "Pak-Tong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pkh", - "Description": [ - "Pankhu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pkn", - "Description": [ - "Pakanha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pko", - "Description": [ - "P\u00F6koot" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "kln", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pkp", - "Description": [ - "Pukapuka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pkr", - "Description": [ - "Attapady Kurumba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pks", - "Description": [ - "Pakistan Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pkt", - "Description": [ - "Maleng" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pku", - "Description": [ - "Paku" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pla", - "Description": [ - "Miani" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "plb", - "Description": [ - "Polonombauk" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "plc", - "Description": [ - "Central Palawano" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pld", - "Description": [ - "Polari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ple", - "Description": [ - "Palu\u0027e" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "plf", - "Description": [ - "Central Malayo-Polynesian languages" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "plg", - "Description": [ - "Pilag\u00E1" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "plh", - "Description": [ - "Paulohi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "plj", - "Description": [ - "Polci" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2023-03-17", - "Comments": [ - "see nzr, pze, uly, zlu" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "plk", - "Description": [ - "Kohistani Shina" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pll", - "Description": [ - "Shwe Palaung" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pln", - "Description": [ - "Palenquero" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "plo", - "Description": [ - "Oluta Popoluca" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "plp", - "Description": [ - "Palpa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2020-03-28", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "plq", - "Description": [ - "Palaic" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "plr", - "Description": [ - "Palaka Senoufo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pls", - "Description": [ - "San Marcos Tlacoyalco Popoloca", - "San Marcos Tlalcoyalco Popoloca" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "plt", - "Description": [ - "Plateau Malagasy" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "mg", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "plu", - "Description": [ - "Palik\u00FAr" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "plv", - "Description": [ - "Southwest Palawano" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "plw", - "Description": [ - "Brooke\u0027s Point Palawano" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ply", - "Description": [ - "Bolyu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "plz", - "Description": [ - "Paluan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pma", - "Description": [ - "Paama" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pmb", - "Description": [ - "Pambia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pmc", - "Description": [ - "Palumata" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2016-05-30", - "Comments": [], - "Prefix": [], - "PreferredValue": "huw" - }, - { - "Type": "Language", - "SubTag": "pmd", - "Description": [ - "Pallanganmiddang" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pme", - "Description": [ - "Pwaamei" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pmf", - "Description": [ - "Pamona" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pmh", - "Description": [ - "M\u0101h\u0101r\u0101\u1E63\u1E6Dri Pr\u0101krit" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pmi", - "Description": [ - "Northern Pumi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pmj", - "Description": [ - "Southern Pumi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pmk", - "Description": [ - "Pamlico" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2023-03-17", - "Comments": [], - "Prefix": [], - "PreferredValue": "crr" - }, - { - "Type": "Language", - "SubTag": "pml", - "Description": [ - "Lingua Franca" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pmm", - "Description": [ - "Pomo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pmn", - "Description": [ - "Pam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pmo", - "Description": [ - "Pom" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pmq", - "Description": [ - "Northern Pame" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pmr", - "Description": [ - "Paynamar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pms", - "Description": [ - "Piemontese" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pmt", - "Description": [ - "Tuamotuan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pmu", - "Description": [ - "Mirpur Panjabi" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "lah", - "Deprecated": "2015-02-12", - "Comments": [], - "Prefix": [], - "PreferredValue": "phr" - }, - { - "Type": "Language", - "SubTag": "pmw", - "Description": [ - "Plains Miwok" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pmx", - "Description": [ - "Poumei Naga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pmy", - "Description": [ - "Papuan Malay" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pmz", - "Description": [ - "Southern Pame" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pna", - "Description": [ - "Punan Bah-Biau" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pnb", - "Description": [ - "Western Panjabi" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "lah", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pnc", - "Description": [ - "Pannei" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pnd", - "Description": [ - "Mpinda" - ], - "Added": "2019-04-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pne", - "Description": [ - "Western Penan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "png", - "Description": [ - "Pangu", - "Pongu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pnh", - "Description": [ - "Penrhyn" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pni", - "Description": [ - "Aoheng" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pnj", - "Description": [ - "Pinjarup" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pnk", - "Description": [ - "Paunaka" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pnl", - "Description": [ - "Paleni" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [ - "see also wbf" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pnm", - "Description": [ - "Punan Batu 1" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pnn", - "Description": [ - "Pinai-Hagahai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pno", - "Description": [ - "Panobo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pnp", - "Description": [ - "Pancana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pnq", - "Description": [ - "Pana (Burkina Faso)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pnr", - "Description": [ - "Panim" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pns", - "Description": [ - "Ponosakan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pnt", - "Description": [ - "Pontic" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pnu", - "Description": [ - "Jiongnai Bunu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pnv", - "Description": [ - "Pinigura" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pnw", - "Description": [ - "Banyjima", - "Panytyima" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pnx", - "Description": [ - "Phong-Kniang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pny", - "Description": [ - "Pinyin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [ - "a Niger-Congo language spoken in Cameroon; not to be confused with the Pinyin romanization systems used for Chinese and Tibetan" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pnz", - "Description": [ - "Pana (Central African Republic)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "poc", - "Description": [ - "Poqomam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pod", - "Description": [ - "Ponares" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2016-05-30", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "poe", - "Description": [ - "San Juan Atzingo Popoloca" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pof", - "Description": [ - "Poke" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pog", - "Description": [ - "Potigu\u00E1ra" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "poh", - "Description": [ - "Poqomchi\u0027" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "poi", - "Description": [ - "Highland Popoluca" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pok", - "Description": [ - "Pokang\u00E1" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pom", - "Description": [ - "Southeastern Pomo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pon", - "Description": [ - "Pohnpeian" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "poo", - "Description": [ - "Central Pomo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pop", - "Description": [ - "Pwapw\u00E2" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "poq", - "Description": [ - "Texistepec Popoluca" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pos", - "Description": [ - "Sayula Popoluca" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pot", - "Description": [ - "Potawatomi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pov", - "Description": [ - "Upper Guinea Crioulo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pow", - "Description": [ - "San Felipe Otlaltepec Popoloca" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pox", - "Description": [ - "Polabian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "poy", - "Description": [ - "Pogolo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "poz", - "Description": [ - "Malayo-Polynesian languages" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ppa", - "Description": [ - "Pao" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2016-05-30", - "Comments": [], - "Prefix": [], - "PreferredValue": "bfy" - }, - { - "Type": "Language", - "SubTag": "ppe", - "Description": [ - "Papi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ppi", - "Description": [ - "Paipai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ppk", - "Description": [ - "Uma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ppl", - "Description": [ - "Pipil", - "Nicarao" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ppm", - "Description": [ - "Papuma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ppn", - "Description": [ - "Papapana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ppo", - "Description": [ - "Folopa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ppp", - "Description": [ - "Pelende" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ppq", - "Description": [ - "Pei" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ppr", - "Description": [ - "Piru" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2013-09-10", - "Comments": [], - "Prefix": [], - "PreferredValue": "lcq" - }, - { - "Type": "Language", - "SubTag": "pps", - "Description": [ - "San Lu\u00EDs Temalacayuca Popoloca" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ppt", - "Description": [ - "Pare" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ppu", - "Description": [ - "Papora" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pqa", - "Description": [ - "Pa\u0027a" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pqe", - "Description": [ - "Eastern Malayo-Polynesian languages" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pqm", - "Description": [ - "Malecite-Passamaquoddy" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pqw", - "Description": [ - "Western Malayo-Polynesian languages" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pra", - "Description": [ - "Prakrit languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "prb", - "Description": [ - "Lua\u0027" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2017-02-23", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "prc", - "Description": [ - "Parachi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "prd", - "Description": [ - "Parsi-Dari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pre", - "Description": [ - "Principense" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "prf", - "Description": [ - "Paranan" - ], - "Added": "2010-03-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "prg", - "Description": [ - "Prussian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "prh", - "Description": [ - "Porohanon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pri", - "Description": [ - "Paic\u00EE" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "prk", - "Description": [ - "Parauk" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "prl", - "Description": [ - "Peruvian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "prm", - "Description": [ - "Kibiri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "prn", - "Description": [ - "Prasuni" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pro", - "Description": [ - "Old Proven\u00E7al (to 1500)", - "Old Occitan (to 1500)" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "prp", - "Description": [ - "Parsi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2023-03-17", - "Comments": [], - "Prefix": [], - "PreferredValue": "gu" - }, - { - "Type": "Language", - "SubTag": "prq", - "Description": [ - "Ash\u00E9ninka Peren\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "prr", - "Description": [ - "Puri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "prs", - "Description": [ - "Dari", - "Afghan Persian" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "fa", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "prt", - "Description": [ - "Phai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pru", - "Description": [ - "Puragi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "prw", - "Description": [ - "Parawen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "prx", - "Description": [ - "Purik" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pry", - "Description": [ - "Pray 3" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2016-05-30", - "Comments": [], - "Prefix": [], - "PreferredValue": "prt" - }, - { - "Type": "Language", - "SubTag": "prz", - "Description": [ - "Providencia Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "psa", - "Description": [ - "Asue Awyu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "psc", - "Description": [ - "Iranian Sign Language", - "Persian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "psd", - "Description": [ - "Plains Indian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pse", - "Description": [ - "Central Malay" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "psg", - "Description": [ - "Penang Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "psh", - "Description": [ - "Southwest Pashai", - "Southwest Pashayi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "psi", - "Description": [ - "Southeast Pashai", - "Southeast Pashayi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "psl", - "Description": [ - "Puerto Rican Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "psm", - "Description": [ - "Pauserna" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "psn", - "Description": [ - "Panasuan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pso", - "Description": [ - "Polish Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "psp", - "Description": [ - "Philippine Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "psq", - "Description": [ - "Pasi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "psr", - "Description": [ - "Portuguese Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pss", - "Description": [ - "Kaulong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pst", - "Description": [ - "Central Pashto" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ps", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "psu", - "Description": [ - "Sauraseni Pr\u0101krit" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "psw", - "Description": [ - "Port Sandwich" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "psy", - "Description": [ - "Piscataway" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pta", - "Description": [ - "Pai Tavytera" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pth", - "Description": [ - "Patax\u00F3 H\u00E3-Ha-H\u00E3e" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pti", - "Description": [ - "Pindiini", - "Wangkatha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ptn", - "Description": [ - "Patani" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pto", - "Description": [ - "Zo\u0027\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ptp", - "Description": [ - "Patep" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ptq", - "Description": [ - "Pattapu" - ], - "Added": "2014-04-06", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ptr", - "Description": [ - "Piamatsina" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ptt", - "Description": [ - "Enrekang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ptu", - "Description": [ - "Bambam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ptv", - "Description": [ - "Port Vato" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ptw", - "Description": [ - "Pentlatch" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pty", - "Description": [ - "Pathiya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pua", - "Description": [ - "Western Highland Purepecha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pub", - "Description": [ - "Purum" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "puc", - "Description": [ - "Punan Merap" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pud", - "Description": [ - "Punan Aput" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pue", - "Description": [ - "Puelche" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "puf", - "Description": [ - "Punan Merah" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pug", - "Description": [ - "Phuie" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pui", - "Description": [ - "Puinave" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "puj", - "Description": [ - "Punan Tubu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "puk", - "Description": [ - "Pu Ko" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2017-02-23", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pum", - "Description": [ - "Puma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "puo", - "Description": [ - "Puoc" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pup", - "Description": [ - "Pulabu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "puq", - "Description": [ - "Puquina" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pur", - "Description": [ - "Purubor\u00E1" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "put", - "Description": [ - "Putoh" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "puu", - "Description": [ - "Punu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "puw", - "Description": [ - "Puluwatese" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pux", - "Description": [ - "Puare" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "puy", - "Description": [ - "Purisime\u00F1o" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "puz", - "Description": [ - "Purum Naga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2014-02-28", - "Comments": [], - "Prefix": [], - "PreferredValue": "pub" - }, - { - "Type": "Language", - "SubTag": "pwa", - "Description": [ - "Pawaia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pwb", - "Description": [ - "Panawa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pwg", - "Description": [ - "Gapapaiwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pwi", - "Description": [ - "Patwin" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pwm", - "Description": [ - "Molbog" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pwn", - "Description": [ - "Paiwan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pwo", - "Description": [ - "Pwo Western Karen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pwr", - "Description": [ - "Powari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pww", - "Description": [ - "Pwo Northern Karen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pxm", - "Description": [ - "Quetzaltepec Mixe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pye", - "Description": [ - "Pye Krumen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pym", - "Description": [ - "Fyam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pyn", - "Description": [ - "Poyan\u00E1wa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pys", - "Description": [ - "Paraguayan Sign Language", - "Lengua de Se\u00F1as del Paraguay" - ], - "Added": "2010-03-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pyu", - "Description": [ - "Puyuma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pyx", - "Description": [ - "Pyu (Myanmar)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pyy", - "Description": [ - "Pyen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pze", - "Description": [ - "Pesse" - ], - "Added": "2023-03-17", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pzh", - "Description": [ - "Pazeh" - ], - "Added": "2022-02-25", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "pzn", - "Description": [ - "Jejara Naga", - "Para Naga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qaa..qtz", - "Description": [ - "Private use" - ], - "Added": "2005-10-16", - "Scope": "PrivateUse", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qua", - "Description": [ - "Quapaw" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qub", - "Description": [ - "Huallaga Hu\u00E1nuco Quechua" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "qu", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "quc", - "Description": [ - "K\u0027iche\u0027", - "Quich\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qud", - "Description": [ - "Calder\u00F3n Highland Quichua" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "qu", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "quf", - "Description": [ - "Lambayeque Quechua" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "qu", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qug", - "Description": [ - "Chimborazo Highland Quichua" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "qu", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "quh", - "Description": [ - "South Bolivian Quechua" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "qu", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qui", - "Description": [ - "Quileute" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "quk", - "Description": [ - "Chachapoyas Quechua" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "qu", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qul", - "Description": [ - "North Bolivian Quechua" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "qu", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qum", - "Description": [ - "Sipacapense" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qun", - "Description": [ - "Quinault" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qup", - "Description": [ - "Southern Pastaza Quechua" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "qu", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "quq", - "Description": [ - "Quinqui" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qur", - "Description": [ - "Yanahuanca Pasco Quechua" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "qu", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qus", - "Description": [ - "Santiago del Estero Quichua" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "qu", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "quv", - "Description": [ - "Sacapulteco" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "quw", - "Description": [ - "Tena Lowland Quichua" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "qu", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qux", - "Description": [ - "Yauyos Quechua" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "qu", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "quy", - "Description": [ - "Ayacucho Quechua" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "qu", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "quz", - "Description": [ - "Cusco Quechua" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "qu", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qva", - "Description": [ - "Ambo-Pasco Quechua" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "qu", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qvc", - "Description": [ - "Cajamarca Quechua" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "qu", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qve", - "Description": [ - "Eastern Apur\u00EDmac Quechua" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "qu", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qvh", - "Description": [ - "Huamal\u00EDes-Dos de Mayo Hu\u00E1nuco Quechua" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "qu", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qvi", - "Description": [ - "Imbabura Highland Quichua" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "qu", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qvj", - "Description": [ - "Loja Highland Quichua" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "qu", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qvl", - "Description": [ - "Cajatambo North Lima Quechua" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "qu", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qvm", - "Description": [ - "Margos-Yarowilca-Lauricocha Quechua" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "qu", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qvn", - "Description": [ - "North Jun\u00EDn Quechua" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "qu", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qvo", - "Description": [ - "Napo Lowland Quechua" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "qu", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qvp", - "Description": [ - "Pacaraos Quechua" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "qu", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qvs", - "Description": [ - "San Mart\u00EDn Quechua" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "qu", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qvw", - "Description": [ - "Huaylla Wanca Quechua" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "qu", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qvy", - "Description": [ - "Queyu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qvz", - "Description": [ - "Northern Pastaza Quichua" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "qu", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qwa", - "Description": [ - "Corongo Ancash Quechua" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "qu", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qwc", - "Description": [ - "Classical Quechua" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "qu", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qwe", - "Description": [ - "Quechuan (family)" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qwh", - "Description": [ - "Huaylas Ancash Quechua" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "qu", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qwm", - "Description": [ - "Kuman (Russia)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qws", - "Description": [ - "Sihuas Ancash Quechua" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "qu", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qwt", - "Description": [ - "Kwalhioqua-Tlatskanai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qxa", - "Description": [ - "Chiqui\u00E1n Ancash Quechua" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "qu", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qxc", - "Description": [ - "Chincha Quechua" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "qu", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qxh", - "Description": [ - "Panao Hu\u00E1nuco Quechua" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "qu", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qxl", - "Description": [ - "Salasaca Highland Quichua" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "qu", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qxn", - "Description": [ - "Northern Conchucos Ancash Quechua" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "qu", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qxo", - "Description": [ - "Southern Conchucos Ancash Quechua" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "qu", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qxp", - "Description": [ - "Puno Quechua" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "qu", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qxq", - "Description": [ - "Qashqa\u0027i" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qxr", - "Description": [ - "Ca\u00F1ar Highland Quichua" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "qu", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qxs", - "Description": [ - "Southern Qiang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qxt", - "Description": [ - "Santa Ana de Tusi Pasco Quechua" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "qu", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qxu", - "Description": [ - "Arequipa-La Uni\u00F3n Quechua" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "qu", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qxw", - "Description": [ - "Jauja Wanca Quechua" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "qu", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qya", - "Description": [ - "Quenya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "qyp", - "Description": [ - "Quiripi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "raa", - "Description": [ - "Dungmali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rab", - "Description": [ - "Camling" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rac", - "Description": [ - "Rasawa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rad", - "Description": [ - "Rade" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "raf", - "Description": [ - "Western Meohang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rag", - "Description": [ - "Logooli", - "Lulogooli" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "luy", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rah", - "Description": [ - "Rabha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rai", - "Description": [ - "Ramoaaina" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "raj", - "Description": [ - "Rajasthani" - ], - "Added": "2005-10-16", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rak", - "Description": [ - "Tulu-Bohuai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ral", - "Description": [ - "Ralte" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ram", - "Description": [ - "Canela" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ran", - "Description": [ - "Riantana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rao", - "Description": [ - "Rao" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rap", - "Description": [ - "Rapanui" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "raq", - "Description": [ - "Saam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rar", - "Description": [ - "Rarotongan", - "Cook Islands Maori" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ras", - "Description": [ - "Tegali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rat", - "Description": [ - "Razajerdi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rau", - "Description": [ - "Raute" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rav", - "Description": [ - "Sampang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "raw", - "Description": [ - "Rawang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rax", - "Description": [ - "Rang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ray", - "Description": [ - "Rapa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "raz", - "Description": [ - "Rahambuu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rbb", - "Description": [ - "Rumai Palaung" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rbk", - "Description": [ - "Northern Bontok" - ], - "Added": "2010-03-11", - "Scope": "None", - "MacroLanguage": "bnc", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rbl", - "Description": [ - "Miraya Bikol" - ], - "Added": "2010-03-11", - "Scope": "None", - "MacroLanguage": "bik", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rbp", - "Description": [ - "Barababaraba" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rcf", - "Description": [ - "R\u00E9union Creole French" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rdb", - "Description": [ - "Rudbari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rea", - "Description": [ - "Rerau" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "reb", - "Description": [ - "Rembong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ree", - "Description": [ - "Rejang Kayan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "reg", - "Description": [ - "Kara (Tanzania)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rei", - "Description": [ - "Reli" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rej", - "Description": [ - "Rejang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rel", - "Description": [ - "Rendille" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rem", - "Description": [ - "Remo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ren", - "Description": [ - "Rengao" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rer", - "Description": [ - "Rer Bare" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "res", - "Description": [ - "Reshe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ret", - "Description": [ - "Retta" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rey", - "Description": [ - "Reyesano" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rga", - "Description": [ - "Roria" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rge", - "Description": [ - "Romano-Greek" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rgk", - "Description": [ - "Rangkas" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rgn", - "Description": [ - "Romagnol" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rgr", - "Description": [ - "Res\u00EDgaro" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rgs", - "Description": [ - "Southern Roglai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rgu", - "Description": [ - "Ringgou" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rhg", - "Description": [ - "Rohingya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rhp", - "Description": [ - "Yahang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ria", - "Description": [ - "Riang (India)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rib", - "Description": [ - "Bribri Sign Language" - ], - "Added": "2022-02-25", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rie", - "Description": [ - "Rien" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2017-02-23", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rif", - "Description": [ - "Tarifit" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ril", - "Description": [ - "Riang Lang", - "Riang (Myanmar)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rim", - "Description": [ - "Nyaturu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rin", - "Description": [ - "Nungu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rir", - "Description": [ - "Ribun" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rit", - "Description": [ - "Ritharrngu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "riu", - "Description": [ - "Riung" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rjg", - "Description": [ - "Rajong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rji", - "Description": [ - "Raji" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rjs", - "Description": [ - "Rajbanshi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rka", - "Description": [ - "Kraol" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rkb", - "Description": [ - "Rikbaktsa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rkh", - "Description": [ - "Rakahanga-Manihiki" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rki", - "Description": [ - "Rakhine" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rkm", - "Description": [ - "Marka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rkt", - "Description": [ - "Rangpuri", - "Kamta" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rkw", - "Description": [ - "Arakwal" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rma", - "Description": [ - "Rama" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rmb", - "Description": [ - "Rembarrnga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rmc", - "Description": [ - "Carpathian Romani" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "rom", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rmd", - "Description": [ - "Traveller Danish" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rme", - "Description": [ - "Angloromani" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rmf", - "Description": [ - "Kalo Finnish Romani" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "rom", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rmg", - "Description": [ - "Traveller Norwegian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rmh", - "Description": [ - "Murkim" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rmi", - "Description": [ - "Lomavren" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rmk", - "Description": [ - "Romkun" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rml", - "Description": [ - "Baltic Romani" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "rom", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rmm", - "Description": [ - "Roma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rmn", - "Description": [ - "Balkan Romani" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "rom", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rmo", - "Description": [ - "Sinte Romani" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "rom", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rmp", - "Description": [ - "Rempi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rmq", - "Description": [ - "Cal\u00F3" - ], - "Added": "2010-03-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rmr", - "Description": [ - "Cal\u00F3" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2010-03-11", - "Comments": [ - "see emx, rmq" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rms", - "Description": [ - "Romanian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rmt", - "Description": [ - "Domari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rmu", - "Description": [ - "Tavringer Romani" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rmv", - "Description": [ - "Romanova" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rmw", - "Description": [ - "Welsh Romani" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "rom", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rmx", - "Description": [ - "Romam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rmy", - "Description": [ - "Vlax Romani" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "rom", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rmz", - "Description": [ - "Marma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rna", - "Description": [ - "Runa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2016-05-30", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rnb", - "Description": [ - "Brunca Sign Language" - ], - "Added": "2022-02-25", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rnd", - "Description": [ - "Ruund" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rng", - "Description": [ - "Ronga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rnl", - "Description": [ - "Ranglong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rnn", - "Description": [ - "Roon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rnp", - "Description": [ - "Rongpo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rnr", - "Description": [ - "Nari Nari" - ], - "Added": "2012-08-20", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rnw", - "Description": [ - "Rungwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "roa", - "Description": [ - "Romance languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rob", - "Description": [ - "Tae\u0027" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "roc", - "Description": [ - "Cacgia Roglai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rod", - "Description": [ - "Rogo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "roe", - "Description": [ - "Ronji" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rof", - "Description": [ - "Rombo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rog", - "Description": [ - "Northern Roglai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rol", - "Description": [ - "Romblomanon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rom", - "Description": [ - "Romany" - ], - "Added": "2005-10-16", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "roo", - "Description": [ - "Rotokas" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rop", - "Description": [ - "Kriol" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ror", - "Description": [ - "Rongga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rou", - "Description": [ - "Runga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "row", - "Description": [ - "Dela-Oenale" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rpn", - "Description": [ - "Repanbitip" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rpt", - "Description": [ - "Rapting" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rri", - "Description": [ - "Ririo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rrm", - "Description": [ - "Moriori" - ], - "Added": "2024-03-04", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rro", - "Description": [ - "Waima" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rrt", - "Description": [ - "Arritinngithigh" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rsb", - "Description": [ - "Romano-Serbian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rsi", - "Description": [ - "Rennellese Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2017-02-23", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rsk", - "Description": [ - "Ruthenian", - "Rusnak" - ], - "Added": "2022-02-25", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rsl", - "Description": [ - "Russian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rsm", - "Description": [ - "Miriwoong Sign Language" - ], - "Added": "2016-05-30", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rsn", - "Description": [ - "Rwandan Sign Language" - ], - "Added": "2022-02-25", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rsw", - "Description": [ - "Rishiwa" - ], - "Added": "2023-03-17", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rtc", - "Description": [ - "Rungtu Chin" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rth", - "Description": [ - "Ratahan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rtm", - "Description": [ - "Rotuman" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rts", - "Description": [ - "Yurats" - ], - "Added": "2015-02-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rtw", - "Description": [ - "Rathawi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rub", - "Description": [ - "Gungu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ruc", - "Description": [ - "Ruuli" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rue", - "Description": [ - "Rusyn" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ruf", - "Description": [ - "Luguru" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rug", - "Description": [ - "Roviana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ruh", - "Description": [ - "Ruga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rui", - "Description": [ - "Rufiji" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ruk", - "Description": [ - "Che" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ruo", - "Description": [ - "Istro Romanian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rup", - "Description": [ - "Macedo-Romanian", - "Aromanian", - "Arumanian" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ruq", - "Description": [ - "Megleno Romanian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rut", - "Description": [ - "Rutul" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ruu", - "Description": [ - "Lanas Lobu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ruy", - "Description": [ - "Mala (Nigeria)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ruz", - "Description": [ - "Ruma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rwa", - "Description": [ - "Rawo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rwk", - "Description": [ - "Rwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rwl", - "Description": [ - "Ruwila" - ], - "Added": "2021-02-20", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rwm", - "Description": [ - "Amba (Uganda)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rwo", - "Description": [ - "Rawa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rwr", - "Description": [ - "Marwari (India)" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "mwr", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rxd", - "Description": [ - "Ngardi" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rxw", - "Description": [ - "Karuwali", - "Garuwali" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ryn", - "Description": [ - "Northern Amami-Oshima" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rys", - "Description": [ - "Yaeyama" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ryu", - "Description": [ - "Central Okinawan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "rzh", - "Description": [ - "R\u0101zi\u1E25\u012B" - ], - "Added": "2016-05-30", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "saa", - "Description": [ - "Saba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sab", - "Description": [ - "Buglere" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sac", - "Description": [ - "Meskwaki" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sad", - "Description": [ - "Sandawe" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sae", - "Description": [ - "Saban\u00EA" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "saf", - "Description": [ - "Safaliba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sah", - "Description": [ - "Yakut" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sai", - "Description": [ - "South American Indian languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "saj", - "Description": [ - "Sahu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sak", - "Description": [ - "Sake" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sal", - "Description": [ - "Salishan languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sam", - "Description": [ - "Samaritan Aramaic" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sao", - "Description": [ - "Sause" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sap", - "Description": [ - "Sanapan\u00E1" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2014-02-28", - "Comments": [ - "see aqt, spn" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "saq", - "Description": [ - "Samburu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sar", - "Description": [ - "Saraveca" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sas", - "Description": [ - "Sasak" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sat", - "Description": [ - "Santali" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sau", - "Description": [ - "Saleman" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sav", - "Description": [ - "Saafi-Saafi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "saw", - "Description": [ - "Sawi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sax", - "Description": [ - "Sa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "say", - "Description": [ - "Saya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "saz", - "Description": [ - "Saurashtra" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sba", - "Description": [ - "Ngambay" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sbb", - "Description": [ - "Simbo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sbc", - "Description": [ - "Kele (Papua New Guinea)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sbd", - "Description": [ - "Southern Samo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sbe", - "Description": [ - "Saliba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sbf", - "Description": [ - "Chabu", - "Shabo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sbg", - "Description": [ - "Seget" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sbh", - "Description": [ - "Sori-Harengan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sbi", - "Description": [ - "Seti" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sbj", - "Description": [ - "Surbakhal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sbk", - "Description": [ - "Safwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sbl", - "Description": [ - "Botolan Sambal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sbm", - "Description": [ - "Sagala" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sbn", - "Description": [ - "Sindhi Bhil" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sbo", - "Description": [ - "Sab\u00FCm" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sbp", - "Description": [ - "Sangu (Tanzania)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sbq", - "Description": [ - "Sileibi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sbr", - "Description": [ - "Sembakung Murut" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sbs", - "Description": [ - "Subiya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sbt", - "Description": [ - "Kimki" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sbu", - "Description": [ - "Stod Bhoti" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sbv", - "Description": [ - "Sabine" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sbw", - "Description": [ - "Simba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sbx", - "Description": [ - "Seberuang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sby", - "Description": [ - "Soli" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sbz", - "Description": [ - "Sara Kaba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sca", - "Description": [ - "Sansu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2012-08-12", - "Comments": [], - "Prefix": [], - "PreferredValue": "hle" - }, - { - "Type": "Language", - "SubTag": "scb", - "Description": [ - "Chut" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sce", - "Description": [ - "Dongxiang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "scf", - "Description": [ - "San Miguel Creole French" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "scg", - "Description": [ - "Sanggau" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sch", - "Description": [ - "Sakachep" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sci", - "Description": [ - "Sri Lankan Creole Malay" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sck", - "Description": [ - "Sadri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "scl", - "Description": [ - "Shina" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "scn", - "Description": [ - "Sicilian" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sco", - "Description": [ - "Scots" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "scp", - "Description": [ - "Hyolmo", - "Helambu Sherpa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "scq", - "Description": [ - "Sa\u0027och" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "scs", - "Description": [ - "North Slavey" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "den", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sct", - "Description": [ - "Southern Katang" - ], - "Added": "2017-02-23", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "scu", - "Description": [ - "Shumcho" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "scv", - "Description": [ - "Sheni" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "scw", - "Description": [ - "Sha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "scx", - "Description": [ - "Sicel" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "scz", - "Description": [ - "Shaetlan" - ], - "Added": "2026-04-09", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sda", - "Description": [ - "Toraja-Sa\u0027dan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sdb", - "Description": [ - "Shabak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sdc", - "Description": [ - "Sassarese Sardinian" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "sc", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sde", - "Description": [ - "Surubu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sdf", - "Description": [ - "Sarli" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sdg", - "Description": [ - "Savi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sdh", - "Description": [ - "Southern Kurdish" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ku", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sdj", - "Description": [ - "Suundi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sdk", - "Description": [ - "Sos Kundi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sdl", - "Description": [ - "Saudi Arabian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sdm", - "Description": [ - "Semandang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2020-03-28", - "Comments": [ - "see ebc, gef, sdq" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sdn", - "Description": [ - "Gallurese Sardinian" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "sc", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sdo", - "Description": [ - "Bukar-Sadung Bidayuh" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sdp", - "Description": [ - "Sherdukpen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sdq", - "Description": [ - "Semandang" - ], - "Added": "2020-03-28", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sdr", - "Description": [ - "Oraon Sadri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sds", - "Description": [ - "Sened" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sdt", - "Description": [ - "Shuadit" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sdu", - "Description": [ - "Sarudu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sdv", - "Description": [ - "Eastern Sudanic languages" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sdx", - "Description": [ - "Sibu Melanau" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sdz", - "Description": [ - "Sallands" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sea", - "Description": [ - "Semai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "seb", - "Description": [ - "Shempire Senoufo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sec", - "Description": [ - "Sechelt", - "She shashishalhem" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sed", - "Description": [ - "Sedang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "see", - "Description": [ - "Seneca" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sef", - "Description": [ - "Cebaara Senoufo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "seg", - "Description": [ - "Segeju" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "seh", - "Description": [ - "Sena" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sei", - "Description": [ - "Seri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sej", - "Description": [ - "Sene" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sek", - "Description": [ - "Sekani" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sel", - "Description": [ - "Selkup" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sem", - "Description": [ - "Semitic languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sen", - "Description": [ - "Nanerig\u00E9 S\u00E9noufo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "seo", - "Description": [ - "Suarmin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sep", - "Description": [ - "S\u00ECc\u00ECt\u00E9 S\u00E9noufo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "seq", - "Description": [ - "Senara S\u00E9noufo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ser", - "Description": [ - "Serrano" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ses", - "Description": [ - "Koyraboro Senni Songhai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "set", - "Description": [ - "Sentani" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "seu", - "Description": [ - "Serui-Laut" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sev", - "Description": [ - "Nyarafolo Senoufo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sew", - "Description": [ - "Sewa Bay" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sey", - "Description": [ - "Secoya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sez", - "Description": [ - "Senthang Chin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sfb", - "Description": [ - "Langue des signes de Belgique Francophone", - "French Belgian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sfe", - "Description": [ - "Eastern Subanen" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sfm", - "Description": [ - "Small Flowery Miao" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "hmn", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sfs", - "Description": [ - "South African Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sfw", - "Description": [ - "Sehwi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sga", - "Description": [ - "Old Irish (to 900)" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sgb", - "Description": [ - "Mag-antsi Ayta" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sgc", - "Description": [ - "Kipsigis" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "kln", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sgd", - "Description": [ - "Surigaonon" - ], - "Added": "2010-03-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sge", - "Description": [ - "Segai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sgg", - "Description": [ - "Swiss-German Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sgh", - "Description": [ - "Shughni" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sgi", - "Description": [ - "Suga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sgj", - "Description": [ - "Surgujia" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sgk", - "Description": [ - "Sangkong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sgl", - "Description": [ - "Sanglechi-Ishkashimi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2010-03-11", - "Comments": [ - "see isk, sgy" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sgm", - "Description": [ - "Singa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sgn", - "Description": [ - "Sign languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sgo", - "Description": [ - "Songa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2015-02-12", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sgp", - "Description": [ - "Singpho" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sgr", - "Description": [ - "Sangisari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sgs", - "Description": [ - "Samogitian" - ], - "Added": "2010-07-26", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sgt", - "Description": [ - "Brokpake" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sgu", - "Description": [ - "Salas" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sgw", - "Description": [ - "Sebat Bet Gurage" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sgx", - "Description": [ - "Sierra Leone Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sgy", - "Description": [ - "Sanglechi" - ], - "Added": "2010-03-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sgz", - "Description": [ - "Sursurunga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sha", - "Description": [ - "Shall-Zwall" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "shb", - "Description": [ - "Ninam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "shc", - "Description": [ - "Sonde" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "shd", - "Description": [ - "Kundal Shahi" - ], - "Added": "2010-03-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "she", - "Description": [ - "Sheko" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "shg", - "Description": [ - "Shua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "shh", - "Description": [ - "Shoshoni" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "shi", - "Description": [ - "Tachelhit" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "shj", - "Description": [ - "Shatt" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "shk", - "Description": [ - "Shilluk" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "shl", - "Description": [ - "Shendu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "shm", - "Description": [ - "Shahrudi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "shn", - "Description": [ - "Shan" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sho", - "Description": [ - "Shanga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "shp", - "Description": [ - "Shipibo-Conibo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "shq", - "Description": [ - "Sala" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "shr", - "Description": [ - "Shi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "shs", - "Description": [ - "Shuswap", - "Secwepemcts\u00EDn" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sht", - "Description": [ - "Shasta" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "shu", - "Description": [ - "Chadian Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "shv", - "Description": [ - "Shehri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "shw", - "Description": [ - "Shwai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "shx", - "Description": [ - "She" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "shy", - "Description": [ - "Tachawit" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "shz", - "Description": [ - "Syenara Senoufo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sia", - "Description": [ - "Akkala Sami" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sib", - "Description": [ - "Sebop" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sid", - "Description": [ - "Sidamo" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sie", - "Description": [ - "Simaa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sif", - "Description": [ - "Siamou" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sig", - "Description": [ - "Paasaal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sih", - "Description": [ - "Zire", - "S\u00EEsh\u00EB\u00EB" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sii", - "Description": [ - "Shom Peng" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sij", - "Description": [ - "Numbami" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sik", - "Description": [ - "Sikiana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sil", - "Description": [ - "Tumulung Sisaala" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sim", - "Description": [ - "Mende (Papua New Guinea)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sio", - "Description": [ - "Siouan languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sip", - "Description": [ - "Sikkimese" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "siq", - "Description": [ - "Sonia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sir", - "Description": [ - "Siri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sis", - "Description": [ - "Siuslaw" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sit", - "Description": [ - "Sino-Tibetan languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "siu", - "Description": [ - "Sinagen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "siv", - "Description": [ - "Sumariup" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "siw", - "Description": [ - "Siwai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "six", - "Description": [ - "Sumau" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "siy", - "Description": [ - "Sivandi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "siz", - "Description": [ - "Siwi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sja", - "Description": [ - "Epena" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sjb", - "Description": [ - "Sajau Basap" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sjc", - "Description": [ - "Shaojiang Chinese" - ], - "Added": "2024-12-12", - "Scope": "None", - "MacroLanguage": "zh", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sjd", - "Description": [ - "Kildin Sami" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sje", - "Description": [ - "Pite Sami" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sjg", - "Description": [ - "Assangori" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sjk", - "Description": [ - "Kemi Sami" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sjl", - "Description": [ - "Sajalong", - "Miji" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sjm", - "Description": [ - "Mapun" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sjn", - "Description": [ - "Sindarin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sjo", - "Description": [ - "Xibe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sjp", - "Description": [ - "Surjapuri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sjr", - "Description": [ - "Siar-Lak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sjs", - "Description": [ - "Senhaja De Srair" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sjt", - "Description": [ - "Ter Sami" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sju", - "Description": [ - "Ume Sami" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sjw", - "Description": [ - "Shawnee" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ska", - "Description": [ - "Skagit" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "skb", - "Description": [ - "Saek" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "skc", - "Description": [ - "Ma Manda" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "skd", - "Description": [ - "Southern Sierra Miwok" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ske", - "Description": [ - "Seke (Vanuatu)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "skf", - "Description": [ - "Sakirabi\u00E1" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "skg", - "Description": [ - "Sakalava Malagasy" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "mg", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "skh", - "Description": [ - "Sikule" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ski", - "Description": [ - "Sika" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "skj", - "Description": [ - "Seke (Nepal)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "skk", - "Description": [ - "Sok" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2017-02-23", - "Comments": [], - "Prefix": [], - "PreferredValue": "oyb" - }, - { - "Type": "Language", - "SubTag": "skm", - "Description": [ - "Kutong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "skn", - "Description": [ - "Kolibugan Subanon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sko", - "Description": [ - "Seko Tengah" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "skp", - "Description": [ - "Sekapan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "skq", - "Description": [ - "Sininkere" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "skr", - "Description": [ - "Saraiki", - "Seraiki" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "lah", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sks", - "Description": [ - "Maia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "skt", - "Description": [ - "Sakata" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sku", - "Description": [ - "Sakao" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "skv", - "Description": [ - "Skou" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "skw", - "Description": [ - "Skepi Creole Dutch" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "skx", - "Description": [ - "Seko Padang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sky", - "Description": [ - "Sikaiana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "skz", - "Description": [ - "Sekar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sla", - "Description": [ - "Slavic languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "slc", - "Description": [ - "S\u00E1liba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sld", - "Description": [ - "Sissala" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sle", - "Description": [ - "Sholaga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "slf", - "Description": [ - "Swiss-Italian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "slg", - "Description": [ - "Selungai Murut" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "slh", - "Description": [ - "Southern Puget Sound Salish" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sli", - "Description": [ - "Lower Silesian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "slj", - "Description": [ - "Salum\u00E1" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sll", - "Description": [ - "Salt-Yui" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "slm", - "Description": [ - "Pangutaran Sama" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sln", - "Description": [ - "Salinan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "slp", - "Description": [ - "Lamaholot" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "slq", - "Description": [ - "Salchuq" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2023-03-17", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "slr", - "Description": [ - "Salar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sls", - "Description": [ - "Singapore Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "slt", - "Description": [ - "Sila" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "slu", - "Description": [ - "Selaru" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "slw", - "Description": [ - "Sialum" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "slx", - "Description": [ - "Salampasu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sly", - "Description": [ - "Selayar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "slz", - "Description": [ - "Ma\u0027ya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sma", - "Description": [ - "Southern Sami" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "smb", - "Description": [ - "Simbari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "smc", - "Description": [ - "Som" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "smd", - "Description": [ - "Sama" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2022-02-25", - "Comments": [], - "Prefix": [], - "PreferredValue": "kmb" - }, - { - "Type": "Language", - "SubTag": "smf", - "Description": [ - "Auwe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "smg", - "Description": [ - "Simbali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "smh", - "Description": [ - "Samei" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "smi", - "Description": [ - "Sami languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "smj", - "Description": [ - "Lule Sami" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "smk", - "Description": [ - "Bolinao" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sml", - "Description": [ - "Central Sama" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "smm", - "Description": [ - "Musasa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "smn", - "Description": [ - "Inari Sami" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "smp", - "Description": [ - "Samaritan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "smq", - "Description": [ - "Samo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "smr", - "Description": [ - "Simeulue" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sms", - "Description": [ - "Skolt Sami" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "smt", - "Description": [ - "Simte" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "smu", - "Description": [ - "Somray" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "smv", - "Description": [ - "Samvedi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "smw", - "Description": [ - "Sumbawa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "smx", - "Description": [ - "Samba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "smy", - "Description": [ - "Semnani" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "smz", - "Description": [ - "Simeku" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "snb", - "Description": [ - "Sebuyau" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2022-02-25", - "Comments": [], - "Prefix": [], - "PreferredValue": "iba" - }, - { - "Type": "Language", - "SubTag": "snc", - "Description": [ - "Sinaugoro" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sne", - "Description": [ - "Bau Bidayuh" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "snf", - "Description": [ - "Noon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sng", - "Description": [ - "Sanga (Democratic Republic of Congo)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "snh", - "Description": [ - "Shinabo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2017-02-23", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sni", - "Description": [ - "Sensi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "snj", - "Description": [ - "Riverain Sango" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "snk", - "Description": [ - "Soninke" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "snl", - "Description": [ - "Sangil" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "snm", - "Description": [ - "Southern Ma\u0027di" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "snn", - "Description": [ - "Siona" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sno", - "Description": [ - "Snohomish" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "snp", - "Description": [ - "Siane" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "snq", - "Description": [ - "Sangu (Gabon)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "snr", - "Description": [ - "Sihan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sns", - "Description": [ - "South West Bay", - "Nahavaq" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "snu", - "Description": [ - "Senggi", - "Viid" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "snv", - "Description": [ - "Sa\u0027ban" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "snw", - "Description": [ - "Selee" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "snx", - "Description": [ - "Sam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sny", - "Description": [ - "Saniyo-Hiyewe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "snz", - "Description": [ - "Kou" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "soa", - "Description": [ - "Thai Song" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sob", - "Description": [ - "Sobei" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "soc", - "Description": [ - "So (Democratic Republic of Congo)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sod", - "Description": [ - "Songoora" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "soe", - "Description": [ - "Songomeno" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sog", - "Description": [ - "Sogdian" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "soh", - "Description": [ - "Aka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "soi", - "Description": [ - "Sonha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "soj", - "Description": [ - "Soi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sok", - "Description": [ - "Sokoro" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sol", - "Description": [ - "Solos" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "son", - "Description": [ - "Songhai languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "soo", - "Description": [ - "Songo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sop", - "Description": [ - "Songe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "soq", - "Description": [ - "Kanasi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sor", - "Description": [ - "Somrai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sos", - "Description": [ - "Seeku" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sou", - "Description": [ - "Southern Thai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sov", - "Description": [ - "Sonsorol" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sow", - "Description": [ - "Sowanda" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sox", - "Description": [ - "Swo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "soy", - "Description": [ - "Miyobe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "soz", - "Description": [ - "Temi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "spb", - "Description": [ - "Sepa (Indonesia)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "spc", - "Description": [ - "Sap\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "spd", - "Description": [ - "Saep" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "spe", - "Description": [ - "Sepa (Papua New Guinea)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "spg", - "Description": [ - "Sian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "spi", - "Description": [ - "Saponi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "spk", - "Description": [ - "Sengo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "spl", - "Description": [ - "Selepet" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "spm", - "Description": [ - "Akukem" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "spn", - "Description": [ - "Sanapan\u00E1" - ], - "Added": "2014-02-28", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "spo", - "Description": [ - "Spokane" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "spp", - "Description": [ - "Supyire Senoufo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "spq", - "Description": [ - "Loreto-Ucayali Spanish" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "spr", - "Description": [ - "Saparua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sps", - "Description": [ - "Saposa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "spt", - "Description": [ - "Spiti Bhoti" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "spu", - "Description": [ - "Sapuan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "spv", - "Description": [ - "Sambalpuri", - "Kosli" - ], - "Added": "2012-08-12", - "Scope": "None", - "MacroLanguage": "or", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "spx", - "Description": [ - "South Picene" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "spy", - "Description": [ - "Sabaot" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "kln", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sqa", - "Description": [ - "Shama-Sambuga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sqh", - "Description": [ - "Shau" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sqj", - "Description": [ - "Albanian languages" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sqk", - "Description": [ - "Albanian Sign Language" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sqm", - "Description": [ - "Suma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sqn", - "Description": [ - "Susquehannock" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sqo", - "Description": [ - "Sorkhei" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sqq", - "Description": [ - "Sou" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sqr", - "Description": [ - "Siculo Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sqs", - "Description": [ - "Sri Lankan Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sqt", - "Description": [ - "Soqotri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "squ", - "Description": [ - "Squamish", - "S\u1E35wx\u0331w\u00FA7mesh sn\u00EDchim" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sqx", - "Description": [ - "Kufr Qassem Sign Language (KQSL)" - ], - "Added": "2021-02-20", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sra", - "Description": [ - "Saruga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "srb", - "Description": [ - "Sora" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "src", - "Description": [ - "Logudorese Sardinian" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "sc", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sre", - "Description": [ - "Sara" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "srf", - "Description": [ - "Nafi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "srg", - "Description": [ - "Sulod" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "srh", - "Description": [ - "Sarikoli" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sri", - "Description": [ - "Siriano" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "srk", - "Description": [ - "Serudung Murut" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "srl", - "Description": [ - "Isirawa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "srm", - "Description": [ - "Saramaccan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "srn", - "Description": [ - "Sranan Tongo" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sro", - "Description": [ - "Campidanese Sardinian" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "sc", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "srq", - "Description": [ - "Sirion\u00F3" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "srr", - "Description": [ - "Serer" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "srs", - "Description": [ - "Tsuut\u0027ina", - "Sarsi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "srt", - "Description": [ - "Sauri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sru", - "Description": [ - "Suru\u00ED" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "srv", - "Description": [ - "Southern Sorsoganon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "srw", - "Description": [ - "Serua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "srx", - "Description": [ - "Sirmauri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sry", - "Description": [ - "Sera" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "srz", - "Description": [ - "Shahmirzadi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ssa", - "Description": [ - "Nilo-Saharan languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ssb", - "Description": [ - "Southern Sama" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ssc", - "Description": [ - "Suba-Simbiti" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ssd", - "Description": [ - "Siroi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sse", - "Description": [ - "Balangingi", - "Bangingih Sama" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ssf", - "Description": [ - "Thao" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ssg", - "Description": [ - "Seimat" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ssh", - "Description": [ - "Shihhi Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ssi", - "Description": [ - "Sansi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ssj", - "Description": [ - "Sausi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ssk", - "Description": [ - "Sunam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ssl", - "Description": [ - "Western Sisaala" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ssm", - "Description": [ - "Semnam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ssn", - "Description": [ - "Waata" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sso", - "Description": [ - "Sissano" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ssp", - "Description": [ - "Spanish Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ssq", - "Description": [ - "So\u0027a" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ssr", - "Description": [ - "Swiss-French Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sss", - "Description": [ - "S\u00F4" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sst", - "Description": [ - "Sinasina" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ssu", - "Description": [ - "Susuami" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ssv", - "Description": [ - "Shark Bay" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ssx", - "Description": [ - "Samberigi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ssy", - "Description": [ - "Saho" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ssz", - "Description": [ - "Sengseng" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sta", - "Description": [ - "Settla" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "stb", - "Description": [ - "Northern Subanen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "std", - "Description": [ - "Sentinel" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ste", - "Description": [ - "Liana-Seti" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "stf", - "Description": [ - "Seta" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "stg", - "Description": [ - "Trieng" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sth", - "Description": [ - "Shelta" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sti", - "Description": [ - "Bulo Stieng" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "stj", - "Description": [ - "Matya Samo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "stk", - "Description": [ - "Arammba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "stl", - "Description": [ - "Stellingwerfs" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "stm", - "Description": [ - "Setaman" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "stn", - "Description": [ - "Owa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sto", - "Description": [ - "Stoney" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "stp", - "Description": [ - "Southeastern Tepehuan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "stq", - "Description": [ - "Saterfriesisch" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "str", - "Description": [ - "Straits Salish" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sts", - "Description": [ - "Shumashti" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "stt", - "Description": [ - "Budeh Stieng" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "stu", - "Description": [ - "Samtao" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "stv", - "Description": [ - "Silt\u0027e" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "stw", - "Description": [ - "Satawalese" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sty", - "Description": [ - "Siberian Tatar" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sua", - "Description": [ - "Sulka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sub", - "Description": [ - "Suku" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "suc", - "Description": [ - "Western Subanon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sue", - "Description": [ - "Suena" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sug", - "Description": [ - "Suganga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sui", - "Description": [ - "Suki" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "suj", - "Description": [ - "Shubi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [ - "see also xsj" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "suk", - "Description": [ - "Sukuma" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sul", - "Description": [ - "Surigaonon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2010-03-11", - "Comments": [ - "see sgd, tgn" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sum", - "Description": [ - "Sumo-Mayangna" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2010-03-11", - "Comments": [ - "see ulw, yan" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "suo", - "Description": [ - "Bouni" - ], - "Added": "2021-02-20", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "suq", - "Description": [ - "Tirmaga-Chai Suri", - "Suri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sur", - "Description": [ - "Mwaghavul" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sus", - "Description": [ - "Susu" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sut", - "Description": [ - "Subtiaba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "suv", - "Description": [ - "Puroik" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "suw", - "Description": [ - "Sumbwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sux", - "Description": [ - "Sumerian" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "suy", - "Description": [ - "Suy\u00E1" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "suz", - "Description": [ - "Sunwar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sva", - "Description": [ - "Svan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "svb", - "Description": [ - "Ulau-Suain" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "svc", - "Description": [ - "Vincentian Creole English" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sve", - "Description": [ - "Serili" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "svk", - "Description": [ - "Slovakian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "svm", - "Description": [ - "Slavomolisano" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "svr", - "Description": [ - "Savara" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2016-05-30", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "svs", - "Description": [ - "Savosavo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "svx", - "Description": [ - "Skalvian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "swb", - "Description": [ - "Maore Comorian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "swc", - "Description": [ - "Congo Swahili" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "sw", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "swf", - "Description": [ - "Sere" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "swg", - "Description": [ - "Swabian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "swh", - "Description": [ - "Swahili (individual language)", - "Kiswahili" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "sw", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "swi", - "Description": [ - "Sui" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "swj", - "Description": [ - "Sira" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "swk", - "Description": [ - "Malawi Sena" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "swl", - "Description": [ - "Swedish Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "swm", - "Description": [ - "Samosa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "swn", - "Description": [ - "Sawknah" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "swo", - "Description": [ - "Shanenawa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "swp", - "Description": [ - "Suau" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "swq", - "Description": [ - "Sharwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "swr", - "Description": [ - "Saweru" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sws", - "Description": [ - "Seluwasan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "swt", - "Description": [ - "Sawila" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "swu", - "Description": [ - "Suwawa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "swv", - "Description": [ - "Shekhawati" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "mwr", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sww", - "Description": [ - "Sowa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "swx", - "Description": [ - "Suruah\u00E1" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "swy", - "Description": [ - "Sarua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sxb", - "Description": [ - "Suba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sxc", - "Description": [ - "Sicanian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sxe", - "Description": [ - "Sighu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sxg", - "Description": [ - "Shuhi", - "Shixing" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sxk", - "Description": [ - "Southern Kalapuya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sxl", - "Description": [ - "Selian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sxm", - "Description": [ - "Samre" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sxn", - "Description": [ - "Sangir" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sxo", - "Description": [ - "Sorothaptic" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sxr", - "Description": [ - "Saaroa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sxs", - "Description": [ - "Sasaru" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sxu", - "Description": [ - "Upper Saxon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sxw", - "Description": [ - "Saxwe Gbe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sya", - "Description": [ - "Siang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "syb", - "Description": [ - "Central Subanen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "syc", - "Description": [ - "Classical Syriac" - ], - "Added": "2007-04-03", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "syd", - "Description": [ - "Samoyedic languages" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "syi", - "Description": [ - "Seki" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "syk", - "Description": [ - "Sukur" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "syl", - "Description": [ - "Sylheti" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sym", - "Description": [ - "Maya Samo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "syn", - "Description": [ - "Senaya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "syo", - "Description": [ - "Suoy" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "syr", - "Description": [ - "Syriac" - ], - "Added": "2005-10-16", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sys", - "Description": [ - "Sinyar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "syw", - "Description": [ - "Kagate" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "syx", - "Description": [ - "Samay" - ], - "Added": "2015-02-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "syy", - "Description": [ - "Al-Sayyid Bedouin Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "sza", - "Description": [ - "Semelai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "szb", - "Description": [ - "Ngalum" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "szc", - "Description": [ - "Semaq Beri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "szd", - "Description": [ - "Seru" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2023-03-17", - "Comments": [], - "Prefix": [], - "PreferredValue": "umi" - }, - { - "Type": "Language", - "SubTag": "sze", - "Description": [ - "Seze" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "szg", - "Description": [ - "Sengele" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "szl", - "Description": [ - "Silesian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "szn", - "Description": [ - "Sula" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "szp", - "Description": [ - "Suabo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "szs", - "Description": [ - "Solomon Islands Sign Language" - ], - "Added": "2017-02-23", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "szv", - "Description": [ - "Isubu", - "Isu (Fako Division)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "szw", - "Description": [ - "Sawai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "szy", - "Description": [ - "Sakizaya" - ], - "Added": "2019-04-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "taa", - "Description": [ - "Lower Tanana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tab", - "Description": [ - "Tabassaran" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tac", - "Description": [ - "Lowland Tarahumara" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tad", - "Description": [ - "Tause" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tae", - "Description": [ - "Tariana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "taf", - "Description": [ - "Tapirap\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tag", - "Description": [ - "Tagoi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tai", - "Description": [ - "Tai languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "taj", - "Description": [ - "Eastern Tamang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tak", - "Description": [ - "Tala" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tal", - "Description": [ - "Tal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tan", - "Description": [ - "Tangale" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tao", - "Description": [ - "Yami" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tap", - "Description": [ - "Taabwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "taq", - "Description": [ - "Tamasheq" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "tmh", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tar", - "Description": [ - "Central Tarahumara" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tas", - "Description": [ - "Tay Boi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tau", - "Description": [ - "Upper Tanana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tav", - "Description": [ - "Tatuyo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "taw", - "Description": [ - "Tai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tax", - "Description": [ - "Tamki" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tay", - "Description": [ - "Atayal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "taz", - "Description": [ - "Tocho" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tba", - "Description": [ - "Aikan\u00E3" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tbb", - "Description": [ - "Tapeba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2020-03-28", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tbc", - "Description": [ - "Takia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tbd", - "Description": [ - "Kaki Ae" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tbe", - "Description": [ - "Tanimbili" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tbf", - "Description": [ - "Mandara" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tbg", - "Description": [ - "North Tairora" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tbh", - "Description": [ - "Dharawal", - "Thurawal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tbi", - "Description": [ - "Gaam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tbj", - "Description": [ - "Tiang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tbk", - "Description": [ - "Calamian Tagbanwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tbl", - "Description": [ - "Tboli" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tbm", - "Description": [ - "Tagbu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tbn", - "Description": [ - "Barro Negro Tunebo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tbo", - "Description": [ - "Tawala" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tbp", - "Description": [ - "Taworta", - "Diebroud" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tbq", - "Description": [ - "Tibeto-Burman languages" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tbr", - "Description": [ - "Tumtum" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tbs", - "Description": [ - "Tanguat" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tbt", - "Description": [ - "Tembo (Kitembo)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tbu", - "Description": [ - "Tubar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tbv", - "Description": [ - "Tobo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tbw", - "Description": [ - "Tagbanwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tbx", - "Description": [ - "Kapin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tby", - "Description": [ - "Tabaru" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tbz", - "Description": [ - "Ditammari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tca", - "Description": [ - "Ticuna" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tcb", - "Description": [ - "Tanacross" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tcc", - "Description": [ - "Datooga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tcd", - "Description": [ - "Tafi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tce", - "Description": [ - "Southern Tutchone" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tcf", - "Description": [ - "Malinaltepec Me\u0027phaa", - "Malinaltepec Tlapanec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tcg", - "Description": [ - "Tamagario" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tch", - "Description": [ - "Turks And Caicos Creole English" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tci", - "Description": [ - "W\u00E1ra" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tck", - "Description": [ - "Tchitchege" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tcl", - "Description": [ - "Taman (Myanmar)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tcm", - "Description": [ - "Tanahmerah" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tcn", - "Description": [ - "Tichurong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tco", - "Description": [ - "Taungyo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tcp", - "Description": [ - "Tawr Chin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tcq", - "Description": [ - "Kaiy" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tcs", - "Description": [ - "Torres Strait Creole", - "Yumplatok" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tct", - "Description": [ - "T\u0027en" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tcu", - "Description": [ - "Southeastern Tarahumara" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tcw", - "Description": [ - "Tecpatl\u00E1n Totonac" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tcx", - "Description": [ - "Toda" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tcy", - "Description": [ - "Tulu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tcz", - "Description": [ - "Thado Chin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tda", - "Description": [ - "Tagdal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tdb", - "Description": [ - "Panchpargania" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tdc", - "Description": [ - "Ember\u00E1-Tad\u00F3" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tdd", - "Description": [ - "Tai N\u00FCa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tde", - "Description": [ - "Tiranige Diga Dogon" - ], - "Added": "2010-03-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tdf", - "Description": [ - "Talieng" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tdg", - "Description": [ - "Western Tamang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tdh", - "Description": [ - "Thulung" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tdi", - "Description": [ - "Tomadino" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tdj", - "Description": [ - "Tajio" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tdk", - "Description": [ - "Tambas" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tdl", - "Description": [ - "Sur" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tdm", - "Description": [ - "Taruma" - ], - "Added": "2016-05-30", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tdn", - "Description": [ - "Tondano" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tdo", - "Description": [ - "Teme" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tdq", - "Description": [ - "Tita" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tdr", - "Description": [ - "Todrah" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tds", - "Description": [ - "Doutai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tdt", - "Description": [ - "Tetun Dili" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tdu", - "Description": [ - "Tempasuk Dusun" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2016-05-30", - "Comments": [], - "Prefix": [], - "PreferredValue": "dtp" - }, - { - "Type": "Language", - "SubTag": "tdv", - "Description": [ - "Toro" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tdx", - "Description": [ - "Tandroy-Mahafaly Malagasy" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "mg", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tdy", - "Description": [ - "Tadyawan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tea", - "Description": [ - "Temiar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "teb", - "Description": [ - "Tetete" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tec", - "Description": [ - "Terik" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "kln", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ted", - "Description": [ - "Tepo Krumen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tee", - "Description": [ - "Huehuetla Tepehua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tef", - "Description": [ - "Teressa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "teg", - "Description": [ - "Teke-Tege" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "teh", - "Description": [ - "Tehuelche" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tei", - "Description": [ - "Torricelli" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tek", - "Description": [ - "Ibali Teke" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tem", - "Description": [ - "Timne" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ten", - "Description": [ - "Tama (Colombia)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "teo", - "Description": [ - "Teso" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tep", - "Description": [ - "Tepecano" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "teq", - "Description": [ - "Temein" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ter", - "Description": [ - "Tereno" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tes", - "Description": [ - "Tengger" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tet", - "Description": [ - "Tetum" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "teu", - "Description": [ - "Soo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tev", - "Description": [ - "Teor" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tew", - "Description": [ - "Tewa (USA)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tex", - "Description": [ - "Tennet" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tey", - "Description": [ - "Tulishi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tez", - "Description": [ - "Tetserret" - ], - "Added": "2018-03-08", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tfi", - "Description": [ - "Tofin Gbe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tfn", - "Description": [ - "Tanaina" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tfo", - "Description": [ - "Tefaro" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tfr", - "Description": [ - "Teribe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tft", - "Description": [ - "Ternate" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tga", - "Description": [ - "Sagalla" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tgb", - "Description": [ - "Tobilung" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tgc", - "Description": [ - "Tigak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tgd", - "Description": [ - "Ciwogai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tge", - "Description": [ - "Eastern Gorkha Tamang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tgf", - "Description": [ - "Chalikha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tgg", - "Description": [ - "Tangga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2013-09-10", - "Comments": [ - "see bjp, hrc, hrw" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tgh", - "Description": [ - "Tobagonian Creole English" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tgi", - "Description": [ - "Lawunuia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tgj", - "Description": [ - "Tagin" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tgn", - "Description": [ - "Tandaganon" - ], - "Added": "2010-03-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tgo", - "Description": [ - "Sudest" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tgp", - "Description": [ - "Tangoa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tgq", - "Description": [ - "Tring" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tgr", - "Description": [ - "Tareng" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tgs", - "Description": [ - "Nume" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tgt", - "Description": [ - "Central Tagbanwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tgu", - "Description": [ - "Tanggu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tgv", - "Description": [ - "Tingui-Boto" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tgw", - "Description": [ - "Tagwana Senoufo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tgx", - "Description": [ - "Tagish" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tgy", - "Description": [ - "Togoyo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tgz", - "Description": [ - "Tagalaka" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "thc", - "Description": [ - "Tai Hang Tong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2016-05-30", - "Comments": [], - "Prefix": [], - "PreferredValue": "tpo" - }, - { - "Type": "Language", - "SubTag": "thd", - "Description": [ - "Kuuk Thaayorre", - "Thayore" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "the", - "Description": [ - "Chitwania Tharu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "thf", - "Description": [ - "Thangmi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "thh", - "Description": [ - "Northern Tarahumara" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "thi", - "Description": [ - "Tai Long" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "thk", - "Description": [ - "Tharaka", - "Kitharaka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "thl", - "Description": [ - "Dangaura Tharu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "thm", - "Description": [ - "Aheu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "thn", - "Description": [ - "Thachanadan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "thp", - "Description": [ - "Thompson", - "N\u0142e\u0294kepmxc\u00EDn", - "Thompson River Salish" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "thq", - "Description": [ - "Kochila Tharu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "thr", - "Description": [ - "Rana Tharu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ths", - "Description": [ - "Thakali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tht", - "Description": [ - "Tahltan", - "T\u0101\u0142t\u0101n" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "thu", - "Description": [ - "Thuri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "thv", - "Description": [ - "Tahaggart Tamahaq" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "tmh", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "thw", - "Description": [ - "Thudam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2020-06-08", - "Comments": [], - "Prefix": [], - "PreferredValue": "ola" - }, - { - "Type": "Language", - "SubTag": "thx", - "Description": [ - "The" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2015-02-12", - "Comments": [], - "Prefix": [], - "PreferredValue": "oyb" - }, - { - "Type": "Language", - "SubTag": "thy", - "Description": [ - "Tha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "thz", - "Description": [ - "Tayart Tamajeq" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "tmh", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tia", - "Description": [ - "Tidikelt Tamazight" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tic", - "Description": [ - "Tira" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tid", - "Description": [ - "Tidong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2016-05-30", - "Comments": [ - "see itd, ntd" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tie", - "Description": [ - "Tingal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2011-08-16", - "Comments": [], - "Prefix": [], - "PreferredValue": "ras" - }, - { - "Type": "Language", - "SubTag": "tif", - "Description": [ - "Tifal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tig", - "Description": [ - "Tigre" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tih", - "Description": [ - "Timugon Murut" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tii", - "Description": [ - "Tiene" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tij", - "Description": [ - "Tilung" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tik", - "Description": [ - "Tikar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "til", - "Description": [ - "Tillamook" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tim", - "Description": [ - "Timbe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tin", - "Description": [ - "Tindi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tio", - "Description": [ - "Teop" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tip", - "Description": [ - "Trimuris" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tiq", - "Description": [ - "Ti\u00E9fo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tis", - "Description": [ - "Masadiit Itneg" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tit", - "Description": [ - "Tinigua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tiu", - "Description": [ - "Adasen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tiv", - "Description": [ - "Tiv" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tiw", - "Description": [ - "Tiwi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tix", - "Description": [ - "Southern Tiwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tiy", - "Description": [ - "Tiruray" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tiz", - "Description": [ - "Tai Hongjin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tja", - "Description": [ - "Tajuasohn" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tjg", - "Description": [ - "Tunjung" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tji", - "Description": [ - "Northern Tujia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tjj", - "Description": [ - "Tjungundji" - ], - "Added": "2019-04-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tjl", - "Description": [ - "Tai Laing" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tjm", - "Description": [ - "Timucua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tjn", - "Description": [ - "Tonjon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tjo", - "Description": [ - "Temacine Tamazight" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tjp", - "Description": [ - "Tjupany" - ], - "Added": "2019-04-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tjs", - "Description": [ - "Southern Tujia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tju", - "Description": [ - "Tjurruru" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tjw", - "Description": [ - "Djabwurrung" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tka", - "Description": [ - "Truk\u00E1" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tkb", - "Description": [ - "Buksa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tkd", - "Description": [ - "Tukudede" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tke", - "Description": [ - "Takwane" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tkf", - "Description": [ - "Tukumanf\u00E9d" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tkg", - "Description": [ - "Tesaka Malagasy" - ], - "Added": "2011-08-16", - "Scope": "None", - "MacroLanguage": "mg", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tkk", - "Description": [ - "Takpa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2011-08-16", - "Comments": [], - "Prefix": [], - "PreferredValue": "twm" - }, - { - "Type": "Language", - "SubTag": "tkl", - "Description": [ - "Tokelau" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tkm", - "Description": [ - "Takelma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tkn", - "Description": [ - "Toku-No-Shima" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tkp", - "Description": [ - "Tikopia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tkq", - "Description": [ - "Tee" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tkr", - "Description": [ - "Tsakhur" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tks", - "Description": [ - "Takestani" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tkt", - "Description": [ - "Kathoriya Tharu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tku", - "Description": [ - "Upper Necaxa Totonac" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tkv", - "Description": [ - "Mur Pano" - ], - "Added": "2014-02-28", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tkw", - "Description": [ - "Teanu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tkx", - "Description": [ - "Tangko" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tkz", - "Description": [ - "Takua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tla", - "Description": [ - "Southwestern Tepehuan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tlb", - "Description": [ - "Tobelo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tlc", - "Description": [ - "Yecuatla Totonac" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tld", - "Description": [ - "Talaud" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tlf", - "Description": [ - "Telefol" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tlg", - "Description": [ - "Tofanma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tlh", - "Description": [ - "Klingon", - "tlhIngan Hol" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tli", - "Description": [ - "Tlingit" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tlj", - "Description": [ - "Talinga-Bwisi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tlk", - "Description": [ - "Taloki" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tll", - "Description": [ - "Tetela" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tlm", - "Description": [ - "Tolomako" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tln", - "Description": [ - "Talondo\u0027" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tlo", - "Description": [ - "Talodi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tlp", - "Description": [ - "Filomena Mata-Coahuitl\u00E1n Totonac" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tlq", - "Description": [ - "Tai Loi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tlr", - "Description": [ - "Talise" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tls", - "Description": [ - "Tambotalo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tlt", - "Description": [ - "Sou Nama", - "Teluti" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tlu", - "Description": [ - "Tulehu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tlv", - "Description": [ - "Taliabu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tlw", - "Description": [ - "South Wemale" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2012-08-12", - "Comments": [], - "Prefix": [], - "PreferredValue": "weo" - }, - { - "Type": "Language", - "SubTag": "tlx", - "Description": [ - "Khehek" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tly", - "Description": [ - "Talysh" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tma", - "Description": [ - "Tama (Chad)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tmb", - "Description": [ - "Katbol", - "Avava" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tmc", - "Description": [ - "Tumak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tmd", - "Description": [ - "Haruai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tme", - "Description": [ - "Trememb\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tmf", - "Description": [ - "Toba-Maskoy" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tmg", - "Description": [ - "Ternate\u00F1o" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tmh", - "Description": [ - "Tamashek" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tmi", - "Description": [ - "Tutuba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tmj", - "Description": [ - "Samarokena" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tmk", - "Description": [ - "Northwestern Tamang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2023-03-17", - "Comments": [], - "Prefix": [], - "PreferredValue": "tdg" - }, - { - "Type": "Language", - "SubTag": "tml", - "Description": [ - "Tamnim Citak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tmm", - "Description": [ - "Tai Thanh" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tmn", - "Description": [ - "Taman (Indonesia)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tmo", - "Description": [ - "Temoq" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tmp", - "Description": [ - "Tai M\u00E8ne" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2016-05-30", - "Comments": [], - "Prefix": [], - "PreferredValue": "tyj" - }, - { - "Type": "Language", - "SubTag": "tmq", - "Description": [ - "Tumleo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tmr", - "Description": [ - "Jewish Babylonian Aramaic (ca. 200-1200 CE)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tms", - "Description": [ - "Tima" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tmt", - "Description": [ - "Tasmate" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tmu", - "Description": [ - "Iau" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tmv", - "Description": [ - "Tembo (Motembo)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tmw", - "Description": [ - "Temuan" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tmy", - "Description": [ - "Tami" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tmz", - "Description": [ - "Tamanaku" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tna", - "Description": [ - "Tacana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tnb", - "Description": [ - "Western Tunebo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tnc", - "Description": [ - "Tanimuca-Retuar\u00E3" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tnd", - "Description": [ - "Angosturas Tunebo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tne", - "Description": [ - "Tinoc Kallahan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2016-05-30", - "Comments": [], - "Prefix": [], - "PreferredValue": "kak" - }, - { - "Type": "Language", - "SubTag": "tnf", - "Description": [ - "Tangshewi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2010-03-11", - "Comments": [], - "Prefix": [], - "PreferredValue": "prs" - }, - { - "Type": "Language", - "SubTag": "tng", - "Description": [ - "Tobanga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tnh", - "Description": [ - "Maiani" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tni", - "Description": [ - "Tandia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tnk", - "Description": [ - "Kwamera" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tnl", - "Description": [ - "Lenakel" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tnm", - "Description": [ - "Tabla" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tnn", - "Description": [ - "North Tanna" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tno", - "Description": [ - "Toromono" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tnp", - "Description": [ - "Whitesands" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tnq", - "Description": [ - "Taino" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tnr", - "Description": [ - "M\u00E9nik" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tns", - "Description": [ - "Tenis" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tnt", - "Description": [ - "Tontemboan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tnu", - "Description": [ - "Tay Khang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tnv", - "Description": [ - "Tangchangya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tnw", - "Description": [ - "Tonsawang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tnx", - "Description": [ - "Tanema" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tny", - "Description": [ - "Tongwe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tnz", - "Description": [ - "Ten\u0027edn" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tob", - "Description": [ - "Toba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "toc", - "Description": [ - "Coyutla Totonac" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tod", - "Description": [ - "Toma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "toe", - "Description": [ - "Tomedes" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2016-05-30", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tof", - "Description": [ - "Gizrra" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tog", - "Description": [ - "Tonga (Nyasa)" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "toh", - "Description": [ - "Gitonga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "toi", - "Description": [ - "Tonga (Zambia)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "toj", - "Description": [ - "Tojolabal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tok", - "Description": [ - "Toki Pona" - ], - "Added": "2022-02-25", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tol", - "Description": [ - "Tolowa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tom", - "Description": [ - "Tombulu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "too", - "Description": [ - "Xicotepec De Ju\u00E1rez Totonac" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "top", - "Description": [ - "Papantla Totonac" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "toq", - "Description": [ - "Toposa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tor", - "Description": [ - "Togbo-Vara Banda" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tos", - "Description": [ - "Highland Totonac" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tou", - "Description": [ - "Tho" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tov", - "Description": [ - "Upper Taromi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tow", - "Description": [ - "Jemez" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tox", - "Description": [ - "Tobian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "toy", - "Description": [ - "Topoiyo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "toz", - "Description": [ - "To" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tpa", - "Description": [ - "Taupota" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tpc", - "Description": [ - "Azoy\u00FA Me\u0027phaa", - "Azoy\u00FA Tlapanec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tpe", - "Description": [ - "Tippera" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tpf", - "Description": [ - "Tarpia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tpg", - "Description": [ - "Kula" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tpi", - "Description": [ - "Tok Pisin" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tpj", - "Description": [ - "Tapiet\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tpk", - "Description": [ - "Tupinikin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tpl", - "Description": [ - "Tlacoapa Me\u0027phaa", - "Tlacoapa Tlapanec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tpm", - "Description": [ - "Tampulma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tpn", - "Description": [ - "Tupinamb\u00E1" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tpo", - "Description": [ - "Tai Pao" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tpp", - "Description": [ - "Pisaflores Tepehua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tpq", - "Description": [ - "Tukpa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tpr", - "Description": [ - "Tupar\u00ED" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tpt", - "Description": [ - "Tlachichilco Tepehua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tpu", - "Description": [ - "Tampuan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tpv", - "Description": [ - "Tanapag" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tpw", - "Description": [ - "Tup\u00ED" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2023-03-17", - "Comments": [], - "Prefix": [], - "PreferredValue": "tpn" - }, - { - "Type": "Language", - "SubTag": "tpx", - "Description": [ - "Acatepec Me\u0027phaa", - "Acatepec Tlapanec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tpy", - "Description": [ - "Trumai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tpz", - "Description": [ - "Tinputz" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tqb", - "Description": [ - "Temb\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tql", - "Description": [ - "Lehali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tqm", - "Description": [ - "Turumsa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tqn", - "Description": [ - "Tenino" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tqo", - "Description": [ - "Toaripi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tqp", - "Description": [ - "Tomoip" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tqq", - "Description": [ - "Tunni" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tqr", - "Description": [ - "Torona" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tqt", - "Description": [ - "Western Totonac" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tqu", - "Description": [ - "Touo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tqw", - "Description": [ - "Tonkawa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tra", - "Description": [ - "Tirahi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "trb", - "Description": [ - "Terebu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "trc", - "Description": [ - "Copala Triqui" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "trd", - "Description": [ - "Turi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tre", - "Description": [ - "East Tarangan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "trf", - "Description": [ - "Trinidadian Creole English" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "trg", - "Description": [ - "Lish\u00E1n Did\u00E1n" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "trh", - "Description": [ - "Turaka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tri", - "Description": [ - "Tri\u00F3" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "trj", - "Description": [ - "Toram" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "trk", - "Description": [ - "Turkic languages" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "trl", - "Description": [ - "Traveller Scottish" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "trm", - "Description": [ - "Tregami" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "trn", - "Description": [ - "Trinitario" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tro", - "Description": [ - "Tarao Naga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "trp", - "Description": [ - "Kok Borok" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "trq", - "Description": [ - "San Mart\u00EDn Itunyoso Triqui" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "trr", - "Description": [ - "Taushiro" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "trs", - "Description": [ - "Chicahuaxtla Triqui" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "trt", - "Description": [ - "Tunggare" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tru", - "Description": [ - "Turoyo", - "Surayt" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "trv", - "Description": [ - "Sediq", - "Seediq", - "Taroko" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "trw", - "Description": [ - "Torwali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "trx", - "Description": [ - "Tringgus-Sembaan Bidayuh" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "try", - "Description": [ - "Turung" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "trz", - "Description": [ - "Tor\u00E1" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tsa", - "Description": [ - "Tsaangi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tsb", - "Description": [ - "Tsamai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tsc", - "Description": [ - "Tswa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tsd", - "Description": [ - "Tsakonian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tse", - "Description": [ - "Tunisian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tsf", - "Description": [ - "Southwestern Tamang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2015-02-12", - "Comments": [], - "Prefix": [], - "PreferredValue": "taj" - }, - { - "Type": "Language", - "SubTag": "tsg", - "Description": [ - "Tausug" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tsh", - "Description": [ - "Tsuvan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tsi", - "Description": [ - "Tsimshian" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tsj", - "Description": [ - "Tshangla" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tsk", - "Description": [ - "Tseku" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tsl", - "Description": [ - "Ts\u0027\u00FCn-Lao" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tsm", - "Description": [ - "Turkish Sign Language", - "T\u00FCrk \u0130\u015Faret Dili" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tsp", - "Description": [ - "Northern Toussian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tsq", - "Description": [ - "Thai Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tsr", - "Description": [ - "Akei" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tss", - "Description": [ - "Taiwan Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tst", - "Description": [ - "Tondi Songway Kiini" - ], - "Added": "2011-08-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tsu", - "Description": [ - "Tsou" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tsv", - "Description": [ - "Tsogo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tsw", - "Description": [ - "Tsishingini" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tsx", - "Description": [ - "Mubami" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tsy", - "Description": [ - "Tebul Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tsz", - "Description": [ - "Purepecha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tta", - "Description": [ - "Tutelo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ttb", - "Description": [ - "Gaa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ttc", - "Description": [ - "Tektiteko" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ttd", - "Description": [ - "Tauade" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tte", - "Description": [ - "Bwanabwana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ttf", - "Description": [ - "Tuotomb" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ttg", - "Description": [ - "Tutong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tth", - "Description": [ - "Upper Ta\u0027oih" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tti", - "Description": [ - "Tobati" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ttj", - "Description": [ - "Tooro" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ttk", - "Description": [ - "Totoro" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ttl", - "Description": [ - "Totela" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ttm", - "Description": [ - "Northern Tutchone" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ttn", - "Description": [ - "Towei" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tto", - "Description": [ - "Lower Ta\u0027oih" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ttp", - "Description": [ - "Tombelala" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ttq", - "Description": [ - "Tawallammat Tamajaq" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "tmh", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ttr", - "Description": [ - "Tera" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tts", - "Description": [ - "Northeastern Thai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ttt", - "Description": [ - "Muslim Tat" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ttu", - "Description": [ - "Torau" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ttv", - "Description": [ - "Titan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ttw", - "Description": [ - "Long Wat" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tty", - "Description": [ - "Sikaritai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ttz", - "Description": [ - "Tsum" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tua", - "Description": [ - "Wiarumus" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tub", - "Description": [ - "T\u00FCbatulabal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tuc", - "Description": [ - "Mutu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tud", - "Description": [ - "Tux\u00E1" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tue", - "Description": [ - "Tuyuca" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tuf", - "Description": [ - "Central Tunebo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tug", - "Description": [ - "Tunia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tuh", - "Description": [ - "Taulil" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tui", - "Description": [ - "Tupuri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tuj", - "Description": [ - "Tugutil" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tul", - "Description": [ - "Tula" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tum", - "Description": [ - "Tumbuka" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tun", - "Description": [ - "Tunica" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tuo", - "Description": [ - "Tucano" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tup", - "Description": [ - "Tupi languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tuq", - "Description": [ - "Tedaga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tus", - "Description": [ - "Tuscarora" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tut", - "Description": [ - "Altaic languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tuu", - "Description": [ - "Tututni" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tuv", - "Description": [ - "Turkana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tuw", - "Description": [ - "Tungus languages" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tux", - "Description": [ - "Tuxin\u00E1wa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tuy", - "Description": [ - "Tugen" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "kln", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tuz", - "Description": [ - "Turka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tva", - "Description": [ - "Vaghua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tvd", - "Description": [ - "Tsuvadi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tve", - "Description": [ - "Te\u0027un" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tvg", - "Description": [ - "Tugunese", - "Batavian Portuguese Creole", - "Mardijker Creole" - ], - "Added": "2026-05-05", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tvi", - "Description": [ - "Tulai" - ], - "Added": "2023-03-17", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tvk", - "Description": [ - "Southeast Ambrym" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tvl", - "Description": [ - "Tuvalu" - ], - "Added": "2005-10-16", - "SuppressScript": "Latn", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tvm", - "Description": [ - "Tela-Masbuar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tvn", - "Description": [ - "Tavoyan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tvo", - "Description": [ - "Tidore" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tvs", - "Description": [ - "Taveta" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tvt", - "Description": [ - "Tutsa Naga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tvu", - "Description": [ - "Tunen" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tvw", - "Description": [ - "Sedoa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tvx", - "Description": [ - "Taivoan" - ], - "Added": "2019-04-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tvy", - "Description": [ - "Timor Pidgin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "twa", - "Description": [ - "Twana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "twb", - "Description": [ - "Western Tawbuid" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "twc", - "Description": [ - "Teshenawa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "twd", - "Description": [ - "Twents" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "twe", - "Description": [ - "Tewa (Indonesia)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "twf", - "Description": [ - "Northern Tiwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "twg", - "Description": [ - "Tereweng" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "twh", - "Description": [ - "Tai D\u00F3n" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "twl", - "Description": [ - "Tawara" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "twm", - "Description": [ - "Tawang Monpa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "twn", - "Description": [ - "Twendi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "two", - "Description": [ - "Tswapong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "twp", - "Description": [ - "Ere" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "twq", - "Description": [ - "Tasawaq" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "twr", - "Description": [ - "Southwestern Tarahumara" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "twt", - "Description": [ - "Turiw\u00E1ra" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "twu", - "Description": [ - "Termanu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tww", - "Description": [ - "Tuwari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "twx", - "Description": [ - "Tewe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "twy", - "Description": [ - "Tawoyan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "txa", - "Description": [ - "Tombonuo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "txb", - "Description": [ - "Tokharian B" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "txc", - "Description": [ - "Tsetsaut" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "txe", - "Description": [ - "Totoli" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "txg", - "Description": [ - "Tangut" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "txh", - "Description": [ - "Thracian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "txi", - "Description": [ - "Ikpeng" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "txj", - "Description": [ - "Tarjumo" - ], - "Added": "2015-02-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "txm", - "Description": [ - "Tomini" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "txn", - "Description": [ - "West Tarangan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "txo", - "Description": [ - "Toto" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "txq", - "Description": [ - "Tii" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "txr", - "Description": [ - "Tartessian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "txs", - "Description": [ - "Tonsea" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "txt", - "Description": [ - "Citak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "txu", - "Description": [ - "Kayap\u00F3" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "txx", - "Description": [ - "Tatana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "txy", - "Description": [ - "Tanosy Malagasy" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "mg", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tya", - "Description": [ - "Tauya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tye", - "Description": [ - "Kyanga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tyh", - "Description": [ - "O\u0027du" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tyi", - "Description": [ - "Teke-Tsaayi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tyj", - "Description": [ - "Tai Do", - "Tai Yo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tyl", - "Description": [ - "Thu Lao" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tyn", - "Description": [ - "Kombai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "typ", - "Description": [ - "Thaypan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tyr", - "Description": [ - "Tai Daeng" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tys", - "Description": [ - "T\u00E0y Sa Pa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tyt", - "Description": [ - "T\u00E0y Tac" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tyu", - "Description": [ - "Kua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tyv", - "Description": [ - "Tuvinian" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tyx", - "Description": [ - "Teke-Tyee" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tyy", - "Description": [ - "Tiyaa" - ], - "Added": "2021-02-20", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tyz", - "Description": [ - "T\u00E0y" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tza", - "Description": [ - "Tanzanian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tzh", - "Description": [ - "Tzeltal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tzj", - "Description": [ - "Tz\u0027utujil" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tzl", - "Description": [ - "Talossan" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tzm", - "Description": [ - "Central Atlas Tamazight" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tzn", - "Description": [ - "Tugun" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tzo", - "Description": [ - "Tzotzil" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "tzx", - "Description": [ - "Tabriak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "uam", - "Description": [ - "Uamu\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "uan", - "Description": [ - "Kuan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "uar", - "Description": [ - "Tairuma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "uba", - "Description": [ - "Ubang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ubi", - "Description": [ - "Ubi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ubl", - "Description": [ - "Buhi\u0027non Bikol" - ], - "Added": "2010-03-11", - "Scope": "None", - "MacroLanguage": "bik", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ubr", - "Description": [ - "Ubir" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ubu", - "Description": [ - "Umbu-Ungu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "uby", - "Description": [ - "Ubykh" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "uda", - "Description": [ - "Uda" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ude", - "Description": [ - "Udihe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "udg", - "Description": [ - "Muduga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "udi", - "Description": [ - "Udi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "udj", - "Description": [ - "Ujir" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "udl", - "Description": [ - "Wuzlam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "udm", - "Description": [ - "Udmurt" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "udu", - "Description": [ - "Uduk" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ues", - "Description": [ - "Kioko" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ufi", - "Description": [ - "Ufim" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "uga", - "Description": [ - "Ugaritic" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ugb", - "Description": [ - "Kuku-Ugbanh" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "uge", - "Description": [ - "Ughele" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ugh", - "Description": [ - "Kubachi" - ], - "Added": "2022-02-25", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ugn", - "Description": [ - "Ugandan Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ugo", - "Description": [ - "Ugong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ugy", - "Description": [ - "Uruguayan Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "uha", - "Description": [ - "Uhami" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "uhn", - "Description": [ - "Damal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "uis", - "Description": [ - "Uisai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "uiv", - "Description": [ - "Iyive" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "uji", - "Description": [ - "Tanjijili" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "uka", - "Description": [ - "Kaburi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ukg", - "Description": [ - "Ukuriguma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ukh", - "Description": [ - "Ukhwejo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "uki", - "Description": [ - "Kui (India)" - ], - "Added": "2020-03-28", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ukk", - "Description": [ - "Muak Sa-aak" - ], - "Added": "2017-02-23", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ukl", - "Description": [ - "Ukrainian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ukp", - "Description": [ - "Ukpe-Bayobiri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ukq", - "Description": [ - "Ukwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "uks", - "Description": [ - "Urub\u00FA-Kaapor Sign Language", - "Kaapor Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "uku", - "Description": [ - "Ukue" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ukv", - "Description": [ - "Kuku" - ], - "Added": "2020-03-28", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ukw", - "Description": [ - "Ukwuani-Aboh-Ndoni" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "uky", - "Description": [ - "Kuuk-Yak" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ula", - "Description": [ - "Fungwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ulb", - "Description": [ - "Ulukwumi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ulc", - "Description": [ - "Ulch" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ule", - "Description": [ - "Lule" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ulf", - "Description": [ - "Usku", - "Afra" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "uli", - "Description": [ - "Ulithian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ulk", - "Description": [ - "Meriam Mir" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ull", - "Description": [ - "Ullatan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ulm", - "Description": [ - "Ulumanda\u0027" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "uln", - "Description": [ - "Unserdeutsch" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ulu", - "Description": [ - "Uma\u0027 Lung" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ulw", - "Description": [ - "Ulwa" - ], - "Added": "2010-03-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "uly", - "Description": [ - "Buli" - ], - "Added": "2023-03-17", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "uma", - "Description": [ - "Umatilla" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "umb", - "Description": [ - "Umbundu" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "umc", - "Description": [ - "Marrucinian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "umd", - "Description": [ - "Umbindhamu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "umg", - "Description": [ - "Morrobalama", - "Umbuygamu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "umi", - "Description": [ - "Ukit" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "umm", - "Description": [ - "Umon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "umn", - "Description": [ - "Makyan Naga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "umo", - "Description": [ - "Umot\u00EDna" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ump", - "Description": [ - "Umpila" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "umr", - "Description": [ - "Umbugarla" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ums", - "Description": [ - "Pendau" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "umu", - "Description": [ - "Munsee" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "del", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "una", - "Description": [ - "North Watut" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "und", - "Description": [ - "Undetermined" - ], - "Added": "2005-10-16", - "Scope": "Special", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "une", - "Description": [ - "Uneme" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ung", - "Description": [ - "Ngarinyin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "uni", - "Description": [ - "Uni" - ], - "Added": "2021-02-20", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "unk", - "Description": [ - "Enawen\u00E9-Naw\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "unm", - "Description": [ - "Unami" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "del", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "unn", - "Description": [ - "Kurnai" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "unp", - "Description": [ - "Worora" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2012-08-12", - "Comments": [ - "see wro, xgu" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "unr", - "Description": [ - "Mundari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "unu", - "Description": [ - "Unubahe" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "unx", - "Description": [ - "Munda" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "unz", - "Description": [ - "Unde Kaili" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "uok", - "Description": [ - "Uokha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2015-02-12", - "Comments": [], - "Prefix": [], - "PreferredValue": "ema" - }, - { - "Type": "Language", - "SubTag": "uon", - "Description": [ - "Kulon" - ], - "Added": "2022-02-25", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "upi", - "Description": [ - "Umeda" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "upv", - "Description": [ - "Uripiv-Wala-Rano-Atchin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ura", - "Description": [ - "Urarina" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "urb", - "Description": [ - "Urub\u00FA-Kaapor", - "Kaapor" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "urc", - "Description": [ - "Urningangg" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ure", - "Description": [ - "Uru" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "urf", - "Description": [ - "Uradhi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "urg", - "Description": [ - "Urigina" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "urh", - "Description": [ - "Urhobo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "uri", - "Description": [ - "Urim" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "urj", - "Description": [ - "Uralic languages" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "urk", - "Description": [ - "Urak Lawoi\u0027" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "url", - "Description": [ - "Urali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "urm", - "Description": [ - "Urapmin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "urn", - "Description": [ - "Uruangnirin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "uro", - "Description": [ - "Ura (Papua New Guinea)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "urp", - "Description": [ - "Uru-Pa-In" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "urr", - "Description": [ - "Lehalurup", - "L\u00F6y\u00F6p" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "urt", - "Description": [ - "Urat" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "uru", - "Description": [ - "Urumi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "urv", - "Description": [ - "Uruava" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "urw", - "Description": [ - "Sop" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "urx", - "Description": [ - "Urimo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ury", - "Description": [ - "Orya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "urz", - "Description": [ - "Uru-Eu-Wau-Wau" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "usa", - "Description": [ - "Usarufa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ush", - "Description": [ - "Ushojo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "usi", - "Description": [ - "Usui" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "usk", - "Description": [ - "Usaghade" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "usp", - "Description": [ - "Uspanteco" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "uss", - "Description": [ - "us-Saare" - ], - "Added": "2019-04-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "usu", - "Description": [ - "Uya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "uta", - "Description": [ - "Otank" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ute", - "Description": [ - "Ute-Southern Paiute" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "uth", - "Description": [ - "ut-Hun" - ], - "Added": "2019-04-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "utp", - "Description": [ - "Amba (Solomon Islands)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "utr", - "Description": [ - "Etulo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "utu", - "Description": [ - "Utu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "uum", - "Description": [ - "Urum" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "uun", - "Description": [ - "Kulon-Pazeh" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2022-02-25", - "Comments": [ - "see pzh, uon" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "uur", - "Description": [ - "Ura (Vanuatu)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "uuu", - "Description": [ - "U" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "uve", - "Description": [ - "West Uvean", - "Fagauvea" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "uvh", - "Description": [ - "Uri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "uvl", - "Description": [ - "Lote" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "uwa", - "Description": [ - "Kuku-Uwanh" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "uya", - "Description": [ - "Doko-Uyanga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "uzn", - "Description": [ - "Northern Uzbek" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "uz", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "uzs", - "Description": [ - "Southern Uzbek" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "uz", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vaa", - "Description": [ - "Vaagri Booli" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vae", - "Description": [ - "Vale" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vaf", - "Description": [ - "Vafsi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vag", - "Description": [ - "Vagla" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vah", - "Description": [ - "Varhadi-Nagpuri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vai", - "Description": [ - "Vai" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vaj", - "Description": [ - "Sekele", - "Northwestern \u01C3Kung", - "Vasekele" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "val", - "Description": [ - "Vehes" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vam", - "Description": [ - "Vanimo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "van", - "Description": [ - "Valman" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vao", - "Description": [ - "Vao" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vap", - "Description": [ - "Vaiphei" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "var", - "Description": [ - "Huarijio" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vas", - "Description": [ - "Vasavi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vau", - "Description": [ - "Vanuma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vav", - "Description": [ - "Varli" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vay", - "Description": [ - "Wayu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vbb", - "Description": [ - "Southeast Babar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vbk", - "Description": [ - "Southwestern Bontok" - ], - "Added": "2010-03-11", - "Scope": "None", - "MacroLanguage": "bnc", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vec", - "Description": [ - "Venetian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ved", - "Description": [ - "Veddah" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vel", - "Description": [ - "Veluws" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vem", - "Description": [ - "Vemgo-Mabas" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "veo", - "Description": [ - "Venture\u00F1o" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vep", - "Description": [ - "Veps" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ver", - "Description": [ - "Mom Jango" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vgr", - "Description": [ - "Vaghri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vgt", - "Description": [ - "Vlaamse Gebarentaal", - "Flemish Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vic", - "Description": [ - "Virgin Islands Creole English" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vid", - "Description": [ - "Vidunda" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vif", - "Description": [ - "Vili" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vig", - "Description": [ - "Viemo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vil", - "Description": [ - "Vilela" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vin", - "Description": [ - "Vinza" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vis", - "Description": [ - "Vishavan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vit", - "Description": [ - "Viti" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "viv", - "Description": [ - "Iduna" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vjk", - "Description": [ - "Bajjika" - ], - "Added": "2023-03-17", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vka", - "Description": [ - "Kariyarra" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vki", - "Description": [ - "Ija-Zuba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2021-02-20", - "Comments": [ - "see vkn, vkz" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vkj", - "Description": [ - "Kujarge" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vkk", - "Description": [ - "Kaur" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vkl", - "Description": [ - "Kulisusu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vkm", - "Description": [ - "Kamakan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vkn", - "Description": [ - "Koro Nulu" - ], - "Added": "2021-02-20", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vko", - "Description": [ - "Kodeoha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vkp", - "Description": [ - "Korlai Creole Portuguese" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vkt", - "Description": [ - "Tenggarong Kutai Malay" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vku", - "Description": [ - "Kurrama" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vkz", - "Description": [ - "Koro Zuba" - ], - "Added": "2021-02-20", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vlp", - "Description": [ - "Valpei" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vls", - "Description": [ - "Vlaams" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vma", - "Description": [ - "Martuyhunira" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vmb", - "Description": [ - "Barbaram" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vmc", - "Description": [ - "Juxtlahuaca Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vmd", - "Description": [ - "Mudu Koraga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vme", - "Description": [ - "East Masela" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vmf", - "Description": [ - "Mainfr\u00E4nkisch" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vmg", - "Description": [ - "Lungalunga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [ - "see also bxf" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vmh", - "Description": [ - "Maraghei" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vmi", - "Description": [ - "Miwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vmj", - "Description": [ - "Ixtayutla Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vmk", - "Description": [ - "Makhuwa-Shirima" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vml", - "Description": [ - "Malgana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vmm", - "Description": [ - "Mitlatongo Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vmp", - "Description": [ - "Soyaltepec Mazatec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vmq", - "Description": [ - "Soyaltepec Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vmr", - "Description": [ - "Marenje" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vms", - "Description": [ - "Moksela" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vmu", - "Description": [ - "Muluridyi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vmv", - "Description": [ - "Valley Maidu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vmw", - "Description": [ - "Makhuwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vmx", - "Description": [ - "Tamazola Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vmy", - "Description": [ - "Ayautla Mazatec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vmz", - "Description": [ - "Mazatl\u00E1n Mazatec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vnk", - "Description": [ - "Vano", - "Lovono" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vnm", - "Description": [ - "Vinmavis", - "Neve\u0027ei" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vnp", - "Description": [ - "Vunapu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vor", - "Description": [ - "Voro" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vot", - "Description": [ - "Votic" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vra", - "Description": [ - "Vera\u0027a" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vro", - "Description": [ - "V\u00F5ro" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "et", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vrs", - "Description": [ - "Varisi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vrt", - "Description": [ - "Burmbar", - "Banam Bay" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vsi", - "Description": [ - "Moldova Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vsl", - "Description": [ - "Venezuelan Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vsn", - "Description": [ - "Vedic Sanskrit" - ], - "Added": "2024-03-04", - "Scope": "None", - "MacroLanguage": "sa", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vsv", - "Description": [ - "Valencian Sign Language", - "Llengua de signes valenciana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vto", - "Description": [ - "Vitou" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vum", - "Description": [ - "Vumbu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vun", - "Description": [ - "Vunjo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vut", - "Description": [ - "Vute" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "vwa", - "Description": [ - "Awa (China)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "waa", - "Description": [ - "Walla Walla" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wab", - "Description": [ - "Yote", - "Wab" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wac", - "Description": [ - "Wasco-Wishram" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wad", - "Description": [ - "Wamesa", - "Wondama" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wae", - "Description": [ - "Walser" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "waf", - "Description": [ - "Wakon\u00E1" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wag", - "Description": [ - "Wa\u0027ema" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wah", - "Description": [ - "Watubela" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wai", - "Description": [ - "Wares" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "waj", - "Description": [ - "Waffa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wak", - "Description": [ - "Wakashan languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wal", - "Description": [ - "Wolaytta", - "Wolaitta" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wam", - "Description": [ - "Wampanoag" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wan", - "Description": [ - "Wan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wao", - "Description": [ - "Wappo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wap", - "Description": [ - "Wapishana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "waq", - "Description": [ - "Wagiman" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "war", - "Description": [ - "Waray (Philippines)" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "was", - "Description": [ - "Washo" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wat", - "Description": [ - "Kaninuwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wau", - "Description": [ - "Waur\u00E1" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wav", - "Description": [ - "Waka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "waw", - "Description": [ - "Waiwai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wax", - "Description": [ - "Watam", - "Marangis" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "way", - "Description": [ - "Wayana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "waz", - "Description": [ - "Wampur" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wba", - "Description": [ - "Warao" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wbb", - "Description": [ - "Wabo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wbe", - "Description": [ - "Waritai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wbf", - "Description": [ - "Wara" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [ - "see also pnl" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wbh", - "Description": [ - "Wanda" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wbi", - "Description": [ - "Vwanji" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wbj", - "Description": [ - "Alagwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wbk", - "Description": [ - "Waigali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wbl", - "Description": [ - "Wakhi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wbm", - "Description": [ - "Wa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wbp", - "Description": [ - "Warlpiri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wbq", - "Description": [ - "Waddar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wbr", - "Description": [ - "Wagdi" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "raj", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wbs", - "Description": [ - "West Bengal Sign Language" - ], - "Added": "2017-02-23", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wbt", - "Description": [ - "Warnman" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wbv", - "Description": [ - "Wajarri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wbw", - "Description": [ - "Woi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wca", - "Description": [ - "Yanom\u00E1mi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wci", - "Description": [ - "Waci Gbe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wdd", - "Description": [ - "Wandji" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wdg", - "Description": [ - "Wadaginam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wdj", - "Description": [ - "Wadjiginy" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wdk", - "Description": [ - "Wadikali" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wdt", - "Description": [ - "Wendat" - ], - "Added": "2022-02-25", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wdu", - "Description": [ - "Wadjigu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wdy", - "Description": [ - "Wadjabangayi" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wea", - "Description": [ - "Wewaw" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wec", - "Description": [ - "W\u00E8 Western" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wed", - "Description": [ - "Wedau" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "weg", - "Description": [ - "Wergaia" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "weh", - "Description": [ - "Weh" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wei", - "Description": [ - "Kiunum" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wem", - "Description": [ - "Weme Gbe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wen", - "Description": [ - "Sorbian languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "weo", - "Description": [ - "Wemale" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wep", - "Description": [ - "Westphalien" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wer", - "Description": [ - "Weri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wes", - "Description": [ - "Cameroon Pidgin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wet", - "Description": [ - "Perai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "weu", - "Description": [ - "Rawngtu Chin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wew", - "Description": [ - "Wejewa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wfg", - "Description": [ - "Yafi", - "Zorop" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wga", - "Description": [ - "Wagaya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wgb", - "Description": [ - "Wagawaga" - ], - "Added": "2010-03-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wgg", - "Description": [ - "Wangkangurru", - "Wangganguru" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wgi", - "Description": [ - "Wahgi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wgo", - "Description": [ - "Waigeo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wgu", - "Description": [ - "Wirangu" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wgw", - "Description": [ - "Wagawaga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2010-03-11", - "Comments": [ - "see wgb, ylb" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wgy", - "Description": [ - "Warrgamay" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wha", - "Description": [ - "Sou Upaa", - "Manusela" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "whg", - "Description": [ - "North Wahgi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "whk", - "Description": [ - "Wahau Kenyah" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "whu", - "Description": [ - "Wahau Kayan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wib", - "Description": [ - "Southern Toussian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wic", - "Description": [ - "Wichita" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wie", - "Description": [ - "Wik-Epa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wif", - "Description": [ - "Wik-Keyangan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wig", - "Description": [ - "Wik Ngathan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wih", - "Description": [ - "Wik-Me\u0027anha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wii", - "Description": [ - "Minidien" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wij", - "Description": [ - "Wik-Iiyanh" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wik", - "Description": [ - "Wikalkan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wil", - "Description": [ - "Wilawila" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wim", - "Description": [ - "Wik-Mungkan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "win", - "Description": [ - "Ho-Chunk" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wir", - "Description": [ - "Wiraf\u00E9d" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wit", - "Description": [ - "Wintu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2013-09-10", - "Comments": [ - "see nol, pwi, wnw" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wiu", - "Description": [ - "Wiru" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wiv", - "Description": [ - "Vitu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wiw", - "Description": [ - "Wirangu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2012-08-12", - "Comments": [ - "see nwo, wgu" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wiy", - "Description": [ - "Wiyot" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wja", - "Description": [ - "Waja" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wji", - "Description": [ - "Warji" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wka", - "Description": [ - "Kw\u0027adza" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wkb", - "Description": [ - "Kumbaran" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wkd", - "Description": [ - "Wakde", - "Mo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wkl", - "Description": [ - "Kalanadi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wkr", - "Description": [ - "Keerray-Woorroong" - ], - "Added": "2019-04-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wku", - "Description": [ - "Kunduvadi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wkw", - "Description": [ - "Wakawaka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wky", - "Description": [ - "Wangkayutyuru" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wla", - "Description": [ - "Walio" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wlc", - "Description": [ - "Mwali Comorian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wle", - "Description": [ - "Wolane" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wlg", - "Description": [ - "Kunbarlang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wlh", - "Description": [ - "Welaun" - ], - "Added": "2020-03-28", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wli", - "Description": [ - "Waioli" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wlk", - "Description": [ - "Wailaki" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wll", - "Description": [ - "Wali (Sudan)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wlm", - "Description": [ - "Middle Welsh" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wlo", - "Description": [ - "Wolio" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wlr", - "Description": [ - "Wailapa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wls", - "Description": [ - "Wallisian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wlu", - "Description": [ - "Wuliwuli" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wlv", - "Description": [ - "Wich\u00ED Lhamt\u00E9s Vejoz" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wlw", - "Description": [ - "Walak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wlx", - "Description": [ - "Wali (Ghana)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wly", - "Description": [ - "Waling" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wma", - "Description": [ - "Mawa (Nigeria)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wmb", - "Description": [ - "Wambaya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wmc", - "Description": [ - "Wamas" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wmd", - "Description": [ - "Mamaind\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wme", - "Description": [ - "Wambule" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wmg", - "Description": [ - "Western Minyag" - ], - "Added": "2021-02-20", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wmh", - "Description": [ - "Waima\u0027a" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wmi", - "Description": [ - "Wamin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wmm", - "Description": [ - "Maiwa (Indonesia)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wmn", - "Description": [ - "Waamwang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wmo", - "Description": [ - "Wom (Papua New Guinea)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wms", - "Description": [ - "Wambon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wmt", - "Description": [ - "Walmajarri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wmw", - "Description": [ - "Mwani" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wmx", - "Description": [ - "Womo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wnb", - "Description": [ - "Mokati" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wnc", - "Description": [ - "Wantoat" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wnd", - "Description": [ - "Wandarang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wne", - "Description": [ - "Waneci" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wng", - "Description": [ - "Wanggom" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wni", - "Description": [ - "Ndzwani Comorian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wnk", - "Description": [ - "Wanukaka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wnm", - "Description": [ - "Wanggamala" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wnn", - "Description": [ - "Wunumara" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wno", - "Description": [ - "Wano" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wnp", - "Description": [ - "Wanap" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wnu", - "Description": [ - "Usan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wnw", - "Description": [ - "Wintu" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wny", - "Description": [ - "Wanyi", - "Waanyi" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "woa", - "Description": [ - "Kuwema", - "Tyaraity" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wob", - "Description": [ - "W\u00E8 Northern" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "woc", - "Description": [ - "Wogeo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wod", - "Description": [ - "Wolani" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "woe", - "Description": [ - "Woleaian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wof", - "Description": [ - "Gambian Wolof" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wog", - "Description": [ - "Wogamusin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "woi", - "Description": [ - "Kamang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wok", - "Description": [ - "Longto" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wom", - "Description": [ - "Wom (Nigeria)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "won", - "Description": [ - "Wongo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "woo", - "Description": [ - "Manombai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wor", - "Description": [ - "Woria" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wos", - "Description": [ - "Hanga Hundi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wow", - "Description": [ - "Wawonii" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "woy", - "Description": [ - "Weyto" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wpc", - "Description": [ - "Maco" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wra", - "Description": [ - "Warapu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2021-02-20", - "Comments": [ - "see bpe, suo, uni" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wrb", - "Description": [ - "Waluwarra", - "Warluwara" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wrd", - "Description": [ - "Warduji" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2022-02-25", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wrg", - "Description": [ - "Warungu", - "Gudjal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wrh", - "Description": [ - "Wiradjuri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wri", - "Description": [ - "Wariyangga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wrk", - "Description": [ - "Garrwa" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wrl", - "Description": [ - "Warlmanpa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wrm", - "Description": [ - "Warumungu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wrn", - "Description": [ - "Warnang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wro", - "Description": [ - "Worrorra" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wrp", - "Description": [ - "Waropen" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wrr", - "Description": [ - "Wardaman" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wrs", - "Description": [ - "Waris" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wru", - "Description": [ - "Waru" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wrv", - "Description": [ - "Waruna" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wrw", - "Description": [ - "Gugu Warra" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wrx", - "Description": [ - "Wae Rana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wry", - "Description": [ - "Merwari" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "mwr", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wrz", - "Description": [ - "Waray (Australia)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wsa", - "Description": [ - "Warembori" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wsg", - "Description": [ - "Adilabad Gondi" - ], - "Added": "2016-05-30", - "Scope": "None", - "MacroLanguage": "gon", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wsi", - "Description": [ - "Wusi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wsk", - "Description": [ - "Waskia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wsr", - "Description": [ - "Owenia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wss", - "Description": [ - "Wasa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wsu", - "Description": [ - "Wasu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wsv", - "Description": [ - "Wotapuri-Katarqalai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wtb", - "Description": [ - "Matambwe" - ], - "Added": "2023-03-17", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wtf", - "Description": [ - "Watiwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wth", - "Description": [ - "Wathawurrung" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wti", - "Description": [ - "Berta" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wtk", - "Description": [ - "Watakataui" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wtm", - "Description": [ - "Mewati" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wtw", - "Description": [ - "Wotu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wua", - "Description": [ - "Wikngenchera" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wub", - "Description": [ - "Wunambal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wud", - "Description": [ - "Wudu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wuh", - "Description": [ - "Wutunhua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wul", - "Description": [ - "Silimo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wum", - "Description": [ - "Wumbvu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wun", - "Description": [ - "Bungu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wur", - "Description": [ - "Wurrugu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wut", - "Description": [ - "Wutung" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wuu", - "Description": [ - "Wu Chinese" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zh", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wuv", - "Description": [ - "Wuvulu-Aua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wux", - "Description": [ - "Wulna" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wuy", - "Description": [ - "Wauyai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wwa", - "Description": [ - "Waama" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wwb", - "Description": [ - "Wakabunga" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wwo", - "Description": [ - "Wetamut", - "Dorig" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wwr", - "Description": [ - "Warrwa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "www", - "Description": [ - "Wawa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wxa", - "Description": [ - "Waxianghua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wxw", - "Description": [ - "Wardandi" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wya", - "Description": [ - "Wyandot" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2022-02-25", - "Comments": [ - "see wdt, wyn" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wyb", - "Description": [ - "Wangaaybuwan-Ngiyambaa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wyi", - "Description": [ - "Woiwurrung" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wym", - "Description": [ - "Wymysorys" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wyn", - "Description": [ - "Wyandot" - ], - "Added": "2022-02-25", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wyr", - "Description": [ - "Wayor\u00F3" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "wyy", - "Description": [ - "Western Fijian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xaa", - "Description": [ - "Andalusian Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xab", - "Description": [ - "Sambe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xac", - "Description": [ - "Kachari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xad", - "Description": [ - "Adai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xae", - "Description": [ - "Aequian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xag", - "Description": [ - "Aghwan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xai", - "Description": [ - "Kaimb\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xaj", - "Description": [ - "Ararandew\u00E1ra" - ], - "Added": "2014-02-28", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xak", - "Description": [ - "M\u00E1ku" - ], - "Added": "2016-05-30", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xal", - "Description": [ - "Kalmyk", - "Oirat" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xam", - "Description": [ - "\u01C0Xam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xan", - "Description": [ - "Xamtanga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xao", - "Description": [ - "Khao" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xap", - "Description": [ - "Apalachee" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xaq", - "Description": [ - "Aquitanian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xar", - "Description": [ - "Karami" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xas", - "Description": [ - "Kamas" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xat", - "Description": [ - "Katawixi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xau", - "Description": [ - "Kauwera" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xav", - "Description": [ - "Xav\u00E1nte" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xaw", - "Description": [ - "Kawaiisu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xay", - "Description": [ - "Kayan Mahakam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xba", - "Description": [ - "Kamba (Brazil)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2016-05-30", - "Comments": [], - "Prefix": [], - "PreferredValue": "cax" - }, - { - "Type": "Language", - "SubTag": "xbb", - "Description": [ - "Lower Burdekin" - ], - "Added": "2010-03-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xbc", - "Description": [ - "Bactrian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xbd", - "Description": [ - "Bindal" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xbe", - "Description": [ - "Bigambal" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xbg", - "Description": [ - "Bunganditj" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xbi", - "Description": [ - "Kombio" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xbj", - "Description": [ - "Birrpayi" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xbm", - "Description": [ - "Middle Breton" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xbn", - "Description": [ - "Kenaboi" - ], - "Added": "2010-03-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xbo", - "Description": [ - "Bolgarian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xbp", - "Description": [ - "Bibbulman" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xbr", - "Description": [ - "Kambera" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xbw", - "Description": [ - "Kambiw\u00E1" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xbx", - "Description": [ - "Kabix\u00ED" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2016-05-30", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xby", - "Description": [ - "Batjala", - "Batyala" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xcb", - "Description": [ - "Cumbric" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xcc", - "Description": [ - "Camunic" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xce", - "Description": [ - "Celtiberian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xcg", - "Description": [ - "Cisalpine Gaulish" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xch", - "Description": [ - "Chemakum", - "Chimakum" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xcl", - "Description": [ - "Classical Armenian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xcm", - "Description": [ - "Comecrudo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xcn", - "Description": [ - "Cotoname" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xco", - "Description": [ - "Chorasmian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xcr", - "Description": [ - "Carian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xct", - "Description": [ - "Classical Tibetan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xcu", - "Description": [ - "Curonian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xcv", - "Description": [ - "Chuvantsy" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xcw", - "Description": [ - "Coahuilteco" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xcy", - "Description": [ - "Cayuse" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xda", - "Description": [ - "Darkinyung" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xdc", - "Description": [ - "Dacian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xdk", - "Description": [ - "Dharuk" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xdm", - "Description": [ - "Edomite" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xdo", - "Description": [ - "Kwandu" - ], - "Added": "2017-02-23", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xdq", - "Description": [ - "Kaitag" - ], - "Added": "2022-02-25", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xdy", - "Description": [ - "Malayic Dayak" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xeb", - "Description": [ - "Eblan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xed", - "Description": [ - "Hdi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xeg", - "Description": [ - "\u01C1Xegwi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xel", - "Description": [ - "Kelo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xem", - "Description": [ - "Kembayan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xep", - "Description": [ - "Epi-Olmec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xer", - "Description": [ - "Xer\u00E9nte" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xes", - "Description": [ - "Kesawai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xet", - "Description": [ - "Xet\u00E1" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xeu", - "Description": [ - "Keoru-Ahia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xfa", - "Description": [ - "Faliscan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xga", - "Description": [ - "Galatian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xgb", - "Description": [ - "Gbin" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xgd", - "Description": [ - "Gudang" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xgf", - "Description": [ - "Gabrielino-Fernande\u00F1o" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xgg", - "Description": [ - "Goreng" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xgi", - "Description": [ - "Garingbal" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xgl", - "Description": [ - "Galindan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xgm", - "Description": [ - "Dharumbal", - "Guwinmal" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xgn", - "Description": [ - "Mongolian languages" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xgr", - "Description": [ - "Garza" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xgu", - "Description": [ - "Unggumi" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xgw", - "Description": [ - "Guwa" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xha", - "Description": [ - "Harami" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xhc", - "Description": [ - "Hunnic" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xhd", - "Description": [ - "Hadrami" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xhe", - "Description": [ - "Khetrani" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "lah", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xhm", - "Description": [ - "Middle Khmer (1400 to 1850 CE)" - ], - "Added": "2022-02-25", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xhr", - "Description": [ - "Hernican" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xht", - "Description": [ - "Hattic" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xhu", - "Description": [ - "Hurrian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xhv", - "Description": [ - "Khua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xia", - "Description": [ - "Xiandao" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2013-09-10", - "Comments": [], - "Prefix": [], - "PreferredValue": "acn" - }, - { - "Type": "Language", - "SubTag": "xib", - "Description": [ - "Iberian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xii", - "Description": [ - "Xiri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xil", - "Description": [ - "Illyrian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xin", - "Description": [ - "Xinca" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xip", - "Description": [ - "Xipin\u00E1wa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2016-05-30", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xir", - "Description": [ - "Xiri\u00E2na" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xis", - "Description": [ - "Kisan" - ], - "Added": "2014-02-28", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xiv", - "Description": [ - "Indus Valley Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xiy", - "Description": [ - "Xipaya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xjb", - "Description": [ - "Minjungbal" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xjt", - "Description": [ - "Jaitmatang" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xka", - "Description": [ - "Kalkoti" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xkb", - "Description": [ - "Northern Nago" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xkc", - "Description": [ - "Kho\u0027ini" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xkd", - "Description": [ - "Mendalam Kayan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xke", - "Description": [ - "Kereho" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xkf", - "Description": [ - "Khengkha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xkg", - "Description": [ - "Kagoro" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xkh", - "Description": [ - "Karahawyana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2016-05-30", - "Comments": [], - "Prefix": [], - "PreferredValue": "waw" - }, - { - "Type": "Language", - "SubTag": "xki", - "Description": [ - "Kenyan Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xkj", - "Description": [ - "Kajali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xkk", - "Description": [ - "Kachok", - "Kaco\u0027" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xkl", - "Description": [ - "Mainstream Kenyah" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xkn", - "Description": [ - "Kayan River Kayan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xko", - "Description": [ - "Kiorr" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xkp", - "Description": [ - "Kabatei" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xkq", - "Description": [ - "Koroni" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xkr", - "Description": [ - "Xakriab\u00E1" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xks", - "Description": [ - "Kumbewaha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xkt", - "Description": [ - "Kantosi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xku", - "Description": [ - "Kaamba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xkv", - "Description": [ - "Kgalagadi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xkw", - "Description": [ - "Kembra" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xkx", - "Description": [ - "Karore" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xky", - "Description": [ - "Uma\u0027 Lasan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xkz", - "Description": [ - "Kurtokha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xla", - "Description": [ - "Kamula" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xlb", - "Description": [ - "Loup B" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xlc", - "Description": [ - "Lycian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xld", - "Description": [ - "Lydian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xle", - "Description": [ - "Lemnian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xlg", - "Description": [ - "Ligurian (Ancient)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xli", - "Description": [ - "Liburnian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xln", - "Description": [ - "Alanic" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xlo", - "Description": [ - "Loup A" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xlp", - "Description": [ - "Lepontic" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xls", - "Description": [ - "Lusitanian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xlu", - "Description": [ - "Cuneiform Luwian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xly", - "Description": [ - "Elymian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xma", - "Description": [ - "Mushungulu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xmb", - "Description": [ - "Mbonga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xmc", - "Description": [ - "Makhuwa-Marrevone" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xmd", - "Description": [ - "Mbudum" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xme", - "Description": [ - "Median" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xmf", - "Description": [ - "Mingrelian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xmg", - "Description": [ - "Mengaka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xmh", - "Description": [ - "Kugu-Muminh" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xmj", - "Description": [ - "Majera" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xmk", - "Description": [ - "Ancient Macedonian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xml", - "Description": [ - "Malaysian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xmm", - "Description": [ - "Manado Malay" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xmn", - "Description": [ - "Manichaean Middle Persian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xmo", - "Description": [ - "Morerebi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xmp", - "Description": [ - "Kuku-Mu\u0027inh" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xmq", - "Description": [ - "Kuku-Mangk" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xmr", - "Description": [ - "Meroitic" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xms", - "Description": [ - "Moroccan Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xmt", - "Description": [ - "Matbat" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xmu", - "Description": [ - "Kamu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xmv", - "Description": [ - "Antankarana Malagasy", - "Tankarana Malagasy" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "mg", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xmw", - "Description": [ - "Tsimihety Malagasy" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "mg", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xmx", - "Description": [ - "Salawati", - "Maden" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xmy", - "Description": [ - "Mayaguduna" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xmz", - "Description": [ - "Mori Bawah" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xna", - "Description": [ - "Ancient North Arabian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xnb", - "Description": [ - "Kanakanabu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xnd", - "Description": [ - "Na-Dene languages" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xng", - "Description": [ - "Middle Mongolian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xnh", - "Description": [ - "Kuanhua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xni", - "Description": [ - "Ngarigu" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xnj", - "Description": [ - "Ngoni (Tanzania)" - ], - "Added": "2021-02-20", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xnk", - "Description": [ - "Nganakarti" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xnm", - "Description": [ - "Ngumbarl" - ], - "Added": "2020-03-28", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xnn", - "Description": [ - "Northern Kankanay" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xno", - "Description": [ - "Anglo-Norman" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xnq", - "Description": [ - "Ngoni (Mozambique)" - ], - "Added": "2021-02-20", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xnr", - "Description": [ - "Kangri" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "doi", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xns", - "Description": [ - "Kanashi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xnt", - "Description": [ - "Narragansett" - ], - "Added": "2010-03-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xnu", - "Description": [ - "Nukunul" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xny", - "Description": [ - "Nyiyaparli" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xnz", - "Description": [ - "Kenzi", - "Mattoki" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xoc", - "Description": [ - "O\u0027chi\u0027chi\u0027" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xod", - "Description": [ - "Kokoda" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xog", - "Description": [ - "Soga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xoi", - "Description": [ - "Kominimung" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xok", - "Description": [ - "Xokleng" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xom", - "Description": [ - "Komo (Sudan)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xon", - "Description": [ - "Konkomba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xoo", - "Description": [ - "Xukur\u00FA" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xop", - "Description": [ - "Kopar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xor", - "Description": [ - "Korubo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xow", - "Description": [ - "Kowaki" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xpa", - "Description": [ - "Pirriya" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xpb", - "Description": [ - "Northeastern Tasmanian", - "Pyemmairrener" - ], - "Added": "2020-03-28", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xpc", - "Description": [ - "Pecheneg" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xpd", - "Description": [ - "Oyster Bay Tasmanian" - ], - "Added": "2020-03-28", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xpe", - "Description": [ - "Liberia Kpelle" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "kpe", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xpf", - "Description": [ - "Southeast Tasmanian", - "Nuenonne" - ], - "Added": "2020-03-28", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xpg", - "Description": [ - "Phrygian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xph", - "Description": [ - "North Midlands Tasmanian", - "Tyerrenoterpanner" - ], - "Added": "2020-03-28", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xpi", - "Description": [ - "Pictish" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xpj", - "Description": [ - "Mpalitjanh" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xpk", - "Description": [ - "Kulina Pano" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xpl", - "Description": [ - "Port Sorell Tasmanian" - ], - "Added": "2020-03-28", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xpm", - "Description": [ - "Pumpokol" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xpn", - "Description": [ - "Kapinaw\u00E1" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xpo", - "Description": [ - "Pochutec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xpp", - "Description": [ - "Puyo-Paekche" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xpq", - "Description": [ - "Mohegan-Pequot" - ], - "Added": "2010-03-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xpr", - "Description": [ - "Parthian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xps", - "Description": [ - "Pisidian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xpt", - "Description": [ - "Punthamara" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xpu", - "Description": [ - "Punic" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xpv", - "Description": [ - "Northern Tasmanian", - "Tommeginne" - ], - "Added": "2020-03-28", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xpw", - "Description": [ - "Northwestern Tasmanian", - "Peerapper" - ], - "Added": "2020-03-28", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xpx", - "Description": [ - "Southwestern Tasmanian", - "Toogee" - ], - "Added": "2020-03-28", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xpy", - "Description": [ - "Puyo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xpz", - "Description": [ - "Bruny Island Tasmanian" - ], - "Added": "2020-03-28", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xqa", - "Description": [ - "Karakhanid" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xqt", - "Description": [ - "Qatabanian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xra", - "Description": [ - "Krah\u00F4" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xrb", - "Description": [ - "Eastern Karaboro" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xrd", - "Description": [ - "Gundungurra" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xre", - "Description": [ - "Kreye" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xrg", - "Description": [ - "Minang" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xri", - "Description": [ - "Krikati-Timbira" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xrm", - "Description": [ - "Armazic" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xrn", - "Description": [ - "Arin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xrq", - "Description": [ - "Karranga" - ], - "Added": "2013-09-10", - "Scope": "None", - "Deprecated": "2020-03-28", - "Comments": [], - "Prefix": [], - "PreferredValue": "dmw" - }, - { - "Type": "Language", - "SubTag": "xrr", - "Description": [ - "Raetic" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xrt", - "Description": [ - "Aranama-Tamique" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xru", - "Description": [ - "Marriammu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xrw", - "Description": [ - "Karawa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xsa", - "Description": [ - "Sabaean" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xsb", - "Description": [ - "Sambal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xsc", - "Description": [ - "Scythian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xsd", - "Description": [ - "Sidetic" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xse", - "Description": [ - "Sempan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xsh", - "Description": [ - "Shamang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xsi", - "Description": [ - "Sio" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xsj", - "Description": [ - "Subi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [ - "see also suj" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xsl", - "Description": [ - "South Slavey" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "den", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xsm", - "Description": [ - "Kasem" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xsn", - "Description": [ - "Sanga (Nigeria)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xso", - "Description": [ - "Solano" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xsp", - "Description": [ - "Silopi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xsq", - "Description": [ - "Makhuwa-Saka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xsr", - "Description": [ - "Sherpa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xss", - "Description": [ - "Assan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2023-03-17", - "Comments": [], - "Prefix": [], - "PreferredValue": "zko" - }, - { - "Type": "Language", - "SubTag": "xsu", - "Description": [ - "Sanum\u00E1" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xsv", - "Description": [ - "Sudovian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xsy", - "Description": [ - "Saisiyat" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xta", - "Description": [ - "Alcozauca Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xtb", - "Description": [ - "Chazumba Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xtc", - "Description": [ - "Katcha-Kadugli-Miri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xtd", - "Description": [ - "Diuxi-Tilantongo Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xte", - "Description": [ - "Ketengban" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xtg", - "Description": [ - "Transalpine Gaulish" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xth", - "Description": [ - "Yitha Yitha" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xti", - "Description": [ - "Sinicahua Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xtj", - "Description": [ - "San Juan Teita Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xtl", - "Description": [ - "Tijaltepec Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xtm", - "Description": [ - "Magdalena Pe\u00F1asco Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xtn", - "Description": [ - "Northern Tlaxiaco Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xto", - "Description": [ - "Tokharian A" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xtp", - "Description": [ - "San Miguel Piedras Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xtq", - "Description": [ - "Tumshuqese" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xtr", - "Description": [ - "Early Tripuri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xts", - "Description": [ - "Sindihui Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xtt", - "Description": [ - "Tacahua Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xtu", - "Description": [ - "Cuyamecalco Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xtv", - "Description": [ - "Thawa" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xtw", - "Description": [ - "Tawand\u00EA" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xty", - "Description": [ - "Yoloxochitl Mixtec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xtz", - "Description": [ - "Tasmanian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2020-03-28", - "Comments": [ - "see xpb, xpd, xpf, xph, xpl, xpv, xpw, xpx, xpz" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xua", - "Description": [ - "Alu Kurumba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xub", - "Description": [ - "Betta Kurumba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xud", - "Description": [ - "Umiida" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xug", - "Description": [ - "Kunigami" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xuj", - "Description": [ - "Jennu Kurumba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xul", - "Description": [ - "Ngunawal", - "Nunukul" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xum", - "Description": [ - "Umbrian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xun", - "Description": [ - "Unggaranggu" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xuo", - "Description": [ - "Kuo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xup", - "Description": [ - "Upper Umpqua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xur", - "Description": [ - "Urartian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xut", - "Description": [ - "Kuthant" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xuu", - "Description": [ - "Kxoe", - "Khwedam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xve", - "Description": [ - "Venetic" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xvi", - "Description": [ - "Kamviri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xvn", - "Description": [ - "Vandalic" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xvo", - "Description": [ - "Volscian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xvs", - "Description": [ - "Vestinian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xwa", - "Description": [ - "Kwaza" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xwc", - "Description": [ - "Woccon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xwd", - "Description": [ - "Wadi Wadi" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xwe", - "Description": [ - "Xwela Gbe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xwg", - "Description": [ - "Kwegu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xwj", - "Description": [ - "Wajuk" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xwk", - "Description": [ - "Wangkumara" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xwl", - "Description": [ - "Western Xwla Gbe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xwo", - "Description": [ - "Written Oirat" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xwr", - "Description": [ - "Kwerba Mamberamo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xwt", - "Description": [ - "Wotjobaluk" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xww", - "Description": [ - "Wemba Wemba" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xxb", - "Description": [ - "Boro (Ghana)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xxk", - "Description": [ - "Ke\u0027o" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xxm", - "Description": [ - "Minkin" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xxr", - "Description": [ - "Korop\u00F3" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xxt", - "Description": [ - "Tambora" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xya", - "Description": [ - "Yaygir" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xyb", - "Description": [ - "Yandjibara" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xyj", - "Description": [ - "Mayi-Yapi" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xyk", - "Description": [ - "Mayi-Kulan" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xyl", - "Description": [ - "Yalakalore" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xyt", - "Description": [ - "Mayi-Thakurti" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xyy", - "Description": [ - "Yorta Yorta" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xzh", - "Description": [ - "Zhang-Zhung" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xzm", - "Description": [ - "Zemgalian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "xzp", - "Description": [ - "Ancient Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yaa", - "Description": [ - "Yaminahua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yab", - "Description": [ - "Yuhup" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yac", - "Description": [ - "Pass Valley Yali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yad", - "Description": [ - "Yagua" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yae", - "Description": [ - "Pum\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yaf", - "Description": [ - "Yaka (Democratic Republic of Congo)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yag", - "Description": [ - "Y\u00E1mana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yah", - "Description": [ - "Yazgulyam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yai", - "Description": [ - "Yagnobi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yaj", - "Description": [ - "Banda-Yangere" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yak", - "Description": [ - "Yakama" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yal", - "Description": [ - "Yalunka" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yam", - "Description": [ - "Yamba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yan", - "Description": [ - "Mayangna" - ], - "Added": "2010-03-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yao", - "Description": [ - "Yao" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yap", - "Description": [ - "Yapese" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yaq", - "Description": [ - "Yaqui" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yar", - "Description": [ - "Yabarana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yas", - "Description": [ - "Nugunu (Cameroon)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yat", - "Description": [ - "Yambeta" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yau", - "Description": [ - "Yuwana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yav", - "Description": [ - "Yangben" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yaw", - "Description": [ - "Yawalapit\u00ED" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yax", - "Description": [ - "Yauma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yay", - "Description": [ - "Agwagwune" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yaz", - "Description": [ - "Lokaa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yba", - "Description": [ - "Yala" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ybb", - "Description": [ - "Yemba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ybd", - "Description": [ - "Yangbye" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2012-08-12", - "Comments": [], - "Prefix": [], - "PreferredValue": "rki" - }, - { - "Type": "Language", - "SubTag": "ybe", - "Description": [ - "West Yugur" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ybh", - "Description": [ - "Yakha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ybi", - "Description": [ - "Yamphu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ybj", - "Description": [ - "Hasha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ybk", - "Description": [ - "Bokha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ybl", - "Description": [ - "Yukuben" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ybm", - "Description": [ - "Yaben" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ybn", - "Description": [ - "Yaba\u00E2na" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ybo", - "Description": [ - "Yabong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ybx", - "Description": [ - "Yawiyo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yby", - "Description": [ - "Yaweyuha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ych", - "Description": [ - "Chesu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ycl", - "Description": [ - "Lolopo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ycn", - "Description": [ - "Yucuna" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ycp", - "Description": [ - "Chepya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ycr", - "Description": [ - "Yilan Creole" - ], - "Added": "2023-03-17", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yda", - "Description": [ - "Yanda" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ydd", - "Description": [ - "Eastern Yiddish" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "yi", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yde", - "Description": [ - "Yangum Dey" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ydg", - "Description": [ - "Yidgha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ydk", - "Description": [ - "Yoidik" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yds", - "Description": [ - "Yiddish Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2015-02-12", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yea", - "Description": [ - "Ravula" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yec", - "Description": [ - "Yeniche" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yee", - "Description": [ - "Yimas" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yei", - "Description": [ - "Yeni" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yej", - "Description": [ - "Yevanic" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yel", - "Description": [ - "Yela" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yen", - "Description": [ - "Yendang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2012-08-12", - "Comments": [ - "see ynq, yot" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yer", - "Description": [ - "Tarok" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yes", - "Description": [ - "Nyankpa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yet", - "Description": [ - "Yetfa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yeu", - "Description": [ - "Yerukula" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yev", - "Description": [ - "Yapunda" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yey", - "Description": [ - "Yeyi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yga", - "Description": [ - "Malyangapa" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ygi", - "Description": [ - "Yiningayi" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ygl", - "Description": [ - "Yangum Gel" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ygm", - "Description": [ - "Yagomi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ygp", - "Description": [ - "Gepo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ygr", - "Description": [ - "Yagaria" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ygs", - "Description": [ - "Yol\u014Bu Sign Language" - ], - "Added": "2014-02-28", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ygu", - "Description": [ - "Yugul" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ygw", - "Description": [ - "Yagwoia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yha", - "Description": [ - "Baha Buyang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yhd", - "Description": [ - "Judeo-Iraqi Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "jrb", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yhl", - "Description": [ - "Hlepho Phowa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yhs", - "Description": [ - "Yan-nha\u014Bu Sign Language" - ], - "Added": "2015-04-17", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yia", - "Description": [ - "Yinggarda" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yif", - "Description": [ - "Ache" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yig", - "Description": [ - "Wusa Nasu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yih", - "Description": [ - "Western Yiddish" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "yi", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yii", - "Description": [ - "Yidiny" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yij", - "Description": [ - "Yindjibarndi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yik", - "Description": [ - "Dongshanba Lalo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yil", - "Description": [ - "Yindjilandji" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yim", - "Description": [ - "Yimchungru Naga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yin", - "Description": [ - "Riang Lai", - "Yinchia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yip", - "Description": [ - "Pholo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yiq", - "Description": [ - "Miqie" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yir", - "Description": [ - "North Awyu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yis", - "Description": [ - "Yis" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yit", - "Description": [ - "Eastern Lalu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yiu", - "Description": [ - "Awu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yiv", - "Description": [ - "Northern Nisu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yix", - "Description": [ - "Axi Yi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yiy", - "Description": [ - "Yir Yoront" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2013-09-10", - "Comments": [ - "see yrm, yyr" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yiz", - "Description": [ - "Azhe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yka", - "Description": [ - "Yakan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ykg", - "Description": [ - "Northern Yukaghir" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ykh", - "Description": [ - "Khamnigan Mongol" - ], - "Added": "2023-03-17", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yki", - "Description": [ - "Yoke" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ykk", - "Description": [ - "Yakaikeke" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ykl", - "Description": [ - "Khlula" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ykm", - "Description": [ - "Kap" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ykn", - "Description": [ - "Kua-nsi" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yko", - "Description": [ - "Iyasa", - "Yasa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ykr", - "Description": [ - "Yekora" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ykt", - "Description": [ - "Kathu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yku", - "Description": [ - "Kuamasi" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yky", - "Description": [ - "Yakoma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yla", - "Description": [ - "Yaul" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ylb", - "Description": [ - "Yaleba" - ], - "Added": "2010-03-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yle", - "Description": [ - "Yele" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ylg", - "Description": [ - "Yelogu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yli", - "Description": [ - "Angguruk Yali" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yll", - "Description": [ - "Yil" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ylm", - "Description": [ - "Limi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yln", - "Description": [ - "Langnian Buyang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ylo", - "Description": [ - "Naluo Yi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ylr", - "Description": [ - "Yalarnnga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ylu", - "Description": [ - "Aribwaung" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yly", - "Description": [ - "Ny\u00E2layu", - "Nyel\u00E2yu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yma", - "Description": [ - "Yamphe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2012-08-12", - "Comments": [], - "Prefix": [], - "PreferredValue": "lrr" - }, - { - "Type": "Language", - "SubTag": "ymb", - "Description": [ - "Yambes" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ymc", - "Description": [ - "Southern Muji" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ymd", - "Description": [ - "Muda" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yme", - "Description": [ - "Yameo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ymg", - "Description": [ - "Yamongeri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ymh", - "Description": [ - "Mili" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ymi", - "Description": [ - "Moji" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ymk", - "Description": [ - "Makwe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yml", - "Description": [ - "Iamalele" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ymm", - "Description": [ - "Maay" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ymn", - "Description": [ - "Yamna", - "Sunum" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ymo", - "Description": [ - "Yangum Mon" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ymp", - "Description": [ - "Yamap" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ymq", - "Description": [ - "Qila Muji" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ymr", - "Description": [ - "Malasar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yms", - "Description": [ - "Mysian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ymt", - "Description": [ - "Mator-Taygi-Karagas" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2015-02-12", - "Comments": [], - "Prefix": [], - "PreferredValue": "mtm" - }, - { - "Type": "Language", - "SubTag": "ymx", - "Description": [ - "Northern Muji" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ymz", - "Description": [ - "Muzi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yna", - "Description": [ - "Aluo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ynb", - "Description": [ - "Yamben" - ], - "Added": "2025-02-06", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ynd", - "Description": [ - "Yandruwandha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yne", - "Description": [ - "Lang\u0027e" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yng", - "Description": [ - "Yango" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ynh", - "Description": [ - "Yangho" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2015-02-12", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ynk", - "Description": [ - "Naukan Yupik" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ynl", - "Description": [ - "Yangulam" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ynn", - "Description": [ - "Yana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yno", - "Description": [ - "Yong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ynq", - "Description": [ - "Yendang" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yns", - "Description": [ - "Yansi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ynu", - "Description": [ - "Yahuna" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yob", - "Description": [ - "Yoba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yog", - "Description": [ - "Yogad" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yoi", - "Description": [ - "Yonaguni" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yok", - "Description": [ - "Yokuts" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yol", - "Description": [ - "Yola" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2026-04-09", - "Comments": [], - "Prefix": [], - "PreferredValue": "enm" - }, - { - "Type": "Language", - "SubTag": "yom", - "Description": [ - "Yombe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yon", - "Description": [ - "Yongkom" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yos", - "Description": [ - "Yos" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2013-09-10", - "Comments": [], - "Prefix": [], - "PreferredValue": "zom" - }, - { - "Type": "Language", - "SubTag": "yot", - "Description": [ - "Yotti" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yox", - "Description": [ - "Yoron" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yoy", - "Description": [ - "Yoy" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ypa", - "Description": [ - "Phala" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ypb", - "Description": [ - "Labo Phowa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ypg", - "Description": [ - "Phola" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yph", - "Description": [ - "Phupha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ypk", - "Description": [ - "Yupik languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ypm", - "Description": [ - "Phuma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ypn", - "Description": [ - "Ani Phowa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ypo", - "Description": [ - "Alo Phola" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ypp", - "Description": [ - "Phupa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ypz", - "Description": [ - "Phuza" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yra", - "Description": [ - "Yerakai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yrb", - "Description": [ - "Yareba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yre", - "Description": [ - "Yaour\u00E9" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yri", - "Description": [ - "Yar\u00ED" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2016-05-30", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yrk", - "Description": [ - "Nenets" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yrl", - "Description": [ - "Nhengatu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yrm", - "Description": [ - "Yirrk-Mel" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yrn", - "Description": [ - "Yerong" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yro", - "Description": [ - "Yaroam\u00EB" - ], - "Added": "2016-05-30", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yrs", - "Description": [ - "Yarsun" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yrw", - "Description": [ - "Yarawata" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yry", - "Description": [ - "Yarluyandi" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ysc", - "Description": [ - "Yassic" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ysd", - "Description": [ - "Samatao" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ysg", - "Description": [ - "Sonaga" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ysl", - "Description": [ - "Yugoslavian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ysm", - "Description": [ - "Myanmar Sign Language" - ], - "Added": "2021-02-20", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ysn", - "Description": [ - "Sani" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yso", - "Description": [ - "Nisi (China)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ysp", - "Description": [ - "Southern Lolopo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ysr", - "Description": [ - "Sirenik Yupik" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yss", - "Description": [ - "Yessan-Mayo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ysy", - "Description": [ - "Sanie" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yta", - "Description": [ - "Talu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ytl", - "Description": [ - "Tanglang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ytp", - "Description": [ - "Thopho" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ytw", - "Description": [ - "Yout Wam" - ], - "Added": "2010-03-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yty", - "Description": [ - "Yatay" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yua", - "Description": [ - "Yucateco", - "Yucatec Maya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yub", - "Description": [ - "Yugambal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yuc", - "Description": [ - "Yuchi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yud", - "Description": [ - "Judeo-Tripolitanian Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "jrb", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yue", - "Description": [ - "Yue Chinese", - "Cantonese" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zh", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yuf", - "Description": [ - "Havasupai-Walapai-Yavapai" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yug", - "Description": [ - "Yug" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yui", - "Description": [ - "Yurut\u00ED" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yuj", - "Description": [ - "Karkar-Yuri" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yuk", - "Description": [ - "Yuki" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yul", - "Description": [ - "Yulu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yum", - "Description": [ - "Quechan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yun", - "Description": [ - "Bena (Nigeria)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yup", - "Description": [ - "Yukpa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yuq", - "Description": [ - "Yuqui" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yur", - "Description": [ - "Yurok" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yut", - "Description": [ - "Yopno" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yuu", - "Description": [ - "Yugh" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2014-02-28", - "Comments": [], - "Prefix": [], - "PreferredValue": "yug" - }, - { - "Type": "Language", - "SubTag": "yuw", - "Description": [ - "Yau (Morobe Province)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yux", - "Description": [ - "Southern Yukaghir" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yuy", - "Description": [ - "East Yugur" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yuz", - "Description": [ - "Yuracare" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yva", - "Description": [ - "Yawa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yvt", - "Description": [ - "Yavitero" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ywa", - "Description": [ - "Kalou" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ywg", - "Description": [ - "Yinhawangka" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ywl", - "Description": [ - "Western Lalu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ywn", - "Description": [ - "Yawanawa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ywq", - "Description": [ - "Wuding-Luquan Yi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ywr", - "Description": [ - "Yawuru" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ywt", - "Description": [ - "Xishanba Lalo", - "Central Lalo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ywu", - "Description": [ - "Wumeng Nasu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yww", - "Description": [ - "Yawarawarga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yxa", - "Description": [ - "Mayawali" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yxg", - "Description": [ - "Yagara" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yxl", - "Description": [ - "Yardliyawarra" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yxm", - "Description": [ - "Yinwum" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yxu", - "Description": [ - "Yuyu" - ], - "Added": "2013-09-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yxy", - "Description": [ - "Yabula Yabula" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yyr", - "Description": [ - "Yir Yoront" - ], - "Added": "2013-09-03", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yyu", - "Description": [ - "Yau (Sandaun Province)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yyz", - "Description": [ - "Ayizi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yzg", - "Description": [ - "E\u0027ma Buyang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "yzk", - "Description": [ - "Zokhuo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zaa", - "Description": [ - "Sierra de Ju\u00E1rez Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zab", - "Description": [ - "Western Tlacolula Valley Zapotec", - "San Juan Guelav\u00EDa Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zac", - "Description": [ - "Ocotl\u00E1n Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zad", - "Description": [ - "Cajonos Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zae", - "Description": [ - "Yareni Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zaf", - "Description": [ - "Ayoquesco Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zag", - "Description": [ - "Zaghawa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zah", - "Description": [ - "Zangwal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zai", - "Description": [ - "Isthmus Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zaj", - "Description": [ - "Zaramo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zak", - "Description": [ - "Zanaki" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zal", - "Description": [ - "Zauzou" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zam", - "Description": [ - "Miahuatl\u00E1n Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zao", - "Description": [ - "Ozolotepec Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zap", - "Description": [ - "Zapotec" - ], - "Added": "2005-10-16", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zaq", - "Description": [ - "Alo\u00E1pam Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zar", - "Description": [ - "Rinc\u00F3n Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zas", - "Description": [ - "Santo Domingo Albarradas Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zat", - "Description": [ - "Tabaa Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zau", - "Description": [ - "Zangskari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zav", - "Description": [ - "Yatzachi Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zaw", - "Description": [ - "Mitla Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zax", - "Description": [ - "Xadani Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zay", - "Description": [ - "Zayse-Zergulla", - "Zaysete" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zaz", - "Description": [ - "Zari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zba", - "Description": [ - "Balaibalan" - ], - "Added": "2020-03-28", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zbc", - "Description": [ - "Central Berawan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zbe", - "Description": [ - "East Berawan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zbl", - "Description": [ - "Blissymbols", - "Bliss", - "Blissymbolics" - ], - "Added": "2007-08-21", - "SuppressScript": "Blis", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zbt", - "Description": [ - "Batui" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zbu", - "Description": [ - "Bu (Bauchi State)" - ], - "Added": "2021-02-20", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zbw", - "Description": [ - "West Berawan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zca", - "Description": [ - "Coatecas Altas Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zcd", - "Description": [ - "Las Delicias Zapotec" - ], - "Added": "2022-02-25", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zch", - "Description": [ - "Central Hongshuihe Zhuang" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "za", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zdj", - "Description": [ - "Ngazidja Comorian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zea", - "Description": [ - "Zeeuws" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zeg", - "Description": [ - "Zenag" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zeh", - "Description": [ - "Eastern Hongshuihe Zhuang" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "za", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zem", - "Description": [ - "Zeem" - ], - "Added": "2023-03-17", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zen", - "Description": [ - "Zenaga" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zga", - "Description": [ - "Kinga" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zgb", - "Description": [ - "Guibei Zhuang" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "za", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zgh", - "Description": [ - "Standard Moroccan Tamazight" - ], - "Added": "2013-01-25", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zgm", - "Description": [ - "Minz Zhuang" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "za", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zgn", - "Description": [ - "Guibian Zhuang" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "za", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zgr", - "Description": [ - "Magori" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zhb", - "Description": [ - "Zhaba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zhd", - "Description": [ - "Dai Zhuang" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "za", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zhi", - "Description": [ - "Zhire" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zhk", - "Description": [ - "Kurdish Sign Language" - ], - "Added": "2026-05-05", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zhn", - "Description": [ - "Nong Zhuang" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "za", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zhw", - "Description": [ - "Zhoa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zhx", - "Description": [ - "Chinese (family)" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zia", - "Description": [ - "Zia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zib", - "Description": [ - "Zimbabwe Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zik", - "Description": [ - "Zimakani" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zil", - "Description": [ - "Zialo" - ], - "Added": "2011-08-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zim", - "Description": [ - "Mesme" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zin", - "Description": [ - "Zinza" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zir", - "Description": [ - "Ziriya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2020-03-28", - "Comments": [], - "Prefix": [], - "PreferredValue": "scv" - }, - { - "Type": "Language", - "SubTag": "ziw", - "Description": [ - "Zigula" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ziz", - "Description": [ - "Zizilivakan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zka", - "Description": [ - "Kaimbulawa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zkb", - "Description": [ - "Koibal" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2023-03-17", - "Comments": [], - "Prefix": [], - "PreferredValue": "kjh" - }, - { - "Type": "Language", - "SubTag": "zkd", - "Description": [ - "Kadu" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zkg", - "Description": [ - "Koguryo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zkh", - "Description": [ - "Khorezmian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zkk", - "Description": [ - "Karankawa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zkn", - "Description": [ - "Kanan" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zko", - "Description": [ - "Kott" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zkp", - "Description": [ - "S\u00E3o Paulo Kaing\u00E1ng" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zkr", - "Description": [ - "Zakhring" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zkt", - "Description": [ - "Kitan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zku", - "Description": [ - "Kaurna" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zkv", - "Description": [ - "Krevinian" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zkz", - "Description": [ - "Khazar" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zla", - "Description": [ - "Zula" - ], - "Added": "2021-02-20", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zle", - "Description": [ - "East Slavic languages" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zlj", - "Description": [ - "Liujiang Zhuang" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "za", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zlm", - "Description": [ - "Malay (individual language)" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zln", - "Description": [ - "Lianshan Zhuang" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "za", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zlq", - "Description": [ - "Liuqian Zhuang" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "za", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zls", - "Description": [ - "South Slavic languages" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zlu", - "Description": [ - "Zul" - ], - "Added": "2023-03-17", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zlw", - "Description": [ - "West Slavic languages" - ], - "Added": "2009-07-29", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zma", - "Description": [ - "Manda (Australia)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zmb", - "Description": [ - "Zimba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zmc", - "Description": [ - "Margany" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zmd", - "Description": [ - "Maridan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zme", - "Description": [ - "Mangerr" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zmf", - "Description": [ - "Mfinu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zmg", - "Description": [ - "Marti Ke" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zmh", - "Description": [ - "Makolkol" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zmi", - "Description": [ - "Negeri Sembilan Malay" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zmj", - "Description": [ - "Maridjabin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zmk", - "Description": [ - "Mandandanyi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zml", - "Description": [ - "Matngala" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zmm", - "Description": [ - "Marimanindji", - "Marramaninyshi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zmn", - "Description": [ - "Mbangwe" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zmo", - "Description": [ - "Molo" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zmp", - "Description": [ - "Mbuun" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zmq", - "Description": [ - "Mituku" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zmr", - "Description": [ - "Maranunggu" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zms", - "Description": [ - "Mbesa" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zmt", - "Description": [ - "Maringarr" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zmu", - "Description": [ - "Muruwari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zmv", - "Description": [ - "Mbariman-Gudhinma" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zmw", - "Description": [ - "Mbo (Democratic Republic of Congo)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zmx", - "Description": [ - "Bomitaba" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zmy", - "Description": [ - "Mariyedi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zmz", - "Description": [ - "Mbandja" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zna", - "Description": [ - "Zan Gula" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "znd", - "Description": [ - "Zande languages" - ], - "Added": "2005-10-16", - "Scope": "Collection", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zne", - "Description": [ - "Zande (individual language)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zng", - "Description": [ - "Mang" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "znk", - "Description": [ - "Manangkari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zns", - "Description": [ - "Mangas" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zoc", - "Description": [ - "Copainal\u00E1 Zoque" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zoh", - "Description": [ - "Chimalapa Zoque" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zom", - "Description": [ - "Zou" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zoo", - "Description": [ - "Asunci\u00F3n Mixtepec Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zoq", - "Description": [ - "Tabasco Zoque" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zor", - "Description": [ - "Ray\u00F3n Zoque" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zos", - "Description": [ - "Francisco Le\u00F3n Zoque" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zpa", - "Description": [ - "Lachiguiri Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zpb", - "Description": [ - "Yautepec Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zpc", - "Description": [ - "Choapan Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zpd", - "Description": [ - "Southeastern Ixtl\u00E1n Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zpe", - "Description": [ - "Petapa Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zpf", - "Description": [ - "San Pedro Quiatoni Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zpg", - "Description": [ - "Guevea De Humboldt Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zph", - "Description": [ - "Totomachapan Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zpi", - "Description": [ - "Santa Mar\u00EDa Quiegolani Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zpj", - "Description": [ - "Quiavicuzas Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zpk", - "Description": [ - "Tlacolulita Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zpl", - "Description": [ - "Lachix\u00EDo Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zpm", - "Description": [ - "Mixtepec Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zpn", - "Description": [ - "Santa In\u00E9s Yatzechi Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zpo", - "Description": [ - "Amatl\u00E1n Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zpp", - "Description": [ - "El Alto Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zpq", - "Description": [ - "Zoogocho Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zpr", - "Description": [ - "Santiago Xanica Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zps", - "Description": [ - "Coatl\u00E1n Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zpt", - "Description": [ - "San Vicente Coatl\u00E1n Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zpu", - "Description": [ - "Yal\u00E1lag Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zpv", - "Description": [ - "Chichicapan Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zpw", - "Description": [ - "Zaniza Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zpx", - "Description": [ - "San Baltazar Loxicha Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zpy", - "Description": [ - "Mazaltepec Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zpz", - "Description": [ - "Texmelucan Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zqe", - "Description": [ - "Qiubei Zhuang" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "za", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zra", - "Description": [ - "Kara (Korea)" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zrg", - "Description": [ - "Mirgan" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zrn", - "Description": [ - "Zerenkel" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zro", - "Description": [ - "Z\u00E1paro" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zrp", - "Description": [ - "Zarphatic" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zrs", - "Description": [ - "Mairasi" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zsa", - "Description": [ - "Sarasira" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zsk", - "Description": [ - "Kaskean" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zsl", - "Description": [ - "Zambian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zsm", - "Description": [ - "Standard Malay" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zsr", - "Description": [ - "Southern Rincon Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zsu", - "Description": [ - "Sukurum" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zte", - "Description": [ - "Elotepec Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ztg", - "Description": [ - "Xanagu\u00EDa Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ztl", - "Description": [ - "Lapagu\u00EDa-Guivini Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ztm", - "Description": [ - "San Agust\u00EDn Mixtepec Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ztn", - "Description": [ - "Santa Catarina Albarradas Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ztp", - "Description": [ - "Loxicha Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ztq", - "Description": [ - "Quioquitani-Quier\u00ED Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zts", - "Description": [ - "Tilquiapan Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ztt", - "Description": [ - "Tejalapan Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ztu", - "Description": [ - "G\u00FCil\u00E1 Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "ztx", - "Description": [ - "Zaachila Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zty", - "Description": [ - "Yatee Zapotec" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zap", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zua", - "Description": [ - "Zeem" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2023-03-17", - "Comments": [ - "see cxh, dsk, dyr, tvi, zem" - ], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zuh", - "Description": [ - "Tokano" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zum", - "Description": [ - "Kumzari" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zun", - "Description": [ - "Zuni" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zuy", - "Description": [ - "Zumaya" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zwa", - "Description": [ - "Zay" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zxx", - "Description": [ - "No linguistic content", - "Not applicable" - ], - "Added": "2006-03-08", - "Scope": "Special", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zyb", - "Description": [ - "Yongbei Zhuang" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "za", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zyg", - "Description": [ - "Yang Zhuang" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "za", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zyj", - "Description": [ - "Youjiang Zhuang" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "za", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zyn", - "Description": [ - "Yongnan Zhuang" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "za", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zyp", - "Description": [ - "Zyphe Chin" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zza", - "Description": [ - "Zaza", - "Dimili", - "Dimli (macrolanguage)", - "Kirdki", - "Kirmanjki (macrolanguage)", - "Zazaki" - ], - "Added": "2006-08-24", - "Scope": "MacroLanguage", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Language", - "SubTag": "zzj", - "Description": [ - "Zuojiang Zhuang" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "za", - "Comments": [], - "Prefix": [] - }, - { - "Type": "ExtLanguage", - "SubTag": "aao", - "Description": [ - "Algerian Saharan Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [ - "ar" - ], - "PreferredValue": "aao" - }, - { - "Type": "ExtLanguage", - "SubTag": "abh", - "Description": [ - "Tajiki Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [ - "ar" - ], - "PreferredValue": "abh" - }, - { - "Type": "ExtLanguage", - "SubTag": "abv", - "Description": [ - "Baharna Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [ - "ar" - ], - "PreferredValue": "abv" - }, - { - "Type": "ExtLanguage", - "SubTag": "acm", - "Description": [ - "Mesopotamian Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [ - "ar" - ], - "PreferredValue": "acm" - }, - { - "Type": "ExtLanguage", - "SubTag": "acq", - "Description": [ - "Ta\u0027izzi-Adeni Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [ - "ar" - ], - "PreferredValue": "acq" - }, - { - "Type": "ExtLanguage", - "SubTag": "acw", - "Description": [ - "Hijazi Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [ - "ar" - ], - "PreferredValue": "acw" - }, - { - "Type": "ExtLanguage", - "SubTag": "acx", - "Description": [ - "Omani Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [ - "ar" - ], - "PreferredValue": "acx" - }, - { - "Type": "ExtLanguage", - "SubTag": "acy", - "Description": [ - "Cypriot Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [ - "ar" - ], - "PreferredValue": "acy" - }, - { - "Type": "ExtLanguage", - "SubTag": "adf", - "Description": [ - "Dhofari Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [ - "ar" - ], - "PreferredValue": "adf" - }, - { - "Type": "ExtLanguage", - "SubTag": "ads", - "Description": [ - "Adamorobe Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "ads" - }, - { - "Type": "ExtLanguage", - "SubTag": "aeb", - "Description": [ - "Tunisian Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [ - "ar" - ], - "PreferredValue": "aeb" - }, - { - "Type": "ExtLanguage", - "SubTag": "aec", - "Description": [ - "Saidi Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [ - "ar" - ], - "PreferredValue": "aec" - }, - { - "Type": "ExtLanguage", - "SubTag": "aed", - "Description": [ - "Argentine Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "aed" - }, - { - "Type": "ExtLanguage", - "SubTag": "aen", - "Description": [ - "Armenian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "aen" - }, - { - "Type": "ExtLanguage", - "SubTag": "afb", - "Description": [ - "Gulf Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [ - "ar" - ], - "PreferredValue": "afb" - }, - { - "Type": "ExtLanguage", - "SubTag": "afg", - "Description": [ - "Afghan Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "afg" - }, - { - "Type": "ExtLanguage", - "SubTag": "ajp", - "Description": [ - "South Levantine Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Deprecated": "2023-03-17", - "Comments": [], - "Prefix": [ - "ar" - ], - "PreferredValue": "ajp" - }, - { - "Type": "ExtLanguage", - "SubTag": "ajs", - "Description": [ - "Algerian Jewish Sign Language" - ], - "Added": "2022-02-25", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "ajs" - }, - { - "Type": "ExtLanguage", - "SubTag": "apc", - "Description": [ - "Levantine Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [ - "ar" - ], - "PreferredValue": "apc" - }, - { - "Type": "ExtLanguage", - "SubTag": "apd", - "Description": [ - "Sudanese Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [ - "ar" - ], - "PreferredValue": "apd" - }, - { - "Type": "ExtLanguage", - "SubTag": "arb", - "Description": [ - "Standard Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [ - "ar" - ], - "PreferredValue": "arb" - }, - { - "Type": "ExtLanguage", - "SubTag": "arq", - "Description": [ - "Algerian Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [ - "ar" - ], - "PreferredValue": "arq" - }, - { - "Type": "ExtLanguage", - "SubTag": "ars", - "Description": [ - "Najdi Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [ - "ar" - ], - "PreferredValue": "ars" - }, - { - "Type": "ExtLanguage", - "SubTag": "ary", - "Description": [ - "Moroccan Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [ - "ar" - ], - "PreferredValue": "ary" - }, - { - "Type": "ExtLanguage", - "SubTag": "arz", - "Description": [ - "Egyptian Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [ - "ar" - ], - "PreferredValue": "arz" - }, - { - "Type": "ExtLanguage", - "SubTag": "ase", - "Description": [ - "American Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "ase" - }, - { - "Type": "ExtLanguage", - "SubTag": "asf", - "Description": [ - "Auslan", - "Australian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "asf" - }, - { - "Type": "ExtLanguage", - "SubTag": "asp", - "Description": [ - "Algerian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "asp" - }, - { - "Type": "ExtLanguage", - "SubTag": "asq", - "Description": [ - "Austrian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "asq" - }, - { - "Type": "ExtLanguage", - "SubTag": "asw", - "Description": [ - "Australian Aborigines Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "asw" - }, - { - "Type": "ExtLanguage", - "SubTag": "auz", - "Description": [ - "Uzbeki Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [ - "ar" - ], - "PreferredValue": "auz" - }, - { - "Type": "ExtLanguage", - "SubTag": "avl", - "Description": [ - "Eastern Egyptian Bedawi Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [ - "ar" - ], - "PreferredValue": "avl" - }, - { - "Type": "ExtLanguage", - "SubTag": "ayh", - "Description": [ - "Hadrami Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [ - "ar" - ], - "PreferredValue": "ayh" - }, - { - "Type": "ExtLanguage", - "SubTag": "ayl", - "Description": [ - "Libyan Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [ - "ar" - ], - "PreferredValue": "ayl" - }, - { - "Type": "ExtLanguage", - "SubTag": "ayn", - "Description": [ - "Sanaani Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [ - "ar" - ], - "PreferredValue": "ayn" - }, - { - "Type": "ExtLanguage", - "SubTag": "ayp", - "Description": [ - "North Mesopotamian Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [ - "ar" - ], - "PreferredValue": "ayp" - }, - { - "Type": "ExtLanguage", - "SubTag": "bbz", - "Description": [ - "Babalia Creole Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Deprecated": "2020-03-28", - "Comments": [], - "Prefix": [ - "ar" - ], - "PreferredValue": "bbz" - }, - { - "Type": "ExtLanguage", - "SubTag": "bfi", - "Description": [ - "British Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "bfi" - }, - { - "Type": "ExtLanguage", - "SubTag": "bfk", - "Description": [ - "Ban Khor Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "bfk" - }, - { - "Type": "ExtLanguage", - "SubTag": "bjn", - "Description": [ - "Banjar" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [ - "ms" - ], - "PreferredValue": "bjn" - }, - { - "Type": "ExtLanguage", - "SubTag": "bog", - "Description": [ - "Bamako Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "bog" - }, - { - "Type": "ExtLanguage", - "SubTag": "bqn", - "Description": [ - "Bulgarian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "bqn" - }, - { - "Type": "ExtLanguage", - "SubTag": "bqy", - "Description": [ - "Bengkala Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "bqy" - }, - { - "Type": "ExtLanguage", - "SubTag": "btj", - "Description": [ - "Bacanese Malay" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [ - "ms" - ], - "PreferredValue": "btj" - }, - { - "Type": "ExtLanguage", - "SubTag": "bve", - "Description": [ - "Berau Malay" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [ - "ms" - ], - "PreferredValue": "bve" - }, - { - "Type": "ExtLanguage", - "SubTag": "bvl", - "Description": [ - "Bolivian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "bvl" - }, - { - "Type": "ExtLanguage", - "SubTag": "bvu", - "Description": [ - "Bukit Malay" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [ - "ms" - ], - "PreferredValue": "bvu" - }, - { - "Type": "ExtLanguage", - "SubTag": "bzs", - "Description": [ - "Brazilian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "bzs" - }, - { - "Type": "ExtLanguage", - "SubTag": "cdo", - "Description": [ - "Min Dong Chinese" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zh", - "Comments": [], - "Prefix": [ - "zh" - ], - "PreferredValue": "cdo" - }, - { - "Type": "ExtLanguage", - "SubTag": "cds", - "Description": [ - "Chadian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "cds" - }, - { - "Type": "ExtLanguage", - "SubTag": "cjy", - "Description": [ - "Jinyu Chinese" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zh", - "Comments": [], - "Prefix": [ - "zh" - ], - "PreferredValue": "cjy" - }, - { - "Type": "ExtLanguage", - "SubTag": "cmn", - "Description": [ - "Mandarin Chinese" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zh", - "Comments": [], - "Prefix": [ - "zh" - ], - "PreferredValue": "cmn" - }, - { - "Type": "ExtLanguage", - "SubTag": "cnp", - "Description": [ - "Northern Ping Chinese", - "Northern Pinghua" - ], - "Added": "2020-03-28", - "Scope": "None", - "MacroLanguage": "zh", - "Comments": [], - "Prefix": [ - "zh" - ], - "PreferredValue": "cnp" - }, - { - "Type": "ExtLanguage", - "SubTag": "coa", - "Description": [ - "Cocos Islands Malay" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [ - "ms" - ], - "PreferredValue": "coa" - }, - { - "Type": "ExtLanguage", - "SubTag": "cpx", - "Description": [ - "Pu-Xian Chinese" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zh", - "Comments": [], - "Prefix": [ - "zh" - ], - "PreferredValue": "cpx" - }, - { - "Type": "ExtLanguage", - "SubTag": "csc", - "Description": [ - "Catalan Sign Language", - "Lengua de se\u00F1as catalana", - "Llengua de Signes Catalana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "csc" - }, - { - "Type": "ExtLanguage", - "SubTag": "csd", - "Description": [ - "Chiangmai Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "csd" - }, - { - "Type": "ExtLanguage", - "SubTag": "cse", - "Description": [ - "Czech Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "cse" - }, - { - "Type": "ExtLanguage", - "SubTag": "csf", - "Description": [ - "Cuba Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "csf" - }, - { - "Type": "ExtLanguage", - "SubTag": "csg", - "Description": [ - "Chilean Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "csg" - }, - { - "Type": "ExtLanguage", - "SubTag": "csl", - "Description": [ - "Chinese Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "csl" - }, - { - "Type": "ExtLanguage", - "SubTag": "csn", - "Description": [ - "Colombian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "csn" - }, - { - "Type": "ExtLanguage", - "SubTag": "csp", - "Description": [ - "Southern Ping Chinese", - "Southern Pinghua" - ], - "Added": "2020-03-28", - "Scope": "None", - "MacroLanguage": "zh", - "Comments": [], - "Prefix": [ - "zh" - ], - "PreferredValue": "csp" - }, - { - "Type": "ExtLanguage", - "SubTag": "csq", - "Description": [ - "Croatia Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "csq" - }, - { - "Type": "ExtLanguage", - "SubTag": "csr", - "Description": [ - "Costa Rican Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "csr" - }, - { - "Type": "ExtLanguage", - "SubTag": "csx", - "Description": [ - "Cambodian Sign Language" - ], - "Added": "2021-02-20", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "csx" - }, - { - "Type": "ExtLanguage", - "SubTag": "czh", - "Description": [ - "Huizhou Chinese" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zh", - "Comments": [], - "Prefix": [ - "zh" - ], - "PreferredValue": "czh" - }, - { - "Type": "ExtLanguage", - "SubTag": "czo", - "Description": [ - "Min Zhong Chinese" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zh", - "Comments": [], - "Prefix": [ - "zh" - ], - "PreferredValue": "czo" - }, - { - "Type": "ExtLanguage", - "SubTag": "doq", - "Description": [ - "Dominican Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "doq" - }, - { - "Type": "ExtLanguage", - "SubTag": "dse", - "Description": [ - "Dutch Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "dse" - }, - { - "Type": "ExtLanguage", - "SubTag": "dsl", - "Description": [ - "Danish Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "dsl" - }, - { - "Type": "ExtLanguage", - "SubTag": "dsz", - "Description": [ - "Mardin Sign Language" - ], - "Added": "2022-02-25", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "dsz" - }, - { - "Type": "ExtLanguage", - "SubTag": "dup", - "Description": [ - "Duano" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [ - "ms" - ], - "PreferredValue": "dup" - }, - { - "Type": "ExtLanguage", - "SubTag": "dyl", - "Description": [ - "Bhutanese Sign Language" - ], - "Added": "2026-04-09", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "dyl" - }, - { - "Type": "ExtLanguage", - "SubTag": "ecs", - "Description": [ - "Ecuadorian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "ecs" - }, - { - "Type": "ExtLanguage", - "SubTag": "ehs", - "Description": [ - "Miyakubo Sign Language" - ], - "Added": "2021-02-20", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "ehs" - }, - { - "Type": "ExtLanguage", - "SubTag": "esl", - "Description": [ - "Egypt Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "esl" - }, - { - "Type": "ExtLanguage", - "SubTag": "esn", - "Description": [ - "Salvadoran Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "esn" - }, - { - "Type": "ExtLanguage", - "SubTag": "eso", - "Description": [ - "Estonian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "eso" - }, - { - "Type": "ExtLanguage", - "SubTag": "eth", - "Description": [ - "Ethiopian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "eth" - }, - { - "Type": "ExtLanguage", - "SubTag": "fcs", - "Description": [ - "Quebec Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "fcs" - }, - { - "Type": "ExtLanguage", - "SubTag": "fse", - "Description": [ - "Finnish Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "fse" - }, - { - "Type": "ExtLanguage", - "SubTag": "fsl", - "Description": [ - "French Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "fsl" - }, - { - "Type": "ExtLanguage", - "SubTag": "fss", - "Description": [ - "Finland-Swedish Sign Language", - "finlandssvenskt teckenspr\u00E5k", - "suomenruotsalainen viittomakieli" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "fss" - }, - { - "Type": "ExtLanguage", - "SubTag": "gan", - "Description": [ - "Gan Chinese" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zh", - "Comments": [], - "Prefix": [ - "zh" - ], - "PreferredValue": "gan" - }, - { - "Type": "ExtLanguage", - "SubTag": "gds", - "Description": [ - "Ghandruk Sign Language" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "gds" - }, - { - "Type": "ExtLanguage", - "SubTag": "gom", - "Description": [ - "Goan Konkani" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "kok", - "Comments": [], - "Prefix": [ - "kok" - ], - "PreferredValue": "gom" - }, - { - "Type": "ExtLanguage", - "SubTag": "gse", - "Description": [ - "Ghanaian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "gse" - }, - { - "Type": "ExtLanguage", - "SubTag": "gsg", - "Description": [ - "German Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "gsg" - }, - { - "Type": "ExtLanguage", - "SubTag": "gsm", - "Description": [ - "Guatemalan Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "gsm" - }, - { - "Type": "ExtLanguage", - "SubTag": "gss", - "Description": [ - "Greek Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "gss" - }, - { - "Type": "ExtLanguage", - "SubTag": "gus", - "Description": [ - "Guinean Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "gus" - }, - { - "Type": "ExtLanguage", - "SubTag": "hab", - "Description": [ - "Hanoi Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "hab" - }, - { - "Type": "ExtLanguage", - "SubTag": "haf", - "Description": [ - "Haiphong Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "haf" - }, - { - "Type": "ExtLanguage", - "SubTag": "hak", - "Description": [ - "Hakka Chinese" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zh", - "Comments": [], - "Prefix": [ - "zh" - ], - "PreferredValue": "hak" - }, - { - "Type": "ExtLanguage", - "SubTag": "hds", - "Description": [ - "Honduras Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "hds" - }, - { - "Type": "ExtLanguage", - "SubTag": "hji", - "Description": [ - "Haji" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [ - "ms" - ], - "PreferredValue": "hji" - }, - { - "Type": "ExtLanguage", - "SubTag": "hks", - "Description": [ - "Hong Kong Sign Language", - "Heung Kong Sau Yue" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "hks" - }, - { - "Type": "ExtLanguage", - "SubTag": "hnm", - "Description": [ - "Hainanese" - ], - "Added": "2024-12-12", - "Scope": "None", - "MacroLanguage": "zh", - "Comments": [], - "Prefix": [ - "zh" - ], - "PreferredValue": "hnm" - }, - { - "Type": "ExtLanguage", - "SubTag": "hos", - "Description": [ - "Ho Chi Minh City Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "hos" - }, - { - "Type": "ExtLanguage", - "SubTag": "hps", - "Description": [ - "Hawai\u0027i Sign Language (HSL)", - "Hawai\u0027i Pidgin Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "hps" - }, - { - "Type": "ExtLanguage", - "SubTag": "hsh", - "Description": [ - "Hungarian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "hsh" - }, - { - "Type": "ExtLanguage", - "SubTag": "hsl", - "Description": [ - "Hausa Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "hsl" - }, - { - "Type": "ExtLanguage", - "SubTag": "hsn", - "Description": [ - "Xiang Chinese" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zh", - "Comments": [], - "Prefix": [ - "zh" - ], - "PreferredValue": "hsn" - }, - { - "Type": "ExtLanguage", - "SubTag": "icl", - "Description": [ - "Icelandic Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "icl" - }, - { - "Type": "ExtLanguage", - "SubTag": "iks", - "Description": [ - "Inuit Sign Language" - ], - "Added": "2015-02-12", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "iks" - }, - { - "Type": "ExtLanguage", - "SubTag": "ils", - "Description": [ - "International Sign" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "ils" - }, - { - "Type": "ExtLanguage", - "SubTag": "inl", - "Description": [ - "Indonesian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "inl" - }, - { - "Type": "ExtLanguage", - "SubTag": "ins", - "Description": [ - "Indian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "ins" - }, - { - "Type": "ExtLanguage", - "SubTag": "ise", - "Description": [ - "Italian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "ise" - }, - { - "Type": "ExtLanguage", - "SubTag": "isg", - "Description": [ - "Irish Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "isg" - }, - { - "Type": "ExtLanguage", - "SubTag": "isr", - "Description": [ - "Israeli Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "isr" - }, - { - "Type": "ExtLanguage", - "SubTag": "jak", - "Description": [ - "Jakun" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [ - "ms" - ], - "PreferredValue": "jak" - }, - { - "Type": "ExtLanguage", - "SubTag": "jax", - "Description": [ - "Jambi Malay" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [ - "ms" - ], - "PreferredValue": "jax" - }, - { - "Type": "ExtLanguage", - "SubTag": "jcs", - "Description": [ - "Jamaican Country Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "jcs" - }, - { - "Type": "ExtLanguage", - "SubTag": "jhs", - "Description": [ - "Jhankot Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "jhs" - }, - { - "Type": "ExtLanguage", - "SubTag": "jks", - "Description": [ - "Amami Koniya Sign Language" - ], - "Added": "2021-02-20", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "jks" - }, - { - "Type": "ExtLanguage", - "SubTag": "jls", - "Description": [ - "Jamaican Sign Language" - ], - "Added": "2010-03-11", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "jls" - }, - { - "Type": "ExtLanguage", - "SubTag": "jos", - "Description": [ - "Jordanian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "jos" - }, - { - "Type": "ExtLanguage", - "SubTag": "jsl", - "Description": [ - "Japanese Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "jsl" - }, - { - "Type": "ExtLanguage", - "SubTag": "jus", - "Description": [ - "Jumla Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "jus" - }, - { - "Type": "ExtLanguage", - "SubTag": "kgi", - "Description": [ - "Selangor Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "kgi" - }, - { - "Type": "ExtLanguage", - "SubTag": "knn", - "Description": [ - "Konkani (individual language)" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "kok", - "Comments": [], - "Prefix": [ - "kok" - ], - "PreferredValue": "knn" - }, - { - "Type": "ExtLanguage", - "SubTag": "kvb", - "Description": [ - "Kubu" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [ - "ms" - ], - "PreferredValue": "kvb" - }, - { - "Type": "ExtLanguage", - "SubTag": "kvk", - "Description": [ - "Korean Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "kvk" - }, - { - "Type": "ExtLanguage", - "SubTag": "kvr", - "Description": [ - "Kerinci" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [ - "ms" - ], - "PreferredValue": "kvr" - }, - { - "Type": "ExtLanguage", - "SubTag": "kxd", - "Description": [ - "Brunei" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [ - "ms" - ], - "PreferredValue": "kxd" - }, - { - "Type": "ExtLanguage", - "SubTag": "lbs", - "Description": [ - "Libyan Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "lbs" - }, - { - "Type": "ExtLanguage", - "SubTag": "lce", - "Description": [ - "Loncong", - "Sekak" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [ - "ms" - ], - "PreferredValue": "lce" - }, - { - "Type": "ExtLanguage", - "SubTag": "lcf", - "Description": [ - "Lubu" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [ - "ms" - ], - "PreferredValue": "lcf" - }, - { - "Type": "ExtLanguage", - "SubTag": "lgs", - "Description": [ - "Guinea-Bissau Sign Language", - "L\u00EDngua Gestual Guineense" - ], - "Added": "2023-03-17", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "lgs" - }, - { - "Type": "ExtLanguage", - "SubTag": "liw", - "Description": [ - "Col" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [ - "ms" - ], - "PreferredValue": "liw" - }, - { - "Type": "ExtLanguage", - "SubTag": "lls", - "Description": [ - "Lithuanian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "lls" - }, - { - "Type": "ExtLanguage", - "SubTag": "lsb", - "Description": [ - "Burundian Sign Language", - "Langue des Signes Burundaise" - ], - "Added": "2021-02-20", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "lsb" - }, - { - "Type": "ExtLanguage", - "SubTag": "lsc", - "Description": [ - "Albarradas Sign Language", - "Lengua de se\u00F1as Albarradas" - ], - "Added": "2022-02-25", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "lsc" - }, - { - "Type": "ExtLanguage", - "SubTag": "lsg", - "Description": [ - "Lyons Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2018-03-08", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "lsg" - }, - { - "Type": "ExtLanguage", - "SubTag": "lsl", - "Description": [ - "Latvian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "lsl" - }, - { - "Type": "ExtLanguage", - "SubTag": "lsn", - "Description": [ - "Tibetan Sign Language" - ], - "Added": "2019-04-16", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "lsn" - }, - { - "Type": "ExtLanguage", - "SubTag": "lso", - "Description": [ - "Laos Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "lso" - }, - { - "Type": "ExtLanguage", - "SubTag": "lsp", - "Description": [ - "Panamanian Sign Language", - "Lengua de Se\u00F1as Paname\u00F1as" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "lsp" - }, - { - "Type": "ExtLanguage", - "SubTag": "lst", - "Description": [ - "Trinidad and Tobago Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "lst" - }, - { - "Type": "ExtLanguage", - "SubTag": "lsv", - "Description": [ - "Sivia Sign Language" - ], - "Added": "2019-04-16", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "lsv" - }, - { - "Type": "ExtLanguage", - "SubTag": "lsw", - "Description": [ - "Seychelles Sign Language", - "Lalang Siny Seselwa", - "Langue des Signes Seychelloise" - ], - "Added": "2022-02-25", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "lsw" - }, - { - "Type": "ExtLanguage", - "SubTag": "lsy", - "Description": [ - "Mauritian Sign Language" - ], - "Added": "2010-03-11", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "lsy" - }, - { - "Type": "ExtLanguage", - "SubTag": "ltg", - "Description": [ - "Latgalian" - ], - "Added": "2010-03-11", - "Scope": "None", - "MacroLanguage": "lv", - "Comments": [], - "Prefix": [ - "lv" - ], - "PreferredValue": "ltg" - }, - { - "Type": "ExtLanguage", - "SubTag": "luh", - "Description": [ - "Leizhou Chinese" - ], - "Added": "2024-12-12", - "Scope": "None", - "MacroLanguage": "zh", - "Comments": [], - "Prefix": [ - "zh" - ], - "PreferredValue": "luh" - }, - { - "Type": "ExtLanguage", - "SubTag": "lvs", - "Description": [ - "Standard Latvian" - ], - "Added": "2010-03-11", - "Scope": "None", - "MacroLanguage": "lv", - "Comments": [], - "Prefix": [ - "lv" - ], - "PreferredValue": "lvs" - }, - { - "Type": "ExtLanguage", - "SubTag": "lws", - "Description": [ - "Malawian Sign Language" - ], - "Added": "2018-03-08", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "lws" - }, - { - "Type": "ExtLanguage", - "SubTag": "lzh", - "Description": [ - "Literary Chinese" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zh", - "Comments": [], - "Prefix": [ - "zh" - ], - "PreferredValue": "lzh" - }, - { - "Type": "ExtLanguage", - "SubTag": "max", - "Description": [ - "North Moluccan Malay" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [ - "ms" - ], - "PreferredValue": "max" - }, - { - "Type": "ExtLanguage", - "SubTag": "mdl", - "Description": [ - "Maltese Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "mdl" - }, - { - "Type": "ExtLanguage", - "SubTag": "meo", - "Description": [ - "Kedah Malay" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [ - "ms" - ], - "PreferredValue": "meo" - }, - { - "Type": "ExtLanguage", - "SubTag": "mfa", - "Description": [ - "Pattani Malay" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [ - "ms" - ], - "PreferredValue": "mfa" - }, - { - "Type": "ExtLanguage", - "SubTag": "mfb", - "Description": [ - "Bangka" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [ - "ms" - ], - "PreferredValue": "mfb" - }, - { - "Type": "ExtLanguage", - "SubTag": "mfs", - "Description": [ - "Mexican Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "mfs" - }, - { - "Type": "ExtLanguage", - "SubTag": "min", - "Description": [ - "Minangkabau" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [ - "ms" - ], - "PreferredValue": "min" - }, - { - "Type": "ExtLanguage", - "SubTag": "mnp", - "Description": [ - "Min Bei Chinese" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zh", - "Comments": [], - "Prefix": [ - "zh" - ], - "PreferredValue": "mnp" - }, - { - "Type": "ExtLanguage", - "SubTag": "mqg", - "Description": [ - "Kota Bangun Kutai Malay" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [ - "ms" - ], - "PreferredValue": "mqg" - }, - { - "Type": "ExtLanguage", - "SubTag": "mre", - "Description": [ - "Martha\u0027s Vineyard Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "mre" - }, - { - "Type": "ExtLanguage", - "SubTag": "msd", - "Description": [ - "Yucatec Maya Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "msd" - }, - { - "Type": "ExtLanguage", - "SubTag": "msi", - "Description": [ - "Sabah Malay" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [ - "ms" - ], - "PreferredValue": "msi" - }, - { - "Type": "ExtLanguage", - "SubTag": "msr", - "Description": [ - "Mongolian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "msr" - }, - { - "Type": "ExtLanguage", - "SubTag": "mui", - "Description": [ - "Musi" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [ - "ms" - ], - "PreferredValue": "mui" - }, - { - "Type": "ExtLanguage", - "SubTag": "mzc", - "Description": [ - "Madagascar Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "mzc" - }, - { - "Type": "ExtLanguage", - "SubTag": "mzg", - "Description": [ - "Monastic Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "mzg" - }, - { - "Type": "ExtLanguage", - "SubTag": "mzy", - "Description": [ - "Mozambican Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "mzy" - }, - { - "Type": "ExtLanguage", - "SubTag": "nan", - "Description": [ - "Min Nan Chinese" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zh", - "Comments": [], - "Prefix": [ - "zh" - ], - "PreferredValue": "nan" - }, - { - "Type": "ExtLanguage", - "SubTag": "nbs", - "Description": [ - "Namibian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "nbs" - }, - { - "Type": "ExtLanguage", - "SubTag": "ncs", - "Description": [ - "Nicaraguan Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "ncs" - }, - { - "Type": "ExtLanguage", - "SubTag": "nsi", - "Description": [ - "Nigerian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "nsi" - }, - { - "Type": "ExtLanguage", - "SubTag": "nsl", - "Description": [ - "Norwegian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "nsl" - }, - { - "Type": "ExtLanguage", - "SubTag": "nsp", - "Description": [ - "Nepalese Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "nsp" - }, - { - "Type": "ExtLanguage", - "SubTag": "nsr", - "Description": [ - "Maritime Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "nsr" - }, - { - "Type": "ExtLanguage", - "SubTag": "nzs", - "Description": [ - "New Zealand Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "nzs" - }, - { - "Type": "ExtLanguage", - "SubTag": "okl", - "Description": [ - "Old Kentish Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "okl" - }, - { - "Type": "ExtLanguage", - "SubTag": "orn", - "Description": [ - "Orang Kanaq" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [ - "ms" - ], - "PreferredValue": "orn" - }, - { - "Type": "ExtLanguage", - "SubTag": "ors", - "Description": [ - "Orang Seletar" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [ - "ms" - ], - "PreferredValue": "ors" - }, - { - "Type": "ExtLanguage", - "SubTag": "pel", - "Description": [ - "Pekal" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [ - "ms" - ], - "PreferredValue": "pel" - }, - { - "Type": "ExtLanguage", - "SubTag": "pga", - "Description": [ - "Sudanese Creole Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [ - "ar" - ], - "PreferredValue": "pga" - }, - { - "Type": "ExtLanguage", - "SubTag": "pgz", - "Description": [ - "Papua New Guinean Sign Language" - ], - "Added": "2016-05-30", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "pgz" - }, - { - "Type": "ExtLanguage", - "SubTag": "pks", - "Description": [ - "Pakistan Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "pks" - }, - { - "Type": "ExtLanguage", - "SubTag": "prl", - "Description": [ - "Peruvian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "prl" - }, - { - "Type": "ExtLanguage", - "SubTag": "prz", - "Description": [ - "Providencia Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "prz" - }, - { - "Type": "ExtLanguage", - "SubTag": "psc", - "Description": [ - "Iranian Sign Language", - "Persian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "psc" - }, - { - "Type": "ExtLanguage", - "SubTag": "psd", - "Description": [ - "Plains Indian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "psd" - }, - { - "Type": "ExtLanguage", - "SubTag": "pse", - "Description": [ - "Central Malay" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [ - "ms" - ], - "PreferredValue": "pse" - }, - { - "Type": "ExtLanguage", - "SubTag": "psg", - "Description": [ - "Penang Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "psg" - }, - { - "Type": "ExtLanguage", - "SubTag": "psl", - "Description": [ - "Puerto Rican Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "psl" - }, - { - "Type": "ExtLanguage", - "SubTag": "pso", - "Description": [ - "Polish Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "pso" - }, - { - "Type": "ExtLanguage", - "SubTag": "psp", - "Description": [ - "Philippine Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "psp" - }, - { - "Type": "ExtLanguage", - "SubTag": "psr", - "Description": [ - "Portuguese Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "psr" - }, - { - "Type": "ExtLanguage", - "SubTag": "pys", - "Description": [ - "Paraguayan Sign Language", - "Lengua de Se\u00F1as del Paraguay" - ], - "Added": "2010-03-11", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "pys" - }, - { - "Type": "ExtLanguage", - "SubTag": "rib", - "Description": [ - "Bribri Sign Language" - ], - "Added": "2022-02-25", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "rib" - }, - { - "Type": "ExtLanguage", - "SubTag": "rms", - "Description": [ - "Romanian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "rms" - }, - { - "Type": "ExtLanguage", - "SubTag": "rnb", - "Description": [ - "Brunca Sign Language" - ], - "Added": "2022-02-25", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "rnb" - }, - { - "Type": "ExtLanguage", - "SubTag": "rsi", - "Description": [ - "Rennellese Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2017-02-23", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "rsi" - }, - { - "Type": "ExtLanguage", - "SubTag": "rsl", - "Description": [ - "Russian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "rsl" - }, - { - "Type": "ExtLanguage", - "SubTag": "rsm", - "Description": [ - "Miriwoong Sign Language" - ], - "Added": "2016-05-30", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "rsm" - }, - { - "Type": "ExtLanguage", - "SubTag": "rsn", - "Description": [ - "Rwandan Sign Language" - ], - "Added": "2022-02-25", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "rsn" - }, - { - "Type": "ExtLanguage", - "SubTag": "sdl", - "Description": [ - "Saudi Arabian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "sdl" - }, - { - "Type": "ExtLanguage", - "SubTag": "sfb", - "Description": [ - "Langue des signes de Belgique Francophone", - "French Belgian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "sfb" - }, - { - "Type": "ExtLanguage", - "SubTag": "sfs", - "Description": [ - "South African Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "sfs" - }, - { - "Type": "ExtLanguage", - "SubTag": "sgg", - "Description": [ - "Swiss-German Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "sgg" - }, - { - "Type": "ExtLanguage", - "SubTag": "sgx", - "Description": [ - "Sierra Leone Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "sgx" - }, - { - "Type": "ExtLanguage", - "SubTag": "shu", - "Description": [ - "Chadian Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [ - "ar" - ], - "PreferredValue": "shu" - }, - { - "Type": "ExtLanguage", - "SubTag": "sjc", - "Description": [ - "Shaojiang Chinese" - ], - "Added": "2024-12-12", - "Scope": "None", - "MacroLanguage": "zh", - "Comments": [], - "Prefix": [ - "zh" - ], - "PreferredValue": "sjc" - }, - { - "Type": "ExtLanguage", - "SubTag": "slf", - "Description": [ - "Swiss-Italian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "slf" - }, - { - "Type": "ExtLanguage", - "SubTag": "sls", - "Description": [ - "Singapore Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "sls" - }, - { - "Type": "ExtLanguage", - "SubTag": "sqk", - "Description": [ - "Albanian Sign Language" - ], - "Added": "2012-08-12", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "sqk" - }, - { - "Type": "ExtLanguage", - "SubTag": "sqs", - "Description": [ - "Sri Lankan Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "sqs" - }, - { - "Type": "ExtLanguage", - "SubTag": "sqx", - "Description": [ - "Kufr Qassem Sign Language (KQSL)" - ], - "Added": "2021-02-20", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "sqx" - }, - { - "Type": "ExtLanguage", - "SubTag": "ssh", - "Description": [ - "Shihhi Arabic" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ar", - "Comments": [], - "Prefix": [ - "ar" - ], - "PreferredValue": "ssh" - }, - { - "Type": "ExtLanguage", - "SubTag": "ssp", - "Description": [ - "Spanish Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "ssp" - }, - { - "Type": "ExtLanguage", - "SubTag": "ssr", - "Description": [ - "Swiss-French Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "ssr" - }, - { - "Type": "ExtLanguage", - "SubTag": "svk", - "Description": [ - "Slovakian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "svk" - }, - { - "Type": "ExtLanguage", - "SubTag": "swc", - "Description": [ - "Congo Swahili" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "sw", - "Comments": [], - "Prefix": [ - "sw" - ], - "PreferredValue": "swc" - }, - { - "Type": "ExtLanguage", - "SubTag": "swh", - "Description": [ - "Swahili (individual language)", - "Kiswahili" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "sw", - "Comments": [], - "Prefix": [ - "sw" - ], - "PreferredValue": "swh" - }, - { - "Type": "ExtLanguage", - "SubTag": "swl", - "Description": [ - "Swedish Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "swl" - }, - { - "Type": "ExtLanguage", - "SubTag": "syy", - "Description": [ - "Al-Sayyid Bedouin Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "syy" - }, - { - "Type": "ExtLanguage", - "SubTag": "szs", - "Description": [ - "Solomon Islands Sign Language" - ], - "Added": "2017-02-23", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "szs" - }, - { - "Type": "ExtLanguage", - "SubTag": "tmw", - "Description": [ - "Temuan" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [ - "ms" - ], - "PreferredValue": "tmw" - }, - { - "Type": "ExtLanguage", - "SubTag": "tse", - "Description": [ - "Tunisian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "tse" - }, - { - "Type": "ExtLanguage", - "SubTag": "tsm", - "Description": [ - "Turkish Sign Language", - "T\u00FCrk \u0130\u015Faret Dili" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "tsm" - }, - { - "Type": "ExtLanguage", - "SubTag": "tsq", - "Description": [ - "Thai Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "tsq" - }, - { - "Type": "ExtLanguage", - "SubTag": "tss", - "Description": [ - "Taiwan Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "tss" - }, - { - "Type": "ExtLanguage", - "SubTag": "tsy", - "Description": [ - "Tebul Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "tsy" - }, - { - "Type": "ExtLanguage", - "SubTag": "tza", - "Description": [ - "Tanzanian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "tza" - }, - { - "Type": "ExtLanguage", - "SubTag": "ugn", - "Description": [ - "Ugandan Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "ugn" - }, - { - "Type": "ExtLanguage", - "SubTag": "ugy", - "Description": [ - "Uruguayan Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "ugy" - }, - { - "Type": "ExtLanguage", - "SubTag": "ukl", - "Description": [ - "Ukrainian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "ukl" - }, - { - "Type": "ExtLanguage", - "SubTag": "uks", - "Description": [ - "Urub\u00FA-Kaapor Sign Language", - "Kaapor Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "uks" - }, - { - "Type": "ExtLanguage", - "SubTag": "urk", - "Description": [ - "Urak Lawoi\u0027" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [ - "ms" - ], - "PreferredValue": "urk" - }, - { - "Type": "ExtLanguage", - "SubTag": "uzn", - "Description": [ - "Northern Uzbek" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "uz", - "Comments": [], - "Prefix": [ - "uz" - ], - "PreferredValue": "uzn" - }, - { - "Type": "ExtLanguage", - "SubTag": "uzs", - "Description": [ - "Southern Uzbek" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "uz", - "Comments": [], - "Prefix": [ - "uz" - ], - "PreferredValue": "uzs" - }, - { - "Type": "ExtLanguage", - "SubTag": "vgt", - "Description": [ - "Vlaamse Gebarentaal", - "Flemish Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "vgt" - }, - { - "Type": "ExtLanguage", - "SubTag": "vkk", - "Description": [ - "Kaur" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [ - "ms" - ], - "PreferredValue": "vkk" - }, - { - "Type": "ExtLanguage", - "SubTag": "vkt", - "Description": [ - "Tenggarong Kutai Malay" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [ - "ms" - ], - "PreferredValue": "vkt" - }, - { - "Type": "ExtLanguage", - "SubTag": "vsi", - "Description": [ - "Moldova Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "vsi" - }, - { - "Type": "ExtLanguage", - "SubTag": "vsl", - "Description": [ - "Venezuelan Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "vsl" - }, - { - "Type": "ExtLanguage", - "SubTag": "vsv", - "Description": [ - "Valencian Sign Language", - "Llengua de signes valenciana" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "vsv" - }, - { - "Type": "ExtLanguage", - "SubTag": "wbs", - "Description": [ - "West Bengal Sign Language" - ], - "Added": "2017-02-23", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "wbs" - }, - { - "Type": "ExtLanguage", - "SubTag": "wuu", - "Description": [ - "Wu Chinese" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zh", - "Comments": [], - "Prefix": [ - "zh" - ], - "PreferredValue": "wuu" - }, - { - "Type": "ExtLanguage", - "SubTag": "xki", - "Description": [ - "Kenyan Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "xki" - }, - { - "Type": "ExtLanguage", - "SubTag": "xml", - "Description": [ - "Malaysian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "xml" - }, - { - "Type": "ExtLanguage", - "SubTag": "xmm", - "Description": [ - "Manado Malay" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [ - "ms" - ], - "PreferredValue": "xmm" - }, - { - "Type": "ExtLanguage", - "SubTag": "xms", - "Description": [ - "Moroccan Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "xms" - }, - { - "Type": "ExtLanguage", - "SubTag": "yds", - "Description": [ - "Yiddish Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Deprecated": "2015-02-12", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "yds" - }, - { - "Type": "ExtLanguage", - "SubTag": "ygs", - "Description": [ - "Yol\u014Bu Sign Language" - ], - "Added": "2014-02-28", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "ygs" - }, - { - "Type": "ExtLanguage", - "SubTag": "yhs", - "Description": [ - "Yan-nha\u014Bu Sign Language" - ], - "Added": "2015-04-17", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "yhs" - }, - { - "Type": "ExtLanguage", - "SubTag": "ysl", - "Description": [ - "Yugoslavian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "ysl" - }, - { - "Type": "ExtLanguage", - "SubTag": "ysm", - "Description": [ - "Myanmar Sign Language" - ], - "Added": "2021-02-20", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "ysm" - }, - { - "Type": "ExtLanguage", - "SubTag": "yue", - "Description": [ - "Yue Chinese", - "Cantonese" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "zh", - "Comments": [], - "Prefix": [ - "zh" - ], - "PreferredValue": "yue" - }, - { - "Type": "ExtLanguage", - "SubTag": "zhk", - "Description": [ - "Kurdish Sign Language" - ], - "Added": "2026-05-05", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "zhk" - }, - { - "Type": "ExtLanguage", - "SubTag": "zib", - "Description": [ - "Zimbabwe Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "zib" - }, - { - "Type": "ExtLanguage", - "SubTag": "zlm", - "Description": [ - "Malay (individual language)" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [ - "ms" - ], - "PreferredValue": "zlm" - }, - { - "Type": "ExtLanguage", - "SubTag": "zmi", - "Description": [ - "Negeri Sembilan Malay" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [ - "ms" - ], - "PreferredValue": "zmi" - }, - { - "Type": "ExtLanguage", - "SubTag": "zsl", - "Description": [ - "Zambian Sign Language" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sgn" - ], - "PreferredValue": "zsl" - }, - { - "Type": "ExtLanguage", - "SubTag": "zsm", - "Description": [ - "Standard Malay" - ], - "Added": "2009-07-29", - "Scope": "None", - "MacroLanguage": "ms", - "Comments": [], - "Prefix": [ - "ms" - ], - "PreferredValue": "zsm" - }, - { - "Type": "Script", - "SubTag": "Adlm", - "Description": [ - "Adlam" - ], - "Added": "2014-12-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Afak", - "Description": [ - "Afaka" - ], - "Added": "2011-01-07", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Aghb", - "Description": [ - "Caucasian Albanian" - ], - "Added": "2012-11-01", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Ahom", - "Description": [ - "Ahom", - "Tai Ahom" - ], - "Added": "2013-12-02", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Arab", - "Description": [ - "Arabic" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Aran", - "Description": [ - "Arabic (Nastaliq variant)" - ], - "Added": "2014-12-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Armi", - "Description": [ - "Imperial Aramaic" - ], - "Added": "2007-12-05", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Armn", - "Description": [ - "Armenian" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Avst", - "Description": [ - "Avestan" - ], - "Added": "2007-07-28", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Bali", - "Description": [ - "Balinese" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Bamu", - "Description": [ - "Bamum" - ], - "Added": "2009-07-30", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Bass", - "Description": [ - "Bassa Vah" - ], - "Added": "2010-04-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Batk", - "Description": [ - "Batak" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Beng", - "Description": [ - "Bengali", - "Bangla" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Berf", - "Description": [ - "Beria Erfe" - ], - "Added": "2025-02-06", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Bhks", - "Description": [ - "Bhaiksuki" - ], - "Added": "2015-07-24", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Blis", - "Description": [ - "Blissymbols" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Bopo", - "Description": [ - "Bopomofo" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Brah", - "Description": [ - "Brahmi" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Brai", - "Description": [ - "Braille" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Bugi", - "Description": [ - "Buginese" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Buhd", - "Description": [ - "Buhid" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Cakm", - "Description": [ - "Chakma" - ], - "Added": "2007-12-05", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Cans", - "Description": [ - "Unified Canadian Aboriginal Syllabics" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Cari", - "Description": [ - "Carian" - ], - "Added": "2006-07-21", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Cham", - "Description": [ - "Cham" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Cher", - "Description": [ - "Cherokee" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Chis", - "Description": [ - "Chisoi" - ], - "Added": "2023-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Chrs", - "Description": [ - "Chorasmian" - ], - "Added": "2019-09-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Cirt", - "Description": [ - "Cirth" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Copt", - "Description": [ - "Coptic" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Cpmn", - "Description": [ - "Cypro-Minoan" - ], - "Added": "2017-08-13", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Cprt", - "Description": [ - "Cypriot syllabary" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Cyrl", - "Description": [ - "Cyrillic" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Cyrs", - "Description": [ - "Cyrillic (Old Church Slavonic variant)" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Deva", - "Description": [ - "Devanagari", - "Nagari" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Diak", - "Description": [ - "Dives Akuru" - ], - "Added": "2019-09-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Dogr", - "Description": [ - "Dogra" - ], - "Added": "2017-01-13", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Dsrt", - "Description": [ - "Deseret", - "Mormon" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Dupl", - "Description": [ - "Duployan shorthand", - "Duployan stenography" - ], - "Added": "2010-08-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Egyd", - "Description": [ - "Egyptian demotic" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Egyh", - "Description": [ - "Egyptian hieratic" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Egyp", - "Description": [ - "Egyptian hieroglyphs" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Elba", - "Description": [ - "Elbasan" - ], - "Added": "2010-08-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Elym", - "Description": [ - "Elymaic" - ], - "Added": "2018-10-28", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Ethi", - "Description": [ - "Ethiopic", - "Ge\u02BBez", - "Ge\u0027ez" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Gara", - "Description": [ - "Garay" - ], - "Added": "2023-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Geok", - "Description": [ - "Khutsuri (Asomtavruli and Nuskhuri)" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Geor", - "Description": [ - "Georgian (Mkhedruli and Mtavruli)" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Glag", - "Description": [ - "Glagolitic" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Gong", - "Description": [ - "Gunjala Gondi" - ], - "Added": "2017-01-13", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Gonm", - "Description": [ - "Masaram Gondi" - ], - "Added": "2017-01-13", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Goth", - "Description": [ - "Gothic" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Gran", - "Description": [ - "Grantha" - ], - "Added": "2009-12-09", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Grek", - "Description": [ - "Greek" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Gujr", - "Description": [ - "Gujarati" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Gukh", - "Description": [ - "Gurung Khema" - ], - "Added": "2023-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Guru", - "Description": [ - "Gurmukhi" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Hanb", - "Description": [ - "Han with Bopomofo (alias for Han \u002B Bopomofo)" - ], - "Added": "2016-02-08", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Hang", - "Description": [ - "Hangul", - "Hang\u016Dl", - "Hangeul" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Hani", - "Description": [ - "Han", - "Hanzi", - "Kanji", - "Hanja" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Hano", - "Description": [ - "Hanunoo", - "Hanun\u00F3o" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Hans", - "Description": [ - "Han (Simplified variant)" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Hant", - "Description": [ - "Han (Traditional variant)" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Hatr", - "Description": [ - "Hatran" - ], - "Added": "2013-12-02", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Hebr", - "Description": [ - "Hebrew" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Hira", - "Description": [ - "Hiragana" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Hluw", - "Description": [ - "Anatolian Hieroglyphs", - "Luwian Hieroglyphs", - "Hittite Hieroglyphs" - ], - "Added": "2011-12-28", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Hmng", - "Description": [ - "Pahawh Hmong" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Hmnp", - "Description": [ - "Nyiakeng Puachue Hmong" - ], - "Added": "2017-08-13", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Hntl", - "Description": [ - "Han (Traditional variant) with Latin (alias for Hant \u002B Latn)" - ], - "Added": "2025-05-14", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Hrkt", - "Description": [ - "Japanese syllabaries (alias for Hiragana \u002B Katakana)" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Hung", - "Description": [ - "Old Hungarian", - "Hungarian Runic" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Inds", - "Description": [ - "Indus", - "Harappan" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Ital", - "Description": [ - "Old Italic (Etruscan, Oscan, etc.)" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Jamo", - "Description": [ - "Jamo (alias for Jamo subset of Hangul)" - ], - "Added": "2016-02-08", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Java", - "Description": [ - "Javanese" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Jpan", - "Description": [ - "Japanese (alias for Han \u002B Hiragana \u002B Katakana)" - ], - "Added": "2006-07-21", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Jurc", - "Description": [ - "Jurchen" - ], - "Added": "2011-01-07", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Kali", - "Description": [ - "Kayah Li" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Kana", - "Description": [ - "Katakana" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Kawi", - "Description": [ - "Kawi" - ], - "Added": "2021-12-24", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Khar", - "Description": [ - "Kharoshthi" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Khmr", - "Description": [ - "Khmer" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Khoj", - "Description": [ - "Khojki" - ], - "Added": "2011-08-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Kitl", - "Description": [ - "Khitan large script" - ], - "Added": "2014-12-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Kits", - "Description": [ - "Khitan small script" - ], - "Added": "2014-12-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Knda", - "Description": [ - "Kannada" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Kore", - "Description": [ - "Korean (alias for Hangul \u002B Han)" - ], - "Added": "2007-07-05", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Kpel", - "Description": [ - "Kpelle" - ], - "Added": "2010-04-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Krai", - "Description": [ - "Kirat Rai" - ], - "Added": "2023-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Kthi", - "Description": [ - "Kaithi" - ], - "Added": "2007-12-05", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Lana", - "Description": [ - "Tai Tham", - "Lanna" - ], - "Added": "2006-07-21", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Laoo", - "Description": [ - "Lao" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Latf", - "Description": [ - "Latin (Fraktur variant)" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Latg", - "Description": [ - "Latin (Gaelic variant)" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Latn", - "Description": [ - "Latin" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Leke", - "Description": [ - "Leke" - ], - "Added": "2015-07-24", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Lepc", - "Description": [ - "Lepcha", - "R\u00F3ng" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Limb", - "Description": [ - "Limbu" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Lina", - "Description": [ - "Linear A" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Linb", - "Description": [ - "Linear B" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Lisu", - "Description": [ - "Lisu", - "Fraser" - ], - "Added": "2009-03-13", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Loma", - "Description": [ - "Loma" - ], - "Added": "2010-04-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Lyci", - "Description": [ - "Lycian" - ], - "Added": "2006-07-21", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Lydi", - "Description": [ - "Lydian" - ], - "Added": "2006-07-21", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Mahj", - "Description": [ - "Mahajani" - ], - "Added": "2012-11-01", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Maka", - "Description": [ - "Makasar" - ], - "Added": "2017-01-13", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Mand", - "Description": [ - "Mandaic", - "Mandaean" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Mani", - "Description": [ - "Manichaean" - ], - "Added": "2007-07-28", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Marc", - "Description": [ - "Marchen" - ], - "Added": "2014-12-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Maya", - "Description": [ - "Mayan hieroglyphs" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Medf", - "Description": [ - "Medefaidrin", - "Oberi Okaime", - "Oberi \u0186kaim\u025B" - ], - "Added": "2017-01-13", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Mend", - "Description": [ - "Mende Kikakui" - ], - "Added": "2010-04-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Merc", - "Description": [ - "Meroitic Cursive" - ], - "Added": "2009-12-09", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Mero", - "Description": [ - "Meroitic Hieroglyphs" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Mlym", - "Description": [ - "Malayalam" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Modi", - "Description": [ - "Modi", - "Mo\u1E0D\u012B" - ], - "Added": "2013-12-02", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Mong", - "Description": [ - "Mongolian" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Moon", - "Description": [ - "Moon", - "Moon code", - "Moon script", - "Moon type" - ], - "Added": "2007-01-26", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Mroo", - "Description": [ - "Mro", - "Mru" - ], - "Added": "2011-01-07", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Mtei", - "Description": [ - "Meitei Mayek", - "Meithei", - "Meetei" - ], - "Added": "2007-01-26", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Mult", - "Description": [ - "Multani" - ], - "Added": "2013-12-02", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Mymr", - "Description": [ - "Myanmar", - "Burmese" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Nagm", - "Description": [ - "Nag Mundari" - ], - "Added": "2021-12-24", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Nand", - "Description": [ - "Nandinagari" - ], - "Added": "2018-10-28", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Narb", - "Description": [ - "Old North Arabian", - "Ancient North Arabian" - ], - "Added": "2010-04-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Nbat", - "Description": [ - "Nabataean" - ], - "Added": "2010-04-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Newa", - "Description": [ - "Newa", - "Newar", - "Newari", - "Nep\u0101la lipi" - ], - "Added": "2016-01-04", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Nkdb", - "Description": [ - "Naxi Dongba", - "na\u00B2\u00B9\u0255i\u00B3\u00B3 to\u00B3\u00B3ba\u00B2\u00B9", - "Nakhi Tomba" - ], - "Added": "2017-08-13", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Nkgb", - "Description": [ - "Naxi Geba", - "na\u00B2\u00B9\u0255i\u00B3\u00B3 g\u028C\u00B2\u00B9ba\u00B2\u00B9", - "\u0027Na-\u0027Khi \u00B2Gg\u014F-\u00B9baw", - "Nakhi Geba" - ], - "Added": "2009-03-13", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Nkoo", - "Description": [ - "N\u2019Ko", - "N\u0027Ko" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Nshu", - "Description": [ - "N\u00FCshu" - ], - "Added": "2011-01-07", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Ogam", - "Description": [ - "Ogham" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Olck", - "Description": [ - "Ol Chiki", - "Ol Cemet\u0027", - "Ol", - "Santali" - ], - "Added": "2006-07-21", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Onao", - "Description": [ - "Ol Onal" - ], - "Added": "2023-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Orkh", - "Description": [ - "Old Turkic", - "Orkhon Runic" - ], - "Added": "2009-07-30", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Orya", - "Description": [ - "Oriya", - "Odia" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Osge", - "Description": [ - "Osage" - ], - "Added": "2014-12-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Osma", - "Description": [ - "Osmanya" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Ougr", - "Description": [ - "Old Uyghur" - ], - "Added": "2021-02-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Palm", - "Description": [ - "Palmyrene" - ], - "Added": "2010-04-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Pauc", - "Description": [ - "Pau Cin Hau" - ], - "Added": "2013-12-02", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Pcun", - "Description": [ - "Proto-Cuneiform" - ], - "Added": "2021-02-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Pelm", - "Description": [ - "Proto-Elamite" - ], - "Added": "2021-02-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Perm", - "Description": [ - "Old Permic" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Phag", - "Description": [ - "Phags-pa" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Phli", - "Description": [ - "Inscriptional Pahlavi" - ], - "Added": "2007-12-05", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Phlp", - "Description": [ - "Psalter Pahlavi" - ], - "Added": "2007-12-05", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Phlv", - "Description": [ - "Book Pahlavi" - ], - "Added": "2007-07-28", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Phnx", - "Description": [ - "Phoenician" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Piqd", - "Description": [ - "Klingon (KLI pIqaD)" - ], - "Added": "2016-01-04", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Plrd", - "Description": [ - "Miao", - "Pollard" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Prti", - "Description": [ - "Inscriptional Parthian" - ], - "Added": "2007-12-05", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Psin", - "Description": [ - "Proto-Sinaitic" - ], - "Added": "2021-02-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Qaaa..Qabx", - "Description": [ - "Private use" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Ranj", - "Description": [ - "Ranjana" - ], - "Added": "2021-02-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Rjng", - "Description": [ - "Rejang", - "Redjang", - "Kaganga" - ], - "Added": "2006-10-17", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Rohg", - "Description": [ - "Hanifi Rohingya" - ], - "Added": "2017-12-13", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Roro", - "Description": [ - "Rongorongo" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Runr", - "Description": [ - "Runic" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Samr", - "Description": [ - "Samaritan" - ], - "Added": "2007-07-28", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Sara", - "Description": [ - "Sarati" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Sarb", - "Description": [ - "Old South Arabian" - ], - "Added": "2009-07-30", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Saur", - "Description": [ - "Saurashtra" - ], - "Added": "2006-07-21", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Seal", - "Description": [ - "Seal", - "Small Seal" - ], - "Added": "2025-05-14", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Sgnw", - "Description": [ - "SignWriting" - ], - "Added": "2006-10-17", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Shaw", - "Description": [ - "Shavian", - "Shaw" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Shrd", - "Description": [ - "Sharada", - "\u015A\u0101rad\u0101" - ], - "Added": "2011-01-07", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Shui", - "Description": [ - "Shuishu" - ], - "Added": "2017-08-13", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Sidd", - "Description": [ - "Siddham", - "Siddha\u1E43", - "Siddham\u0101t\u1E5Bk\u0101" - ], - "Added": "2013-12-02", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Sidt", - "Description": [ - "Sidetic" - ], - "Added": "2023-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Sind", - "Description": [ - "Khudawadi", - "Sindhi" - ], - "Added": "2010-08-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Sinh", - "Description": [ - "Sinhala" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Sogd", - "Description": [ - "Sogdian" - ], - "Added": "2017-12-13", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Sogo", - "Description": [ - "Old Sogdian" - ], - "Added": "2017-12-13", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Sora", - "Description": [ - "Sora Sompeng" - ], - "Added": "2011-01-07", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Soyo", - "Description": [ - "Soyombo" - ], - "Added": "2017-01-13", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Sund", - "Description": [ - "Sundanese" - ], - "Added": "2006-07-21", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Sunu", - "Description": [ - "Sunuwar" - ], - "Added": "2021-12-24", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Sylo", - "Description": [ - "Syloti Nagri" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Syrc", - "Description": [ - "Syriac" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Syre", - "Description": [ - "Syriac (Estrangelo variant)" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Syrj", - "Description": [ - "Syriac (Western variant)" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Syrn", - "Description": [ - "Syriac (Eastern variant)" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Tagb", - "Description": [ - "Tagbanwa" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Takr", - "Description": [ - "Takri", - "\u1E6C\u0101kr\u012B", - "\u1E6C\u0101\u1E45kr\u012B" - ], - "Added": "2011-01-07", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Tale", - "Description": [ - "Tai Le" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Talu", - "Description": [ - "New Tai Lue" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Taml", - "Description": [ - "Tamil" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Tang", - "Description": [ - "Tangut" - ], - "Added": "2011-01-07", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Tavt", - "Description": [ - "Tai Viet" - ], - "Added": "2007-12-05", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Tayo", - "Description": [ - "Tai Yo" - ], - "Added": "2023-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Telu", - "Description": [ - "Telugu" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Teng", - "Description": [ - "Tengwar" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Tfng", - "Description": [ - "Tifinagh", - "Berber" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Tglg", - "Description": [ - "Tagalog", - "Baybayin", - "Alibata" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Thaa", - "Description": [ - "Thaana" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Thai", - "Description": [ - "Thai" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Tibt", - "Description": [ - "Tibetan" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Tirh", - "Description": [ - "Tirhuta" - ], - "Added": "2011-08-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Tnsa", - "Description": [ - "Tangsa" - ], - "Added": "2021-03-05", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Todr", - "Description": [ - "Todhri" - ], - "Added": "2023-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Tols", - "Description": [ - "Tolong Siki" - ], - "Added": "2023-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Toto", - "Description": [ - "Toto" - ], - "Added": "2020-05-12", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Tutg", - "Description": [ - "Tulu-Tigalari" - ], - "Added": "2023-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Ugar", - "Description": [ - "Ugaritic" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Vaii", - "Description": [ - "Vai" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Visp", - "Description": [ - "Visible Speech" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Vith", - "Description": [ - "Vithkuqi" - ], - "Added": "2021-03-05", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Wara", - "Description": [ - "Warang Citi", - "Varang Kshiti" - ], - "Added": "2009-12-09", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Wcho", - "Description": [ - "Wancho" - ], - "Added": "2017-08-13", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Wole", - "Description": [ - "Woleai" - ], - "Added": "2011-01-07", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Xpeo", - "Description": [ - "Old Persian" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Xsux", - "Description": [ - "Sumero-Akkadian cuneiform" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Yezi", - "Description": [ - "Yezidi" - ], - "Added": "2019-09-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Yiii", - "Description": [ - "Yi" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Zanb", - "Description": [ - "Zanabazar Square", - "Zanabazarin D\u00F6rb\u00F6ljin Useg", - "Xewtee D\u00F6rb\u00F6ljin Bicig", - "Horizontal Square Script" - ], - "Added": "2017-01-13", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Zinh", - "Description": [ - "Code for inherited script" - ], - "Added": "2009-04-03", - "Scope": "None", - "Comments": [ - "Not intended for use as a language subtag" - ], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Zmth", - "Description": [ - "Mathematical notation" - ], - "Added": "2007-12-05", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Zsye", - "Description": [ - "Symbols (Emoji variant)" - ], - "Added": "2016-01-04", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Zsym", - "Description": [ - "Symbols" - ], - "Added": "2007-12-05", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Zxxx", - "Description": [ - "Code for unwritten documents" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Zyyy", - "Description": [ - "Code for undetermined script" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Script", - "SubTag": "Zzzz", - "Description": [ - "Code for uncoded script" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "AA", - "Description": [ - "Private use" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "AC", - "Description": [ - "Ascension Island" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "AD", - "Description": [ - "Andorra" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "AE", - "Description": [ - "United Arab Emirates" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "AF", - "Description": [ - "Afghanistan" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "AG", - "Description": [ - "Antigua and Barbuda" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "AI", - "Description": [ - "Anguilla" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "AL", - "Description": [ - "Albania" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "AM", - "Description": [ - "Armenia" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "AN", - "Description": [ - "Netherlands Antilles" - ], - "Added": "2005-10-16", - "Scope": "None", - "Deprecated": "2011-01-07", - "Comments": [ - "see BQ, CW, and SX" - ], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "AO", - "Description": [ - "Angola" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "AQ", - "Description": [ - "Antarctica" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "AR", - "Description": [ - "Argentina" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "AS", - "Description": [ - "American Samoa" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "AT", - "Description": [ - "Austria" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "AU", - "Description": [ - "Australia" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "AW", - "Description": [ - "Aruba" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "AX", - "Description": [ - "\u00C5land Islands" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "AZ", - "Description": [ - "Azerbaijan" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "BA", - "Description": [ - "Bosnia and Herzegovina" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "BB", - "Description": [ - "Barbados" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "BD", - "Description": [ - "Bangladesh" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "BE", - "Description": [ - "Belgium" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "BF", - "Description": [ - "Burkina Faso" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "BG", - "Description": [ - "Bulgaria" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "BH", - "Description": [ - "Bahrain" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "BI", - "Description": [ - "Burundi" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "BJ", - "Description": [ - "Benin" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "BL", - "Description": [ - "Saint Barth\u00E9lemy" - ], - "Added": "2007-11-02", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "BM", - "Description": [ - "Bermuda" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "BN", - "Description": [ - "Brunei Darussalam" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "BO", - "Description": [ - "Bolivia" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "BQ", - "Description": [ - "Bonaire, Sint Eustatius and Saba" - ], - "Added": "2011-01-07", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "BR", - "Description": [ - "Brazil" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "BS", - "Description": [ - "Bahamas" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "BT", - "Description": [ - "Bhutan" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "BU", - "Description": [ - "Burma" - ], - "Added": "2005-10-16", - "Scope": "None", - "Deprecated": "1989-12-05", - "Comments": [], - "Prefix": [], - "PreferredValue": "MM" - }, - { - "Type": "Region", - "SubTag": "BV", - "Description": [ - "Bouvet Island" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "BW", - "Description": [ - "Botswana" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "BY", - "Description": [ - "Belarus" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "BZ", - "Description": [ - "Belize" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "CA", - "Description": [ - "Canada" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "CC", - "Description": [ - "Cocos (Keeling) Islands" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "CD", - "Description": [ - "The Democratic Republic of the Congo" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "CF", - "Description": [ - "Central African Republic" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "CG", - "Description": [ - "Congo" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "CH", - "Description": [ - "Switzerland" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "CI", - "Description": [ - "C\u00F4te d\u0027Ivoire" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "CK", - "Description": [ - "Cook Islands" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "CL", - "Description": [ - "Chile" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "CM", - "Description": [ - "Cameroon" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "CN", - "Description": [ - "China" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "CO", - "Description": [ - "Colombia" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "CP", - "Description": [ - "Clipperton Island" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "CQ", - "Description": [ - "Sark" - ], - "Added": "2023-02-07", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "CR", - "Description": [ - "Costa Rica" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "CS", - "Description": [ - "Serbia and Montenegro" - ], - "Added": "2005-10-16", - "Scope": "None", - "Deprecated": "2006-10-05", - "Comments": [ - "see RS for Serbia or ME for Montenegro" - ], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "CU", - "Description": [ - "Cuba" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "CV", - "Description": [ - "Cabo Verde", - "Cape Verde" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "CW", - "Description": [ - "Cura\u00E7ao" - ], - "Added": "2011-01-07", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "CX", - "Description": [ - "Christmas Island" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "CY", - "Description": [ - "Cyprus" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "CZ", - "Description": [ - "Czechia", - "Czech Republic" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "DD", - "Description": [ - "German Democratic Republic" - ], - "Added": "2005-10-16", - "Scope": "None", - "Deprecated": "1990-10-30", - "Comments": [], - "Prefix": [], - "PreferredValue": "DE" - }, - { - "Type": "Region", - "SubTag": "DE", - "Description": [ - "Germany" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "DG", - "Description": [ - "Diego Garcia" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "DJ", - "Description": [ - "Djibouti" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "DK", - "Description": [ - "Denmark" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "DM", - "Description": [ - "Dominica" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "DO", - "Description": [ - "Dominican Republic" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "DZ", - "Description": [ - "Algeria" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "EA", - "Description": [ - "Ceuta, Melilla" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "EC", - "Description": [ - "Ecuador" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "EE", - "Description": [ - "Estonia" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "EG", - "Description": [ - "Egypt" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "EH", - "Description": [ - "Western Sahara" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "ER", - "Description": [ - "Eritrea" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "ES", - "Description": [ - "Spain" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "ET", - "Description": [ - "Ethiopia" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "EU", - "Description": [ - "European Union" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "EZ", - "Description": [ - "Eurozone" - ], - "Added": "2016-07-14", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "FI", - "Description": [ - "Finland" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "FJ", - "Description": [ - "Fiji" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "FK", - "Description": [ - "Falkland Islands (Malvinas)" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "FM", - "Description": [ - "Federated States of Micronesia" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "FO", - "Description": [ - "Faroe Islands" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "FR", - "Description": [ - "France" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "FX", - "Description": [ - "Metropolitan France" - ], - "Added": "2005-10-16", - "Scope": "None", - "Deprecated": "1997-07-14", - "Comments": [], - "Prefix": [], - "PreferredValue": "FR" - }, - { - "Type": "Region", - "SubTag": "GA", - "Description": [ - "Gabon" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "GB", - "Description": [ - "United Kingdom" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [ - "as of 2006-03-29 GB no longer includes the Channel Islands and Isle of Man; see GG, JE, IM" - ], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "GD", - "Description": [ - "Grenada" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "GE", - "Description": [ - "Georgia" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "GF", - "Description": [ - "French Guiana" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "GG", - "Description": [ - "Guernsey" - ], - "Added": "2006-03-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "GH", - "Description": [ - "Ghana" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "GI", - "Description": [ - "Gibraltar" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "GL", - "Description": [ - "Greenland" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "GM", - "Description": [ - "Gambia" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "GN", - "Description": [ - "Guinea" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "GP", - "Description": [ - "Guadeloupe" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "GQ", - "Description": [ - "Equatorial Guinea" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "GR", - "Description": [ - "Greece" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "GS", - "Description": [ - "South Georgia and the South Sandwich Islands" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "GT", - "Description": [ - "Guatemala" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "GU", - "Description": [ - "Guam" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "GW", - "Description": [ - "Guinea-Bissau" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "GY", - "Description": [ - "Guyana" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "HK", - "Description": [ - "Hong Kong" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "HM", - "Description": [ - "Heard Island and McDonald Islands" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "HN", - "Description": [ - "Honduras" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "HR", - "Description": [ - "Croatia" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "HT", - "Description": [ - "Haiti" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "HU", - "Description": [ - "Hungary" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "IC", - "Description": [ - "Canary Islands" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "ID", - "Description": [ - "Indonesia" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "IE", - "Description": [ - "Ireland" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "IL", - "Description": [ - "Israel" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "IM", - "Description": [ - "Isle of Man" - ], - "Added": "2006-03-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "IN", - "Description": [ - "India" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "IO", - "Description": [ - "British Indian Ocean Territory" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "IQ", - "Description": [ - "Iraq" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "IR", - "Description": [ - "Islamic Republic of Iran" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "IS", - "Description": [ - "Iceland" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "IT", - "Description": [ - "Italy" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "JE", - "Description": [ - "Jersey" - ], - "Added": "2006-03-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "JM", - "Description": [ - "Jamaica" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "JO", - "Description": [ - "Jordan" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "JP", - "Description": [ - "Japan" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "KE", - "Description": [ - "Kenya" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "KG", - "Description": [ - "Kyrgyzstan" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "KH", - "Description": [ - "Cambodia" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "KI", - "Description": [ - "Kiribati" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "KM", - "Description": [ - "Comoros" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "KN", - "Description": [ - "Saint Kitts and Nevis" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "KP", - "Description": [ - "Democratic People\u0027s Republic of Korea" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "KR", - "Description": [ - "Republic of Korea" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "KW", - "Description": [ - "Kuwait" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "KY", - "Description": [ - "Cayman Islands" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "KZ", - "Description": [ - "Kazakhstan" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "LA", - "Description": [ - "Lao People\u0027s Democratic Republic" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "LB", - "Description": [ - "Lebanon" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "LC", - "Description": [ - "Saint Lucia" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "LI", - "Description": [ - "Liechtenstein" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "LK", - "Description": [ - "Sri Lanka" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "LR", - "Description": [ - "Liberia" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "LS", - "Description": [ - "Lesotho" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "LT", - "Description": [ - "Lithuania" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "LU", - "Description": [ - "Luxembourg" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "LV", - "Description": [ - "Latvia" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "LY", - "Description": [ - "Libya" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "MA", - "Description": [ - "Morocco" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "MC", - "Description": [ - "Monaco" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "MD", - "Description": [ - "Moldova" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "ME", - "Description": [ - "Montenegro" - ], - "Added": "2006-10-05", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "MF", - "Description": [ - "Saint Martin (French part)" - ], - "Added": "2007-11-02", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "MG", - "Description": [ - "Madagascar" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "MH", - "Description": [ - "Marshall Islands" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "MK", - "Description": [ - "North Macedonia" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "ML", - "Description": [ - "Mali" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "MM", - "Description": [ - "Myanmar" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "MN", - "Description": [ - "Mongolia" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "MO", - "Description": [ - "Macao" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "MP", - "Description": [ - "Northern Mariana Islands" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "MQ", - "Description": [ - "Martinique" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "MR", - "Description": [ - "Mauritania" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "MS", - "Description": [ - "Montserrat" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "MT", - "Description": [ - "Malta" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "MU", - "Description": [ - "Mauritius" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "MV", - "Description": [ - "Maldives" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "MW", - "Description": [ - "Malawi" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "MX", - "Description": [ - "Mexico" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "MY", - "Description": [ - "Malaysia" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "MZ", - "Description": [ - "Mozambique" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "NA", - "Description": [ - "Namibia" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "NC", - "Description": [ - "New Caledonia" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "NE", - "Description": [ - "Niger" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "NF", - "Description": [ - "Norfolk Island" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "NG", - "Description": [ - "Nigeria" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "NI", - "Description": [ - "Nicaragua" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "NL", - "Description": [ - "Netherlands" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "NO", - "Description": [ - "Norway" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "NP", - "Description": [ - "Nepal" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "NR", - "Description": [ - "Nauru" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "NT", - "Description": [ - "Neutral Zone" - ], - "Added": "2005-10-16", - "Scope": "None", - "Deprecated": "1993-07-12", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "NU", - "Description": [ - "Niue" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "NZ", - "Description": [ - "New Zealand" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "OM", - "Description": [ - "Oman" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "PA", - "Description": [ - "Panama" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "PE", - "Description": [ - "Peru" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "PF", - "Description": [ - "French Polynesia" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "PG", - "Description": [ - "Papua New Guinea" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "PH", - "Description": [ - "Philippines" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "PK", - "Description": [ - "Pakistan" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "PL", - "Description": [ - "Poland" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "PM", - "Description": [ - "Saint Pierre and Miquelon" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "PN", - "Description": [ - "Pitcairn" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "PR", - "Description": [ - "Puerto Rico" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "PS", - "Description": [ - "State of Palestine" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "PT", - "Description": [ - "Portugal" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "PW", - "Description": [ - "Palau" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "PY", - "Description": [ - "Paraguay" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "QA", - "Description": [ - "Qatar" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "QM..QZ", - "Description": [ - "Private use" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "RE", - "Description": [ - "R\u00E9union" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "RO", - "Description": [ - "Romania" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "RS", - "Description": [ - "Serbia" - ], - "Added": "2006-10-05", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "RU", - "Description": [ - "Russian Federation" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "RW", - "Description": [ - "Rwanda" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "SA", - "Description": [ - "Saudi Arabia" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "SB", - "Description": [ - "Solomon Islands" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "SC", - "Description": [ - "Seychelles" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "SD", - "Description": [ - "Sudan" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "SE", - "Description": [ - "Sweden" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "SG", - "Description": [ - "Singapore" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "SH", - "Description": [ - "Saint Helena, Ascension and Tristan da Cunha" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "SI", - "Description": [ - "Slovenia" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "SJ", - "Description": [ - "Svalbard and Jan Mayen" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "SK", - "Description": [ - "Slovakia" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "SL", - "Description": [ - "Sierra Leone" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "SM", - "Description": [ - "San Marino" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "SN", - "Description": [ - "Senegal" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "SO", - "Description": [ - "Somalia" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "SR", - "Description": [ - "Suriname" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "SS", - "Description": [ - "South Sudan" - ], - "Added": "2011-08-25", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "ST", - "Description": [ - "Sao Tome and Principe" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "SU", - "Description": [ - "Union of Soviet Socialist Republics" - ], - "Added": "2005-10-16", - "Scope": "None", - "Deprecated": "1992-08-30", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "SV", - "Description": [ - "El Salvador" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "SX", - "Description": [ - "Sint Maarten (Dutch part)" - ], - "Added": "2011-01-07", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "SY", - "Description": [ - "Syrian Arab Republic" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "SZ", - "Description": [ - "Eswatini", - "eSwatini", - "Swaziland" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "TA", - "Description": [ - "Tristan da Cunha" - ], - "Added": "2009-07-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "TC", - "Description": [ - "Turks and Caicos Islands" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "TD", - "Description": [ - "Chad" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "TF", - "Description": [ - "French Southern Territories" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "TG", - "Description": [ - "Togo" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "TH", - "Description": [ - "Thailand" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "TJ", - "Description": [ - "Tajikistan" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "TK", - "Description": [ - "Tokelau" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "TL", - "Description": [ - "Timor-Leste" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "TM", - "Description": [ - "Turkmenistan" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "TN", - "Description": [ - "Tunisia" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "TO", - "Description": [ - "Tonga" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "TP", - "Description": [ - "East Timor" - ], - "Added": "2005-10-16", - "Scope": "None", - "Deprecated": "2002-05-20", - "Comments": [], - "Prefix": [], - "PreferredValue": "TL" - }, - { - "Type": "Region", - "SubTag": "TR", - "Description": [ - "T\u00FCrkiye", - "Turkey" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "TT", - "Description": [ - "Trinidad and Tobago" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "TV", - "Description": [ - "Tuvalu" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "TW", - "Description": [ - "Taiwan, Province of China" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "TZ", - "Description": [ - "United Republic of Tanzania" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "UA", - "Description": [ - "Ukraine" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "UG", - "Description": [ - "Uganda" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "UM", - "Description": [ - "United States Minor Outlying Islands" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "UN", - "Description": [ - "United Nations" - ], - "Added": "2016-07-14", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "US", - "Description": [ - "United States" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "UY", - "Description": [ - "Uruguay" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "UZ", - "Description": [ - "Uzbekistan" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "VA", - "Description": [ - "Holy See (Vatican City State)" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "VC", - "Description": [ - "Saint Vincent and the Grenadines" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "VE", - "Description": [ - "Venezuela" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "VG", - "Description": [ - "British Virgin Islands" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "VI", - "Description": [ - "U.S. Virgin Islands" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "VN", - "Description": [ - "Viet Nam" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "VU", - "Description": [ - "Vanuatu" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "WF", - "Description": [ - "Wallis and Futuna" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "WS", - "Description": [ - "Samoa" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "XA..XZ", - "Description": [ - "Private use" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "YD", - "Description": [ - "Democratic Yemen" - ], - "Added": "2005-10-16", - "Scope": "None", - "Deprecated": "1990-08-14", - "Comments": [], - "Prefix": [], - "PreferredValue": "YE" - }, - { - "Type": "Region", - "SubTag": "YE", - "Description": [ - "Yemen" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "YT", - "Description": [ - "Mayotte" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "YU", - "Description": [ - "Yugoslavia" - ], - "Added": "2005-10-16", - "Scope": "None", - "Deprecated": "2003-07-23", - "Comments": [ - "see BA, HR, ME, MK, RS, or SI" - ], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "ZA", - "Description": [ - "South Africa" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "ZM", - "Description": [ - "Zambia" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "ZR", - "Description": [ - "Zaire" - ], - "Added": "2005-10-16", - "Scope": "None", - "Deprecated": "1997-07-14", - "Comments": [], - "Prefix": [], - "PreferredValue": "CD" - }, - { - "Type": "Region", - "SubTag": "ZW", - "Description": [ - "Zimbabwe" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "ZZ", - "Description": [ - "Private use" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "001", - "Description": [ - "World" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "002", - "Description": [ - "Africa" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "003", - "Description": [ - "North America" - ], - "Added": "2010-08-16", - "Scope": "None", - "Comments": [ - "Includes Northern America (021), Caribbean (029), and Central America (013); see also 021" - ], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "005", - "Description": [ - "South America" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "009", - "Description": [ - "Oceania" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "011", - "Description": [ - "Western Africa" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "013", - "Description": [ - "Central America" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "014", - "Description": [ - "Eastern Africa" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "015", - "Description": [ - "Northern Africa" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "017", - "Description": [ - "Middle Africa" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "018", - "Description": [ - "Southern Africa" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "019", - "Description": [ - "Americas" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "021", - "Description": [ - "Northern America" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [ - "Does not include Caribbean (029) or Central America (013); see also 003" - ], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "029", - "Description": [ - "Caribbean" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "030", - "Description": [ - "Eastern Asia" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "034", - "Description": [ - "Southern Asia" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "035", - "Description": [ - "South-Eastern Asia" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "039", - "Description": [ - "Southern Europe" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "053", - "Description": [ - "Australia and New Zealand" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "054", - "Description": [ - "Melanesia" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "057", - "Description": [ - "Micronesia" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "061", - "Description": [ - "Polynesia" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "142", - "Description": [ - "Asia" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "143", - "Description": [ - "Central Asia" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "145", - "Description": [ - "Western Asia" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "150", - "Description": [ - "Europe" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "151", - "Description": [ - "Eastern Europe" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "154", - "Description": [ - "Northern Europe" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "155", - "Description": [ - "Western Europe" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "202", - "Description": [ - "Sub-Saharan Africa" - ], - "Added": "2017-04-18", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Region", - "SubTag": "419", - "Description": [ - "Latin America and the Caribbean" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Variant", - "SubTag": "1606nict", - "Description": [ - "Late Middle French (to 1606)" - ], - "Added": "2007-03-20", - "Scope": "None", - "Comments": [ - "16th century French as in Jean Nicot, \u0022Thresor de la langue francoyse\u0022, 1606, but also including some French similar to that of Rabelais" - ], - "Prefix": [ - "frm" - ] - }, - { - "Type": "Variant", - "SubTag": "1694acad", - "Description": [ - "Early Modern French" - ], - "Added": "2007-03-20", - "Scope": "None", - "Comments": [ - "17th century French, as catalogued in the \u0022Dictionnaire de l\u0027acad\u00E9mie fran\u00E7oise\u0022, 4eme ed. 1694; frequently includes elements of Middle French, as this is a transitional period" - ], - "Prefix": [ - "fr" - ] - }, - { - "Type": "Variant", - "SubTag": "1901", - "Description": [ - "Traditional German orthography" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [ - "de" - ] - }, - { - "Type": "Variant", - "SubTag": "1959acad", - "Description": [ - "\u0022Academic\u0022 (\u0022governmental\u0022) variant of Belarusian as codified in 1959" - ], - "Added": "2008-09-30", - "Scope": "None", - "Comments": [], - "Prefix": [ - "be" - ] - }, - { - "Type": "Variant", - "SubTag": "1994", - "Description": [ - "Standardized Resian orthography" - ], - "Added": "2007-07-28", - "Scope": "None", - "Comments": [ - "For standardized Resian an orthography was published in 1994." - ], - "Prefix": [ - "sl-rozaj", - "sl-rozaj-biske", - "sl-rozaj-njiva", - "sl-rozaj-osojs", - "sl-rozaj-solba" - ] - }, - { - "Type": "Variant", - "SubTag": "1996", - "Description": [ - "German orthography of 1996" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [ - "de" - ] - }, - { - "Type": "Variant", - "SubTag": "abl1943", - "Description": [ - "Orthographic formulation of 1943 - Official in Brazil (Formul\u00E1rio Ortogr\u00E1fico de 1943 - Oficial no Brasil)" - ], - "Added": "2015-05-06", - "Scope": "None", - "Comments": [ - "Denotes conventions established by the Academia Brasileira de Letras in 1943 and generally used in Brazil until 2009" - ], - "Prefix": [ - "pt-BR" - ] - }, - { - "Type": "Variant", - "SubTag": "akhmimic", - "Description": [ - "Akhmimic dialect of Coptic" - ], - "Added": "2025-07-14", - "Scope": "None", - "Comments": [], - "Prefix": [ - "cop" - ] - }, - { - "Type": "Variant", - "SubTag": "akuapem", - "Description": [ - "Akuapem Twi" - ], - "Added": "2017-06-05", - "Scope": "None", - "Comments": [], - "Prefix": [ - "tw" - ] - }, - { - "Type": "Variant", - "SubTag": "alalc97", - "Description": [ - "ALA-LC Romanization, 1997 edition" - ], - "Added": "2009-12-09", - "Scope": "None", - "Comments": [ - "Romanizations recommended by the American Library Association and the Library of Congress, in \u0022ALA-LC Romanization Tables: Transliteration Schemes for Non-Roman Scripts\u0022 (1997), ISBN 978-0-8444-0940-5." - ], - "Prefix": [] - }, - { - "Type": "Variant", - "SubTag": "aluku", - "Description": [ - "Aluku dialect", - "Boni dialect" - ], - "Added": "2009-09-05", - "Scope": "None", - "Comments": [ - "Aluku dialect of the \u0022Busi Nenge Tongo\u0022 English-based Creole continuum in Eastern Suriname and Western French Guiana" - ], - "Prefix": [ - "djk" - ] - }, - { - "Type": "Variant", - "SubTag": "anpezo", - "Description": [ - "Anpezo standard of Ladin" - ], - "Added": "2024-03-04", - "Scope": "None", - "Comments": [ - "Represents the standard written form of Ladin in Anpezo" - ], - "Prefix": [ - "lld" - ] - }, - { - "Type": "Variant", - "SubTag": "ao1990", - "Description": [ - "Portuguese Language Orthographic Agreement of 1990 (Acordo Ortogr\u00E1fico da L\u00EDngua Portuguesa de 1990)" - ], - "Added": "2015-05-06", - "Scope": "None", - "Comments": [ - "Portuguese orthography conventions established in 1990 but not brought into effect until 2009" - ], - "Prefix": [ - "pt", - "gl" - ] - }, - { - "Type": "Variant", - "SubTag": "aranes", - "Description": [ - "Aranese" - ], - "Added": "2018-04-22", - "Scope": "None", - "Comments": [ - "Occitan variant spoken in the Val d\u0027Aran" - ], - "Prefix": [ - "oc" - ] - }, - { - "Type": "Variant", - "SubTag": "arevela", - "Description": [ - "Eastern Armenian" - ], - "Added": "2006-09-18", - "Scope": "None", - "Deprecated": "2018-03-24", - "Comments": [ - "Preferred tag is hy" - ], - "Prefix": [ - "hy" - ] - }, - { - "Type": "Variant", - "SubTag": "arevmda", - "Description": [ - "Western Armenian" - ], - "Added": "2006-09-18", - "Scope": "None", - "Deprecated": "2018-03-24", - "Comments": [ - "Preferred tag is hyw" - ], - "Prefix": [ - "hy" - ] - }, - { - "Type": "Variant", - "SubTag": "arkaika", - "Description": [ - "Arcaicam Esperantom", - "Arkaika Esperanto" - ], - "Added": "2020-12-17", - "Scope": "None", - "Comments": [ - "Archaic Esperanto variant devised by Manuel Halvelik" - ], - "Prefix": [ - "eo" - ] - }, - { - "Type": "Variant", - "SubTag": "asante", - "Description": [ - "Asante Twi", - "Ashanti Twi" - ], - "Added": "2017-06-05", - "Scope": "None", - "Comments": [], - "Prefix": [ - "tw" - ] - }, - { - "Type": "Variant", - "SubTag": "auvern", - "Description": [ - "Auvergnat" - ], - "Added": "2018-04-22", - "Scope": "None", - "Comments": [ - "Occitan variant spoken in Auvergne" - ], - "Prefix": [ - "oc" - ] - }, - { - "Type": "Variant", - "SubTag": "baku1926", - "Description": [ - "Unified Turkic Latin Alphabet (Historical)" - ], - "Added": "2007-04-18", - "Scope": "None", - "Comments": [ - "Denotes alphabet used in Turkic republics/regions of the former USSR in late 1920s, and throughout 1930s, which aspired to represent equivalent phonemes in a unified fashion. Also known as: New Turkic Alphabet; Birl\u04D9\u015Fdirilmi\u015F Jeni Tyrk \u04D8lifbas\u044C (Birlesdirilmis Jeni Tyrk Elifbasi); Ja\u014Balif (Janalif)." - ], - "Prefix": [ - "az", - "ba", - "crh", - "kk", - "krc", - "ky", - "sah", - "tk", - "tt", - "uz" - ] - }, - { - "Type": "Variant", - "SubTag": "balanka", - "Description": [ - "The Balanka dialect of Anii" - ], - "Added": "2014-02-15", - "Scope": "None", - "Comments": [ - "Balanka is one of 19 Anii dialects." - ], - "Prefix": [ - "blo" - ] - }, - { - "Type": "Variant", - "SubTag": "barla", - "Description": [ - "The Barlavento dialect group of Kabuverdianu" - ], - "Added": "2013-12-10", - "Scope": "None", - "Comments": [ - "Barlavento is one of the two main dialect groups of Kabuverdianu." - ], - "Prefix": [ - "kea" - ] - }, - { - "Type": "Variant", - "SubTag": "basiceng", - "Description": [ - "Basic English" - ], - "Added": "2015-12-29", - "Scope": "None", - "Comments": [], - "Prefix": [ - "en" - ] - }, - { - "Type": "Variant", - "SubTag": "bauddha", - "Description": [ - "Buddhist Hybrid Sanskrit" - ], - "Added": "2010-07-28", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sa" - ] - }, - { - "Type": "Variant", - "SubTag": "bciav", - "Description": [ - "BCI Blissymbolics AV" - ], - "Added": "2023-05-11", - "Scope": "None", - "Comments": [ - "Name given to a subset of the variety of Blissymbolics curated by Blissymbolics Communication International, as represented by entries in the BCI Authorized Vocabulary" - ], - "Prefix": [ - "zbl" - ] - }, - { - "Type": "Variant", - "SubTag": "bcizbl", - "Description": [ - "BCI Blissymbolics" - ], - "Added": "2023-05-11", - "Scope": "None", - "Comments": [ - "Name given to the variety of Blissymbolics curated by Blissymbolics Communication International" - ], - "Prefix": [ - "zbl" - ] - }, - { - "Type": "Variant", - "SubTag": "biscayan", - "Description": [ - "Biscayan dialect of Basque" - ], - "Added": "2010-04-13", - "Scope": "None", - "Comments": [], - "Prefix": [ - "eu" - ] - }, - { - "Type": "Variant", - "SubTag": "biske", - "Description": [ - "The San Giorgio dialect of Resian", - "The Bila dialect of Resian" - ], - "Added": "2007-07-05", - "Scope": "None", - "Comments": [ - "The dialect of San Giorgio/Bila is one of the four major local dialects of Resian" - ], - "Prefix": [ - "sl-rozaj" - ] - }, - { - "Type": "Variant", - "SubTag": "blasl", - "Description": [ - "Black American Sign Language dialect" - ], - "Added": "2023-07-31", - "Scope": "None", - "Comments": [ - "Black American Sign Language (BASL) or Black Sign Variation (BSV) is a dialect of American Sign Language (ASL)" - ], - "Prefix": [ - "ase", - "sgn-ase" - ] - }, - { - "Type": "Variant", - "SubTag": "bohairic", - "Description": [ - "Bohairic dialect of Coptic" - ], - "Added": "2025-07-14", - "Scope": "None", - "Comments": [], - "Prefix": [ - "cop" - ] - }, - { - "Type": "Variant", - "SubTag": "bohoric", - "Description": [ - "Slovene in Bohori\u010D alphabet" - ], - "Added": "2012-06-27", - "Scope": "None", - "Comments": [ - "The subtag represents the alphabet codified by Adam Bohori\u010D in 1584 and used from the first printed Slovene book and up to the mid-19th century." - ], - "Prefix": [ - "sl" - ] - }, - { - "Type": "Variant", - "SubTag": "boont", - "Description": [ - "Boontling" - ], - "Added": "2006-09-18", - "Scope": "None", - "Comments": [ - "Jargon embedded in American English" - ], - "Prefix": [ - "en" - ] - }, - { - "Type": "Variant", - "SubTag": "bornholm", - "Description": [ - "Bornholmsk" - ], - "Added": "2019-03-27", - "Scope": "None", - "Comments": [], - "Prefix": [ - "da" - ] - }, - { - "Type": "Variant", - "SubTag": "cisaup", - "Description": [ - "Cisalpine" - ], - "Added": "2018-04-22", - "Scope": "None", - "Comments": [ - "Occitan variant spoken in northwestern Italy" - ], - "Prefix": [ - "oc" - ] - }, - { - "Type": "Variant", - "SubTag": "colb1945", - "Description": [ - "Portuguese-Brazilian Orthographic Convention of 1945 (Conven\u00E7\u00E3o Ortogr\u00E1fica Luso-Brasileira de 1945)" - ], - "Added": "2015-05-06", - "Scope": "None", - "Comments": [ - "Portuguese orthography conventions established in 1945, generally in effect until 2009. This reform was not ratified in Brazil." - ], - "Prefix": [ - "pt" - ] - }, - { - "Type": "Variant", - "SubTag": "cornu", - "Description": [ - "Cornu-English", - "Cornish English", - "Anglo-Cornish" - ], - "Added": "2015-12-07", - "Scope": "None", - "Comments": [], - "Prefix": [ - "en" - ] - }, - { - "Type": "Variant", - "SubTag": "creiss", - "Description": [ - "Occitan variants of the Croissant area" - ], - "Added": "2018-04-22", - "Scope": "None", - "Comments": [], - "Prefix": [ - "oc" - ] - }, - { - "Type": "Variant", - "SubTag": "dajnko", - "Description": [ - "Slovene in Dajnko alphabet" - ], - "Added": "2012-06-27", - "Scope": "None", - "Comments": [ - "The subtag represents the alphabet codified by Peter Dajnko and used from 1824 to 1839 mostly in Styria (in what is now Eastern Slovenia)." - ], - "Prefix": [ - "sl" - ] - }, - { - "Type": "Variant", - "SubTag": "ekavsk", - "Description": [ - "Serbian with Ekavian pronunciation" - ], - "Added": "2013-12-02", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sr", - "sr-Latn", - "sr-Cyrl" - ] - }, - { - "Type": "Variant", - "SubTag": "emodeng", - "Description": [ - "Early Modern English (1500-1700)" - ], - "Added": "2012-02-05", - "Scope": "None", - "Comments": [], - "Prefix": [ - "en" - ] - }, - { - "Type": "Variant", - "SubTag": "fascia", - "Description": [ - "Fascia standard of Ladin" - ], - "Added": "2024-03-04", - "Scope": "None", - "Comments": [ - "Represents the standard written form of Ladin in Fascia which unified the three subvarieties Cazet, Brach and Moenat" - ], - "Prefix": [ - "lld" - ] - }, - { - "Type": "Variant", - "SubTag": "fayyumic", - "Description": [ - "Fayyumic dialect of Coptic" - ], - "Added": "2025-07-14", - "Scope": "None", - "Comments": [], - "Prefix": [ - "cop" - ] - }, - { - "Type": "Variant", - "SubTag": "fodom", - "Description": [ - "Fodom standard of Ladin" - ], - "Added": "2024-03-04", - "Scope": "None", - "Comments": [ - "Represents the standard written form of Ladin in Livinallongo and Colle Santa Lucia" - ], - "Prefix": [ - "lld" - ] - }, - { - "Type": "Variant", - "SubTag": "fonipa", - "Description": [ - "International Phonetic Alphabet" - ], - "Added": "2006-12-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Variant", - "SubTag": "fonkirsh", - "Description": [ - "Kirshenbaum Phonetic Alphabet" - ], - "Added": "2018-04-22", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Variant", - "SubTag": "fonnapa", - "Description": [ - "North American Phonetic Alphabet", - "Americanist Phonetic Notation" - ], - "Added": "2016-06-24", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Variant", - "SubTag": "fonupa", - "Description": [ - "Uralic Phonetic Alphabet" - ], - "Added": "2006-12-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Variant", - "SubTag": "fonxsamp", - "Description": [ - "X-SAMPA transcription" - ], - "Added": "2010-10-23", - "Scope": "None", - "Comments": [ - "Indicates that the content is transcribed according to X-SAMPA" - ], - "Prefix": [] - }, - { - "Type": "Variant", - "SubTag": "gallo", - "Description": [ - "Gallo" - ], - "Added": "2021-08-05", - "Scope": "None", - "Comments": [], - "Prefix": [ - "fr" - ] - }, - { - "Type": "Variant", - "SubTag": "gascon", - "Description": [ - "Gascon" - ], - "Added": "2018-04-22", - "Scope": "None", - "Comments": [ - "Occitan variant spoken in Gascony" - ], - "Prefix": [ - "oc" - ] - }, - { - "Type": "Variant", - "SubTag": "gherd", - "Description": [ - "Gherd\u00EBina standard of Ladin" - ], - "Added": "2024-03-04", - "Scope": "None", - "Comments": [ - "Represents the standard written form of Ladin in Gherd\u00EBina" - ], - "Prefix": [ - "lld" - ] - }, - { - "Type": "Variant", - "SubTag": "grclass", - "Description": [ - "Classical Occitan orthography" - ], - "Added": "2018-04-22", - "Scope": "None", - "Comments": [ - "Classical written standard for Occitan developed in 1935 by Alib\u00E8rt" - ], - "Prefix": [ - "oc", - "oc-aranes", - "oc-auvern", - "oc-cisaup", - "oc-creiss", - "oc-gascon", - "oc-lemosin", - "oc-lengadoc", - "oc-nicard", - "oc-provenc", - "oc-vivaraup" - ] - }, - { - "Type": "Variant", - "SubTag": "grital", - "Description": [ - "Italian-inspired Occitan orthography" - ], - "Added": "2018-04-22", - "Scope": "None", - "Comments": [], - "Prefix": [ - "oc", - "oc-cisaup", - "oc-nicard", - "oc-provenc" - ] - }, - { - "Type": "Variant", - "SubTag": "grmistr", - "Description": [ - "Mistralian or Mistralian-inspired Occitan orthography" - ], - "Added": "2018-04-22", - "Scope": "None", - "Comments": [ - "Written standard developed by Romanilha in 1853 and used by Mistral and the F\u00E9libres, including derived standards such as Escolo d\u00F3u Po, Escolo Gaston Febus, and others" - ], - "Prefix": [ - "oc", - "oc-aranes", - "oc-auvern", - "oc-cisaup", - "oc-creiss", - "oc-gascon", - "oc-lemosin", - "oc-lengadoc", - "oc-nicard", - "oc-provenc", - "oc-vivaraup" - ] - }, - { - "Type": "Variant", - "SubTag": "hanoi", - "Description": [ - "The H\u00E0 N\u1ED9i variant of Vietnamese" - ], - "Added": "2025-03-10", - "Scope": "None", - "Comments": [], - "Prefix": [ - "vi" - ] - }, - { - "Type": "Variant", - "SubTag": "hepburn", - "Description": [ - "Hepburn romanization" - ], - "Added": "2009-10-01", - "Scope": "None", - "Comments": [], - "Prefix": [ - "ja-Latn" - ] - }, - { - "Type": "Variant", - "SubTag": "heploc", - "Description": [ - "Hepburn romanization, Library of Congress method" - ], - "Added": "2009-10-01", - "Scope": "None", - "Deprecated": "2010-02-07", - "Comments": [ - "Preferred tag is ja-Latn-alalc97" - ], - "Prefix": [ - "ja-Latn-hepburn" - ], - "PreferredValue": "alalc97" - }, - { - "Type": "Variant", - "SubTag": "hognorsk", - "Description": [ - "Norwegian in H\u00F8gnorsk (High Norwegian) orthography" - ], - "Added": "2010-01-02", - "Scope": "None", - "Comments": [ - "Norwegian following Ivar Aasen\u0027s orthographical principles, including modern usage." - ], - "Prefix": [ - "nn" - ] - }, - { - "Type": "Variant", - "SubTag": "hsistemo", - "Description": [ - "Standard H-system orthographic fallback for spelling Esperanto" - ], - "Added": "2017-03-14", - "Scope": "None", - "Comments": [], - "Prefix": [ - "eo" - ] - }, - { - "Type": "Variant", - "SubTag": "huett", - "Description": [ - "The Hu\u1EBF (province Th\u1EEBa Thi\u00EAn) variant of Vietnamese" - ], - "Added": "2025-03-10", - "Scope": "None", - "Comments": [], - "Prefix": [ - "vi" - ] - }, - { - "Type": "Variant", - "SubTag": "ijekavsk", - "Description": [ - "Serbian with Ijekavian pronunciation" - ], - "Added": "2013-12-02", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sr", - "sr-Latn", - "sr-Cyrl" - ] - }, - { - "Type": "Variant", - "SubTag": "itihasa", - "Description": [ - "Epic Sanskrit" - ], - "Added": "2010-07-28", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sa" - ] - }, - { - "Type": "Variant", - "SubTag": "ivanchov", - "Description": [ - "Bulgarian in 1899 orthography" - ], - "Added": "2017-12-13", - "Scope": "None", - "Comments": [ - "Bulgarian orthography introduced by Todor Ivanchov in 1899" - ], - "Prefix": [ - "bg" - ] - }, - { - "Type": "Variant", - "SubTag": "jauer", - "Description": [ - "Jauer dialect of Romansh" - ], - "Added": "2010-06-29", - "Scope": "None", - "Comments": [ - "The spoken dialect of the Val M\u00FCstair, which has no written standard." - ], - "Prefix": [ - "rm" - ] - }, - { - "Type": "Variant", - "SubTag": "jyutping", - "Description": [ - "Jyutping Cantonese Romanization" - ], - "Added": "2010-10-23", - "Scope": "None", - "Comments": [ - "Jyutping romanization of Cantonese" - ], - "Prefix": [ - "yue" - ] - }, - { - "Type": "Variant", - "SubTag": "kkcor", - "Description": [ - "Common Cornish orthography of Revived Cornish" - ], - "Added": "2008-10-14", - "Scope": "None", - "Comments": [], - "Prefix": [ - "kw" - ] - }, - { - "Type": "Variant", - "SubTag": "kleinsch", - "Description": [ - "Kleinschmidt orthography", - "Allattaasitaamut" - ], - "Added": "2024-07-20", - "Scope": "None", - "Comments": [ - "Orthography for Greenlandic designed by Samuel Kleinschmidt, used from 1851 to 1973." - ], - "Prefix": [ - "kl", - "kl-tunumiit" - ] - }, - { - "Type": "Variant", - "SubTag": "kociewie", - "Description": [ - "The Kociewie dialect of Polish" - ], - "Added": "2014-11-27", - "Scope": "None", - "Comments": [ - "The dialect of Kociewie is spoken in the region around Starogard Gda\u0144ski, Tczew and \u015Awiecie in northern Poland." - ], - "Prefix": [ - "pl" - ] - }, - { - "Type": "Variant", - "SubTag": "kscor", - "Description": [ - "Standard Cornish orthography of Revived Cornish", - "Kernowek Standard" - ], - "Added": "2012-06-27", - "Scope": "None", - "Comments": [], - "Prefix": [ - "kw" - ] - }, - { - "Type": "Variant", - "SubTag": "laukika", - "Description": [ - "Classical Sanskrit" - ], - "Added": "2010-07-28", - "Scope": "None", - "Deprecated": "2024-06-08", - "Comments": [ - "Preferred tag is cls" - ], - "Prefix": [ - "sa" - ] - }, - { - "Type": "Variant", - "SubTag": "leidentr", - "Description": [ - "Ancient Egyptian in Leiden Unified Transliteration" - ], - "Added": "2025-02-06", - "Scope": "None", - "Comments": [ - "Recommended by the International Association of Egyptologists" - ], - "Prefix": [ - "egy" - ] - }, - { - "Type": "Variant", - "SubTag": "lemosin", - "Description": [ - "Limousin" - ], - "Added": "2018-04-22", - "Scope": "None", - "Comments": [ - "Occitan variant spoken in Limousin" - ], - "Prefix": [ - "oc" - ] - }, - { - "Type": "Variant", - "SubTag": "lengadoc", - "Description": [ - "Languedocien" - ], - "Added": "2018-04-22", - "Scope": "None", - "Comments": [ - "Occitan variant spoken in Languedoc" - ], - "Prefix": [ - "oc" - ] - }, - { - "Type": "Variant", - "SubTag": "lipaw", - "Description": [ - "The Lipovaz dialect of Resian", - "The Lipovec dialect of Resian" - ], - "Added": "2007-08-11", - "Scope": "None", - "Comments": [ - "The dialect of Lipovaz/Lipovec is one of the minor local dialects of Resian" - ], - "Prefix": [ - "sl-rozaj" - ] - }, - { - "Type": "Variant", - "SubTag": "ltg1929", - "Description": [ - "The Latgalian language orthography codified in 1929" - ], - "Added": "2022-08-05", - "Scope": "None", - "Comments": [], - "Prefix": [ - "ltg" - ] - }, - { - "Type": "Variant", - "SubTag": "ltg2007", - "Description": [ - "The Latgalian language orthography codified in the language law in 2007" - ], - "Added": "2022-06-23", - "Scope": "None", - "Comments": [], - "Prefix": [ - "ltg" - ] - }, - { - "Type": "Variant", - "SubTag": "luna1918", - "Description": [ - "Post-1917 Russian orthography" - ], - "Added": "2010-10-10", - "Scope": "None", - "Comments": [ - "Russian orthography as established by the 1917/1918 orthographic reforms" - ], - "Prefix": [ - "ru" - ] - }, - { - "Type": "Variant", - "SubTag": "lycopol", - "Description": [ - "Lycopolitan alias Subakhmimic dialect of Coptic" - ], - "Added": "2025-07-14", - "Scope": "None", - "Comments": [], - "Prefix": [ - "cop" - ] - }, - { - "Type": "Variant", - "SubTag": "mdcegyp", - "Description": [ - "Ancient Egyptian hieroglyphs encoded in Manuel de Codage" - ], - "Added": "2025-02-06", - "Scope": "None", - "Comments": [], - "Prefix": [ - "egy" - ] - }, - { - "Type": "Variant", - "SubTag": "mdctrans", - "Description": [ - "Ancient Egyptian transliteration encoded in Manuel de Codage" - ], - "Added": "2025-02-06", - "Scope": "None", - "Comments": [], - "Prefix": [ - "egy" - ] - }, - { - "Type": "Variant", - "SubTag": "mesokem", - "Description": [ - "Mesokemic alias Oxyrhynchite dialect of Coptic" - ], - "Added": "2025-07-14", - "Scope": "None", - "Comments": [], - "Prefix": [ - "cop" - ] - }, - { - "Type": "Variant", - "SubTag": "metelko", - "Description": [ - "Slovene in Metelko alphabet" - ], - "Added": "2012-06-27", - "Scope": "None", - "Comments": [ - "The subtag represents the alphabet codified by Franc Serafin Metelko and used from 1825 to 1833." - ], - "Prefix": [ - "sl" - ] - }, - { - "Type": "Variant", - "SubTag": "moderat", - "Description": [ - "The moderate (conservative, i.e. Danish-like) spelling variant of Bokm\u00E5l" - ], - "Added": "2026-04-21", - "Scope": "None", - "Comments": [], - "Prefix": [ - "nb" - ] - }, - { - "Type": "Variant", - "SubTag": "monoton", - "Description": [ - "Monotonic Greek" - ], - "Added": "2006-12-11", - "Scope": "None", - "Comments": [], - "Prefix": [ - "el" - ] - }, - { - "Type": "Variant", - "SubTag": "ndyuka", - "Description": [ - "Ndyuka dialect", - "Aukan dialect" - ], - "Added": "2009-09-05", - "Scope": "None", - "Comments": [ - "Ndyuka dialect of the \u0022Busi Nenge Tongo\u0022 English-based Creole continuum in Eastern Suriname and Western French Guiana" - ], - "Prefix": [ - "djk" - ] - }, - { - "Type": "Variant", - "SubTag": "nedis", - "Description": [ - "Natisone dialect", - "Nadiza dialect" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sl" - ] - }, - { - "Type": "Variant", - "SubTag": "newfound", - "Description": [ - "Newfoundland English" - ], - "Added": "2015-11-25", - "Scope": "None", - "Comments": [], - "Prefix": [ - "en-CA" - ] - }, - { - "Type": "Variant", - "SubTag": "nicard", - "Description": [ - "Ni\u00E7ard" - ], - "Added": "2018-04-22", - "Scope": "None", - "Comments": [ - "Occitan variant spoken in Nice" - ], - "Prefix": [ - "oc" - ] - }, - { - "Type": "Variant", - "SubTag": "njiva", - "Description": [ - "The Gniva dialect of Resian", - "The Njiva dialect of Resian" - ], - "Added": "2007-07-05", - "Scope": "None", - "Comments": [ - "The dialect of Gniva/Njiva is one of the four major local dialects of Resian" - ], - "Prefix": [ - "sl-rozaj" - ] - }, - { - "Type": "Variant", - "SubTag": "nulik", - "Description": [ - "Volap\u00FCk nulik", - "Volap\u00FCk perevid\u00F6l", - "Volap\u00FCk nul\u00E4dik", - "de Jong\u0027s Volap\u00FCk", - "New Volap\u00FCk", - "Revised Volap\u00FCk", - "Modern Volap\u00FCk" - ], - "Added": "2012-01-28", - "Scope": "None", - "Comments": [], - "Prefix": [ - "vo" - ] - }, - { - "Type": "Variant", - "SubTag": "osojs", - "Description": [ - "The Oseacco dialect of Resian", - "The Osojane dialect of Resian" - ], - "Added": "2007-07-05", - "Scope": "None", - "Comments": [ - "The dialect of Oseacco/Osojane is one of the four major local dialects of Resian" - ], - "Prefix": [ - "sl-rozaj" - ] - }, - { - "Type": "Variant", - "SubTag": "oxendict", - "Description": [ - "Oxford English Dictionary spelling" - ], - "Added": "2015-04-17", - "Scope": "None", - "Comments": [], - "Prefix": [ - "en" - ] - }, - { - "Type": "Variant", - "SubTag": "pahawh2", - "Description": [ - "Pahawh Hmong Second Stage Reduced orthography" - ], - "Added": "2017-01-13", - "Scope": "None", - "Comments": [], - "Prefix": [ - "mww", - "hnj" - ] - }, - { - "Type": "Variant", - "SubTag": "pahawh3", - "Description": [ - "Pahawh Hmong Third Stage Reduced orthography" - ], - "Added": "2017-01-13", - "Scope": "None", - "Comments": [], - "Prefix": [ - "mww", - "hnj" - ] - }, - { - "Type": "Variant", - "SubTag": "pahawh4", - "Description": [ - "Pahawh Hmong Final Version orthography" - ], - "Added": "2017-01-13", - "Scope": "None", - "Comments": [], - "Prefix": [ - "mww", - "hnj" - ] - }, - { - "Type": "Variant", - "SubTag": "pamaka", - "Description": [ - "Pamaka dialect" - ], - "Added": "2009-09-05", - "Scope": "None", - "Comments": [ - "Pamaka dialect of the \u0022Busi Nenge Tongo\u0022 English-based Creole continuum in Eastern Suriname and Western French Guiana" - ], - "Prefix": [ - "djk" - ] - }, - { - "Type": "Variant", - "SubTag": "peano", - "Description": [ - "Latino Sine Flexione", - "Interlingua de API", - "Interlingua de Peano" - ], - "Added": "2020-03-12", - "Scope": "None", - "Comments": [ - "Peano\u2019s Interlingua, created in 1903 by Giuseppe Peano as an international auxiliary language" - ], - "Prefix": [ - "la" - ] - }, - { - "Type": "Variant", - "SubTag": "pehoeji", - "Description": [ - "Hokkien Vernacular Romanization System", - "Pe\u030Dh-\u014De-j\u012B orthography/romanization" - ], - "Added": "2024-03-04", - "Scope": "None", - "Comments": [ - "Modern Hokkien Vernacular Romanization System, evolved from the New Dictionary in the Amoy by John Van Nest Talmage in 1894" - ], - "Prefix": [ - "nan-Latn" - ] - }, - { - "Type": "Variant", - "SubTag": "petr1708", - "Description": [ - "Petrine orthography" - ], - "Added": "2010-10-10", - "Scope": "None", - "Comments": [ - "Russian orthography from the Petrine orthographic reforms of 1708 to the 1917 orthographic reform" - ], - "Prefix": [ - "ru" - ] - }, - { - "Type": "Variant", - "SubTag": "pinyin", - "Description": [ - "Pinyin romanization" - ], - "Added": "2008-10-14", - "Scope": "None", - "Comments": [], - "Prefix": [ - "zh-Latn", - "bo-Latn" - ] - }, - { - "Type": "Variant", - "SubTag": "polyton", - "Description": [ - "Polytonic Greek" - ], - "Added": "2006-12-11", - "Scope": "None", - "Comments": [], - "Prefix": [ - "el" - ] - }, - { - "Type": "Variant", - "SubTag": "provenc", - "Description": [ - "Proven\u00E7al" - ], - "Added": "2018-04-22", - "Scope": "None", - "Comments": [ - "Occitan variant spoken in Provence" - ], - "Prefix": [ - "oc" - ] - }, - { - "Type": "Variant", - "SubTag": "puter", - "Description": [ - "Puter idiom of Romansh" - ], - "Added": "2010-06-29", - "Scope": "None", - "Comments": [ - "Puter is one of the five traditional written standards or \u0022idioms\u0022 of the Romansh language." - ], - "Prefix": [ - "rm" - ] - }, - { - "Type": "Variant", - "SubTag": "radikalt", - "Description": [ - "Radical (i.e. Nynorsk-like) spelling variant of Bokm\u00E5l" - ], - "Added": "2026-04-21", - "Scope": "None", - "Comments": [], - "Prefix": [ - "nb" - ] - }, - { - "Type": "Variant", - "SubTag": "rigik", - "Description": [ - "Volap\u00FCk rigik", - "Schleyer\u0027s Volap\u00FCk", - "Original Volap\u00FCk", - "Classic Volap\u00FCk" - ], - "Added": "2012-01-28", - "Scope": "None", - "Comments": [], - "Prefix": [ - "vo" - ] - }, - { - "Type": "Variant", - "SubTag": "rozaj", - "Description": [ - "Resian", - "Resianic", - "Rezijan" - ], - "Added": "2005-10-16", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sl" - ] - }, - { - "Type": "Variant", - "SubTag": "rumgr", - "Description": [ - "Rumantsch Grischun" - ], - "Added": "2010-06-29", - "Scope": "None", - "Comments": [ - "Supraregional Romansh written standard" - ], - "Prefix": [ - "rm" - ] - }, - { - "Type": "Variant", - "SubTag": "sahidic", - "Description": [ - "Sahidic dialect of Coptic" - ], - "Added": "2025-07-14", - "Scope": "None", - "Comments": [], - "Prefix": [ - "cop" - ] - }, - { - "Type": "Variant", - "SubTag": "saigon", - "Description": [ - "The S\u00E0i G\u00F2n variant of Vietnamese" - ], - "Added": "2025-03-10", - "Scope": "None", - "Comments": [], - "Prefix": [ - "vi" - ] - }, - { - "Type": "Variant", - "SubTag": "scotland", - "Description": [ - "Scottish Standard English" - ], - "Added": "2007-08-31", - "Scope": "None", - "Comments": [], - "Prefix": [ - "en" - ] - }, - { - "Type": "Variant", - "SubTag": "scouse", - "Description": [ - "Scouse" - ], - "Added": "2006-09-18", - "Scope": "None", - "Comments": [ - "English Liverpudlian dialect known as \u0027Scouse\u0027" - ], - "Prefix": [ - "en" - ] - }, - { - "Type": "Variant", - "SubTag": "simple", - "Description": [ - "Simplified form" - ], - "Added": "2015-12-29", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Variant", - "SubTag": "slepe", - "Description": [ - "Sorbian dialect of Schleife" - ], - "Added": "2026-04-09", - "Scope": "None", - "Comments": [ - "Spoken in the Free State of Saxony in Germany" - ], - "Prefix": [ - "dsb" - ] - }, - { - "Type": "Variant", - "SubTag": "solba", - "Description": [ - "The Stolvizza dialect of Resian", - "The Solbica dialect of Resian" - ], - "Added": "2007-07-05", - "Scope": "None", - "Comments": [ - "The dialect of Stolvizza/Solbica is one of the four major local dialects of Resian" - ], - "Prefix": [ - "sl-rozaj" - ] - }, - { - "Type": "Variant", - "SubTag": "sotav", - "Description": [ - "The Sotavento dialect group of Kabuverdianu" - ], - "Added": "2013-12-10", - "Scope": "None", - "Comments": [ - "Sotavento is one of the two main dialect groups of Kabuverdianu." - ], - "Prefix": [ - "kea" - ] - }, - { - "Type": "Variant", - "SubTag": "spanglis", - "Description": [ - "Spanglish" - ], - "Added": "2017-02-23", - "Scope": "None", - "Comments": [ - "A variety of contact dialects of English and Spanish" - ], - "Prefix": [ - "en", - "es" - ] - }, - { - "Type": "Variant", - "SubTag": "stadi", - "Description": [ - "The \u0022Stadin slangi\u0022 dialect of Finnish" - ], - "Added": "2026-04-09", - "Scope": "None", - "Comments": [ - "\u0022Stadi\u0022 means the city of Helsinki in the dialect." - ], - "Prefix": [ - "fi" - ] - }, - { - "Type": "Variant", - "SubTag": "surmiran", - "Description": [ - "Surmiran idiom of Romansh" - ], - "Added": "2010-06-29", - "Scope": "None", - "Comments": [ - "Surmiran is one of the five traditional written standards or \u0022idioms\u0022 of the Romansh language." - ], - "Prefix": [ - "rm" - ] - }, - { - "Type": "Variant", - "SubTag": "sursilv", - "Description": [ - "Sursilvan idiom of Romansh" - ], - "Added": "2010-06-29", - "Scope": "None", - "Comments": [ - "Sursilvan is one of the five traditional written standards or \u0022idioms\u0022 of the Romansh language." - ], - "Prefix": [ - "rm" - ] - }, - { - "Type": "Variant", - "SubTag": "sutsilv", - "Description": [ - "Sutsilvan idiom of Romansh" - ], - "Added": "2010-06-29", - "Scope": "None", - "Comments": [ - "Sutsilvan is one of the five traditional written standards or \u0022idioms\u0022 of the Romansh language." - ], - "Prefix": [ - "rm" - ] - }, - { - "Type": "Variant", - "SubTag": "synnejyl", - "Description": [ - "Synnejysk", - "South Jutish" - ], - "Added": "2021-07-17", - "Scope": "None", - "Comments": [], - "Prefix": [ - "da" - ] - }, - { - "Type": "Variant", - "SubTag": "taglish", - "Description": [ - "Tagalog-English code-switching" - ], - "Added": "2026-04-09", - "Scope": "None", - "Comments": [ - "This subtag represents Taglish, wherever it is different from straight Tagalog or straight English." - ], - "Prefix": [ - "en", - "tl", - "fil" - ] - }, - { - "Type": "Variant", - "SubTag": "tailo", - "Description": [ - "Taiwanese Hokkien Romanization System for Hokkien languages", - "T\u00E2i-l\u00F4 orthography/romanization" - ], - "Added": "2024-03-04", - "Scope": "None", - "Comments": [ - "Taiwanese Hokkien Romanization System (T\u00E2i-l\u00F4) published in 2006 by the Taiwan Ministry of Education" - ], - "Prefix": [ - "nan-Latn" - ] - }, - { - "Type": "Variant", - "SubTag": "tarask", - "Description": [ - "Belarusian in Taraskievica orthography" - ], - "Added": "2007-04-27", - "Scope": "None", - "Comments": [ - "The subtag represents Branislau Taraskievic\u0027s Belarusian orthography as published in \u0022Bielaruski klasycny pravapis\u0022 by Juras Buslakou, Vincuk Viacorka, Zmicier Sanko, and Zmicier Sauka (Vilnia- Miensk 2005)." - ], - "Prefix": [ - "be" - ] - }, - { - "Type": "Variant", - "SubTag": "tongyong", - "Description": [ - "Tongyong Pinyin romanization" - ], - "Added": "2020-06-08", - "Scope": "None", - "Comments": [ - "Former official transcription standard for Mandarin Chinese in Taiwan." - ], - "Prefix": [ - "zh-Latn" - ] - }, - { - "Type": "Variant", - "SubTag": "tunumiit", - "Description": [ - "Tunumiisiut", - "East Greenlandic", - "\u00D8stgr\u00F8nlandsk" - ], - "Added": "2020-07-16", - "Scope": "None", - "Comments": [ - "Also known as Tunumiit oraasiat" - ], - "Prefix": [ - "kl" - ] - }, - { - "Type": "Variant", - "SubTag": "uccor", - "Description": [ - "Unified Cornish orthography of Revived Cornish" - ], - "Added": "2008-10-14", - "Scope": "None", - "Comments": [], - "Prefix": [ - "kw" - ] - }, - { - "Type": "Variant", - "SubTag": "ucrcor", - "Description": [ - "Unified Cornish Revised orthography of Revived Cornish" - ], - "Added": "2008-10-14", - "Scope": "None", - "Comments": [], - "Prefix": [ - "kw" - ] - }, - { - "Type": "Variant", - "SubTag": "ulster", - "Description": [ - "Ulster dialect of Scots" - ], - "Added": "2010-04-10", - "Scope": "None", - "Comments": [], - "Prefix": [ - "sco" - ] - }, - { - "Type": "Variant", - "SubTag": "unifon", - "Description": [ - "Unifon phonetic alphabet" - ], - "Added": "2013-10-02", - "Scope": "None", - "Comments": [], - "Prefix": [ - "en", - "hup", - "kyh", - "tol", - "yur" - ] - }, - { - "Type": "Variant", - "SubTag": "vaidika", - "Description": [ - "Vedic Sanskrit" - ], - "Added": "2010-07-28", - "Scope": "None", - "Deprecated": "2024-06-08", - "Comments": [ - "The most ancient dialect of Sanskrit used in verse and prose composed until about the 4th century B.C.E.", - "Preferred tag is vsn" - ], - "Prefix": [ - "sa" - ] - }, - { - "Type": "Variant", - "SubTag": "valbadia", - "Description": [ - "Val Badia standard of Ladin" - ], - "Added": "2024-03-04", - "Scope": "None", - "Comments": [ - "Represents the standard written form of Ladin in the Val Badia, unifying the three variants Mar\u00F4, Mesaval and Badiot spoken in this valley" - ], - "Prefix": [ - "lld" - ] - }, - { - "Type": "Variant", - "SubTag": "valencia", - "Description": [ - "Valencian" - ], - "Added": "2007-03-06", - "Scope": "None", - "Comments": [ - "Variety spoken in the \u0022Comunidad Valenciana\u0022 region of Spain, where it is co-official with Spanish." - ], - "Prefix": [ - "ca" - ] - }, - { - "Type": "Variant", - "SubTag": "vallader", - "Description": [ - "Vallader idiom of Romansh" - ], - "Added": "2010-06-29", - "Scope": "None", - "Comments": [ - "Vallader is one of the five traditional written standards or \u0022idioms\u0022 of the Romansh language." - ], - "Prefix": [ - "rm" - ] - }, - { - "Type": "Variant", - "SubTag": "vecdruka", - "Description": [ - "Latvian orthography used before 1920s (\u0022vec\u0101 druka\u0022)" - ], - "Added": "2020-09-26", - "Scope": "None", - "Comments": [ - "The subtag represents the old orthography of the Latvian language used during c. 1600s\u20131920s." - ], - "Prefix": [ - "lv" - ] - }, - { - "Type": "Variant", - "SubTag": "viennese", - "Description": [ - "The Viennese dialect of German" - ], - "Added": "2025-06-22", - "Scope": "None", - "Comments": [], - "Prefix": [ - "de" - ] - }, - { - "Type": "Variant", - "SubTag": "vivaraup", - "Description": [ - "Vivaro-Alpine" - ], - "Added": "2018-04-22", - "Scope": "None", - "Comments": [ - "Occitan variant spoken in northeastern Occitania" - ], - "Prefix": [ - "oc" - ] - }, - { - "Type": "Variant", - "SubTag": "wadegile", - "Description": [ - "Wade-Giles romanization" - ], - "Added": "2008-10-03", - "Scope": "None", - "Comments": [], - "Prefix": [ - "zh-Latn" - ] - }, - { - "Type": "Variant", - "SubTag": "xsistemo", - "Description": [ - "Standard X-system orthographic fallback for spelling Esperanto" - ], - "Added": "2017-03-14", - "Scope": "None", - "Comments": [], - "Prefix": [ - "eo" - ] - }, - { - "Type": "Grandfathered", - "Tag": "art-lojban", - "Description": [ - "Lojban" - ], - "Added": "2001-11-11", - "Scope": "None", - "Deprecated": "2003-09-02", - "Comments": [], - "Prefix": [], - "PreferredValue": "jbo" - }, - { - "Type": "Grandfathered", - "Tag": "cel-gaulish", - "Description": [ - "Gaulish" - ], - "Added": "2001-05-25", - "Scope": "None", - "Deprecated": "2015-03-29", - "Comments": [ - "see xcg, xga, xtg" - ], - "Prefix": [] - }, - { - "Type": "Grandfathered", - "Tag": "en-GB-oed", - "Description": [ - "English, Oxford English Dictionary spelling" - ], - "Added": "2003-07-09", - "Scope": "None", - "Deprecated": "2015-04-17", - "Comments": [], - "Prefix": [], - "PreferredValue": "en-GB-oxendict" - }, - { - "Type": "Grandfathered", - "Tag": "i-ami", - "Description": [ - "Amis" - ], - "Added": "1999-05-25", - "Scope": "None", - "Deprecated": "2009-07-29", - "Comments": [], - "Prefix": [], - "PreferredValue": "ami" - }, - { - "Type": "Grandfathered", - "Tag": "i-bnn", - "Description": [ - "Bunun" - ], - "Added": "1999-05-25", - "Scope": "None", - "Deprecated": "2009-07-29", - "Comments": [], - "Prefix": [], - "PreferredValue": "bnn" - }, - { - "Type": "Grandfathered", - "Tag": "i-default", - "Description": [ - "Default Language" - ], - "Added": "1998-03-10", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Grandfathered", - "Tag": "i-enochian", - "Description": [ - "Enochian" - ], - "Added": "2002-07-03", - "Scope": "None", - "Deprecated": "2015-03-29", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Grandfathered", - "Tag": "i-hak", - "Description": [ - "Hakka" - ], - "Added": "1999-01-31", - "Scope": "None", - "Deprecated": "2000-01-10", - "Comments": [], - "Prefix": [], - "PreferredValue": "hak" - }, - { - "Type": "Grandfathered", - "Tag": "i-klingon", - "Description": [ - "Klingon" - ], - "Added": "1999-05-26", - "Scope": "None", - "Deprecated": "2004-02-24", - "Comments": [], - "Prefix": [], - "PreferredValue": "tlh" - }, - { - "Type": "Grandfathered", - "Tag": "i-lux", - "Description": [ - "Luxembourgish" - ], - "Added": "1997-09-19", - "Scope": "None", - "Deprecated": "1998-09-09", - "Comments": [], - "Prefix": [], - "PreferredValue": "lb" - }, - { - "Type": "Grandfathered", - "Tag": "i-mingo", - "Description": [ - "Mingo" - ], - "Added": "1997-09-19", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Grandfathered", - "Tag": "i-navajo", - "Description": [ - "Navajo" - ], - "Added": "1997-09-19", - "Scope": "None", - "Deprecated": "2000-02-18", - "Comments": [], - "Prefix": [], - "PreferredValue": "nv" - }, - { - "Type": "Grandfathered", - "Tag": "i-pwn", - "Description": [ - "Paiwan" - ], - "Added": "1999-05-25", - "Scope": "None", - "Deprecated": "2009-07-29", - "Comments": [], - "Prefix": [], - "PreferredValue": "pwn" - }, - { - "Type": "Grandfathered", - "Tag": "i-tao", - "Description": [ - "Tao" - ], - "Added": "1999-05-25", - "Scope": "None", - "Deprecated": "2009-07-29", - "Comments": [], - "Prefix": [], - "PreferredValue": "tao" - }, - { - "Type": "Grandfathered", - "Tag": "i-tay", - "Description": [ - "Tayal" - ], - "Added": "1999-05-25", - "Scope": "None", - "Deprecated": "2009-07-29", - "Comments": [], - "Prefix": [], - "PreferredValue": "tay" - }, - { - "Type": "Grandfathered", - "Tag": "i-tsu", - "Description": [ - "Tsou" - ], - "Added": "1999-05-25", - "Scope": "None", - "Deprecated": "2009-07-29", - "Comments": [], - "Prefix": [], - "PreferredValue": "tsu" - }, - { - "Type": "Grandfathered", - "Tag": "no-bok", - "Description": [ - "Norwegian Bokmal" - ], - "Added": "1995-08-23", - "Scope": "None", - "Deprecated": "2000-02-18", - "Comments": [], - "Prefix": [], - "PreferredValue": "nb" - }, - { - "Type": "Grandfathered", - "Tag": "no-nyn", - "Description": [ - "Norwegian Nynorsk" - ], - "Added": "1995-08-23", - "Scope": "None", - "Deprecated": "2000-02-18", - "Comments": [], - "Prefix": [], - "PreferredValue": "nn" - }, - { - "Type": "Grandfathered", - "Tag": "sgn-BE-FR", - "Description": [ - "Belgian-French Sign Language" - ], - "Added": "2001-11-11", - "Scope": "None", - "Deprecated": "2009-07-29", - "Comments": [], - "Prefix": [], - "PreferredValue": "sfb" - }, - { - "Type": "Grandfathered", - "Tag": "sgn-BE-NL", - "Description": [ - "Belgian-Flemish Sign Language" - ], - "Added": "2001-11-11", - "Scope": "None", - "Deprecated": "2009-07-29", - "Comments": [], - "Prefix": [], - "PreferredValue": "vgt" - }, - { - "Type": "Grandfathered", - "Tag": "sgn-CH-DE", - "Description": [ - "Swiss German Sign Language" - ], - "Added": "2001-11-11", - "Scope": "None", - "Deprecated": "2009-07-29", - "Comments": [], - "Prefix": [], - "PreferredValue": "sgg" - }, - { - "Type": "Grandfathered", - "Tag": "zh-guoyu", - "Description": [ - "Mandarin or Standard Chinese" - ], - "Added": "1999-12-18", - "Scope": "None", - "Deprecated": "2005-07-15", - "Comments": [], - "Prefix": [], - "PreferredValue": "cmn" - }, - { - "Type": "Grandfathered", - "Tag": "zh-hakka", - "Description": [ - "Hakka" - ], - "Added": "1999-12-18", - "Scope": "None", - "Deprecated": "2009-07-29", - "Comments": [], - "Prefix": [], - "PreferredValue": "hak" - }, - { - "Type": "Grandfathered", - "Tag": "zh-min", - "Description": [ - "Min, Fuzhou, Hokkien, Amoy, or Taiwanese" - ], - "Added": "1999-12-18", - "Scope": "None", - "Deprecated": "2009-07-29", - "Comments": [ - "see cdo, cpx, czo, mnp, nan" - ], - "Prefix": [] - }, - { - "Type": "Grandfathered", - "Tag": "zh-min-nan", - "Description": [ - "Minnan, Hokkien, Amoy, Taiwanese, Southern Min, Southern Fujian, Hoklo, Southern Fukien, Ho-lo" - ], - "Added": "2001-03-26", - "Scope": "None", - "Deprecated": "2009-07-29", - "Comments": [], - "Prefix": [], - "PreferredValue": "nan" - }, - { - "Type": "Grandfathered", - "Tag": "zh-xiang", - "Description": [ - "Xiang or Hunanese" - ], - "Added": "1999-12-18", - "Scope": "None", - "Deprecated": "2009-07-29", - "Comments": [], - "Prefix": [], - "PreferredValue": "hsn" - }, - { - "Type": "Redundant", - "Tag": "az-Arab", - "Description": [ - "Azerbaijani in Arabic script" - ], - "Added": "2003-05-30", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Redundant", - "Tag": "az-Cyrl", - "Description": [ - "Azerbaijani in Cyrillic script" - ], - "Added": "2003-05-30", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Redundant", - "Tag": "az-Latn", - "Description": [ - "Azerbaijani in Latin script" - ], - "Added": "2003-05-30", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Redundant", - "Tag": "be-Latn", - "Description": [ - "Belarusian in Latin script" - ], - "Added": "2005-01-06", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Redundant", - "Tag": "bs-Cyrl", - "Description": [ - "Bosnian in Cyrillic script" - ], - "Added": "2005-02-17", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Redundant", - "Tag": "bs-Latn", - "Description": [ - "Bosnian in Latin script" - ], - "Added": "2005-02-17", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Redundant", - "Tag": "de-1901", - "Description": [ - "German, traditional orthography" - ], - "Added": "2001-07-17", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Redundant", - "Tag": "de-1996", - "Description": [ - "German, orthography of 1996" - ], - "Added": "2001-07-17", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Redundant", - "Tag": "de-AT-1901", - "Description": [ - "German, Austrian variant, traditional orthography" - ], - "Added": "2001-07-17", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Redundant", - "Tag": "de-AT-1996", - "Description": [ - "German, Austrian variant, orthography of 1996" - ], - "Added": "2001-07-17", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Redundant", - "Tag": "de-CH-1901", - "Description": [ - "German, Swiss variant, traditional orthography" - ], - "Added": "2001-07-17", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Redundant", - "Tag": "de-CH-1996", - "Description": [ - "German, Swiss variant, orthography of 1996" - ], - "Added": "2001-07-17", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Redundant", - "Tag": "de-DE-1901", - "Description": [ - "German, German variant, traditional orthography" - ], - "Added": "2001-07-17", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Redundant", - "Tag": "de-DE-1996", - "Description": [ - "German, German variant, orthography of 1996" - ], - "Added": "2001-07-17", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Redundant", - "Tag": "en-boont", - "Description": [ - "Boontling" - ], - "Added": "2003-02-14", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Redundant", - "Tag": "en-scouse", - "Description": [ - "Scouse" - ], - "Added": "2000-05-25", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Redundant", - "Tag": "es-419", - "Description": [ - "Latin American Spanish" - ], - "Added": "2005-07-15", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Redundant", - "Tag": "iu-Cans", - "Description": [ - "Inuktitut in Canadian Aboriginal Syllabic script" - ], - "Added": "2005-02-17", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Redundant", - "Tag": "iu-Latn", - "Description": [ - "Inuktitut in Latin script" - ], - "Added": "2005-02-17", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Redundant", - "Tag": "mn-Cyrl", - "Description": [ - "Mongolian in Cyrillic script" - ], - "Added": "2005-02-17", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Redundant", - "Tag": "mn-Mong", - "Description": [ - "Mongolian in Mongolian script" - ], - "Added": "2005-02-17", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Redundant", - "Tag": "sgn-BR", - "Description": [ - "Brazilian Sign Language" - ], - "Added": "2001-11-11", - "Scope": "None", - "Deprecated": "2009-07-29", - "Comments": [], - "Prefix": [], - "PreferredValue": "bzs" - }, - { - "Type": "Redundant", - "Tag": "sgn-CO", - "Description": [ - "Colombian Sign Language" - ], - "Added": "2001-11-11", - "Scope": "None", - "Deprecated": "2009-07-29", - "Comments": [], - "Prefix": [], - "PreferredValue": "csn" - }, - { - "Type": "Redundant", - "Tag": "sgn-DE", - "Description": [ - "German Sign Language" - ], - "Added": "2001-11-11", - "Scope": "None", - "Deprecated": "2009-07-29", - "Comments": [], - "Prefix": [], - "PreferredValue": "gsg" - }, - { - "Type": "Redundant", - "Tag": "sgn-DK", - "Description": [ - "Danish Sign Language" - ], - "Added": "2001-11-11", - "Scope": "None", - "Deprecated": "2009-07-29", - "Comments": [], - "Prefix": [], - "PreferredValue": "dsl" - }, - { - "Type": "Redundant", - "Tag": "sgn-ES", - "Description": [ - "Spanish Sign Language" - ], - "Added": "2001-11-11", - "Scope": "None", - "Deprecated": "2009-07-29", - "Comments": [], - "Prefix": [], - "PreferredValue": "ssp" - }, - { - "Type": "Redundant", - "Tag": "sgn-FR", - "Description": [ - "French Sign Language" - ], - "Added": "2001-11-11", - "Scope": "None", - "Deprecated": "2009-07-29", - "Comments": [], - "Prefix": [], - "PreferredValue": "fsl" - }, - { - "Type": "Redundant", - "Tag": "sgn-GB", - "Description": [ - "British Sign Language" - ], - "Added": "2001-03-02", - "Scope": "None", - "Deprecated": "2009-07-29", - "Comments": [], - "Prefix": [], - "PreferredValue": "bfi" - }, - { - "Type": "Redundant", - "Tag": "sgn-GR", - "Description": [ - "Greek Sign Language" - ], - "Added": "2001-11-11", - "Scope": "None", - "Deprecated": "2009-07-29", - "Comments": [], - "Prefix": [], - "PreferredValue": "gss" - }, - { - "Type": "Redundant", - "Tag": "sgn-IE", - "Description": [ - "Irish Sign Language" - ], - "Added": "2001-03-02", - "Scope": "None", - "Deprecated": "2009-07-29", - "Comments": [], - "Prefix": [], - "PreferredValue": "isg" - }, - { - "Type": "Redundant", - "Tag": "sgn-IT", - "Description": [ - "Italian Sign Language" - ], - "Added": "2001-11-11", - "Scope": "None", - "Deprecated": "2009-07-29", - "Comments": [], - "Prefix": [], - "PreferredValue": "ise" - }, - { - "Type": "Redundant", - "Tag": "sgn-JP", - "Description": [ - "Japanese Sign Language" - ], - "Added": "2001-11-11", - "Scope": "None", - "Deprecated": "2009-07-29", - "Comments": [], - "Prefix": [], - "PreferredValue": "jsl" - }, - { - "Type": "Redundant", - "Tag": "sgn-MX", - "Description": [ - "Mexican Sign Language" - ], - "Added": "2001-11-11", - "Scope": "None", - "Deprecated": "2009-07-29", - "Comments": [], - "Prefix": [], - "PreferredValue": "mfs" - }, - { - "Type": "Redundant", - "Tag": "sgn-NI", - "Description": [ - "Nicaraguan Sign Language" - ], - "Added": "2001-03-02", - "Scope": "None", - "Deprecated": "2009-07-29", - "Comments": [], - "Prefix": [], - "PreferredValue": "ncs" - }, - { - "Type": "Redundant", - "Tag": "sgn-NL", - "Description": [ - "Dutch Sign Language" - ], - "Added": "2001-11-11", - "Scope": "None", - "Deprecated": "2009-07-29", - "Comments": [], - "Prefix": [], - "PreferredValue": "dse" - }, - { - "Type": "Redundant", - "Tag": "sgn-NO", - "Description": [ - "Norwegian Sign Language" - ], - "Added": "2001-11-11", - "Scope": "None", - "Deprecated": "2009-07-29", - "Comments": [], - "Prefix": [], - "PreferredValue": "nsl" - }, - { - "Type": "Redundant", - "Tag": "sgn-PT", - "Description": [ - "Portuguese Sign Language" - ], - "Added": "2001-11-11", - "Scope": "None", - "Deprecated": "2009-07-29", - "Comments": [], - "Prefix": [], - "PreferredValue": "psr" - }, - { - "Type": "Redundant", - "Tag": "sgn-SE", - "Description": [ - "Swedish Sign Language" - ], - "Added": "2001-11-11", - "Scope": "None", - "Deprecated": "2009-07-29", - "Comments": [], - "Prefix": [], - "PreferredValue": "swl" - }, - { - "Type": "Redundant", - "Tag": "sgn-US", - "Description": [ - "American Sign Language" - ], - "Added": "2001-03-02", - "Scope": "None", - "Deprecated": "2009-07-29", - "Comments": [], - "Prefix": [], - "PreferredValue": "ase" - }, - { - "Type": "Redundant", - "Tag": "sgn-ZA", - "Description": [ - "South African Sign Language" - ], - "Added": "2001-11-11", - "Scope": "None", - "Deprecated": "2009-07-29", - "Comments": [], - "Prefix": [], - "PreferredValue": "sfs" - }, - { - "Type": "Redundant", - "Tag": "sl-nedis", - "Description": [ - "Natisone dialect, Nadiza dialect" - ], - "Added": "2004-06-01", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Redundant", - "Tag": "sl-rozaj", - "Description": [ - "Resian, Resianic, Rezijan" - ], - "Added": "2003-10-09", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Redundant", - "Tag": "sr-Cyrl", - "Description": [ - "Serbian in Cyrillic script" - ], - "Added": "2003-05-30", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Redundant", - "Tag": "sr-Latn", - "Description": [ - "Serbian in Latin script" - ], - "Added": "2003-05-30", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Redundant", - "Tag": "tg-Arab", - "Description": [ - "Tajik in Arabic script" - ], - "Added": "2005-02-17", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Redundant", - "Tag": "tg-Cyrl", - "Description": [ - "Tajik in Cyrillic script" - ], - "Added": "2005-02-17", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Redundant", - "Tag": "uz-Cyrl", - "Description": [ - "Uzbek in Cyrillic script" - ], - "Added": "2003-05-30", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Redundant", - "Tag": "uz-Latn", - "Description": [ - "Uzbek in Latin script" - ], - "Added": "2003-05-30", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Redundant", - "Tag": "yi-Latn", - "Description": [ - "Yiddish, in Latin script" - ], - "Added": "2003-01-07", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Redundant", - "Tag": "zh-cmn", - "Description": [ - "Mandarin Chinese" - ], - "Added": "2005-07-15", - "Scope": "None", - "Deprecated": "2009-07-29", - "Comments": [], - "Prefix": [], - "PreferredValue": "cmn" - }, - { - "Type": "Redundant", - "Tag": "zh-cmn-Hans", - "Description": [ - "Mandarin Chinese (Simplified)" - ], - "Added": "2005-07-15", - "Scope": "None", - "Deprecated": "2009-07-29", - "Comments": [], - "Prefix": [], - "PreferredValue": "cmn-Hans" - }, - { - "Type": "Redundant", - "Tag": "zh-cmn-Hant", - "Description": [ - "Mandarin Chinese (Traditional)" - ], - "Added": "2005-07-15", - "Scope": "None", - "Deprecated": "2009-07-29", - "Comments": [], - "Prefix": [], - "PreferredValue": "cmn-Hant" - }, - { - "Type": "Redundant", - "Tag": "zh-gan", - "Description": [ - "Kan or Gan" - ], - "Added": "1999-12-18", - "Scope": "None", - "Deprecated": "2009-07-29", - "Comments": [], - "Prefix": [], - "PreferredValue": "gan" - }, - { - "Type": "Redundant", - "Tag": "zh-Hans", - "Description": [ - "simplified Chinese" - ], - "Added": "2003-05-30", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Redundant", - "Tag": "zh-Hans-CN", - "Description": [ - "PRC Mainland Chinese in simplified script" - ], - "Added": "2005-04-13", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Redundant", - "Tag": "zh-Hans-HK", - "Description": [ - "Hong Kong Chinese in simplified script" - ], - "Added": "2005-04-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Redundant", - "Tag": "zh-Hans-MO", - "Description": [ - "Macao Chinese in simplified script" - ], - "Added": "2005-04-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Redundant", - "Tag": "zh-Hans-SG", - "Description": [ - "Singapore Chinese in simplified script" - ], - "Added": "2005-04-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Redundant", - "Tag": "zh-Hans-TW", - "Description": [ - "Taiwan Chinese in simplified script" - ], - "Added": "2005-04-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Redundant", - "Tag": "zh-Hant", - "Description": [ - "traditional Chinese" - ], - "Added": "2003-05-30", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Redundant", - "Tag": "zh-Hant-CN", - "Description": [ - "PRC Mainland Chinese in traditional script" - ], - "Added": "2005-04-13", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Redundant", - "Tag": "zh-Hant-HK", - "Description": [ - "Hong Kong Chinese in traditional script" - ], - "Added": "2005-04-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Redundant", - "Tag": "zh-Hant-MO", - "Description": [ - "Macao Chinese in traditional script" - ], - "Added": "2005-04-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Redundant", - "Tag": "zh-Hant-SG", - "Description": [ - "Singapore Chinese in traditional script" - ], - "Added": "2005-04-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Redundant", - "Tag": "zh-Hant-TW", - "Description": [ - "Taiwan Chinese in traditional script" - ], - "Added": "2005-04-11", - "Scope": "None", - "Comments": [], - "Prefix": [] - }, - { - "Type": "Redundant", - "Tag": "zh-wuu", - "Description": [ - "Shanghaiese or Wu" - ], - "Added": "1999-12-18", - "Scope": "None", - "Deprecated": "2009-07-29", - "Comments": [], - "Prefix": [], - "PreferredValue": "wuu" - }, - { - "Type": "Redundant", - "Tag": "zh-yue", - "Description": [ - "Cantonese" - ], - "Added": "1999-12-18", - "Scope": "None", - "Deprecated": "2009-07-29", - "Comments": [], - "Prefix": [], - "PreferredValue": "yue" - } - ] -} \ No newline at end of file diff --git a/LanguageData/unm49 b/LanguageData/unm49 deleted file mode 100644 index e26ef2f..0000000 --- a/LanguageData/unm49 +++ /dev/null @@ -1,5574 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - und - hu ja km ko mn si ta te vi yue zh - - - - Dutch official - At most 6% are not fluent in English - Precise data not available, added so Balinese script defaults to Balinese - While Cyrillic is customary, the vast majority of the population can read both.For languages not customarily written, the writing populiation is artificially set to 5% in the absence of better information. - The figure includes 'Vlaams' population from Ethnologue - It is estimated that Walloon is used actively by 10-20% of the total population of Wallonia or between 300,000 and 600,000 people. For languages not customarily written, the writing population is artificially set to 5% in the absence of better information. - Precise data not available - Arabic official, the figure is derived from literacy * lang pop - Spanish is the official language, only about 60-70% of the population speaks it at all ; - English official, 81% literacy; the figure is derived from literacy * lang pop - [missing] - Ethnologue: 350k in CAF + 1.6 million 2nd lang speakers - Corsican has been recognized as a language by the French government. Speakers also use French but many are not fluent in it. For languages not customarily written, the writing population is artificially set to 5% - English 1/5 of pop, used 1/5 of pop * literacy rate - Spanish official - Languedocien = Occitan 'Everyone speaks French as first or second language.' For languages not customarily written, the writing population is artificially set to 5% - 100k+ native, plus 1.5 mil 2nd lang speakers. For languages not customarily written, the writing population is artificially set to 5% in the absence of better information. - For languages not customarily written, the writing population is artificially set to 5% in the absence of better information. - English official; the figure is derived from literacy * lang pop - Regelmässig verwendete Sprachen - Percent of people that regularly use the language; literacy is mostly in standard German. For languages not customarily written, the writing population is artificially set to 5% in the absence of better information. - [missing] - Actually literacy in Nko writing unknown but historically they used the Latin script - English official, the figure is derived from literacy * lang pop - Actually literacy in Nko writing unknown - Some 99% of users are literate in French or German. For languages not customarily written, the writing population is artificially set to 5% in the absence of better information. - 2nd lang literacy 15-25% - Nearly all speakers are literate in a 2nd language. For languages not customarily written, the writing population is artificially set to 5% - Many minor langs; Portuguese official - In this and other sources, such as Ethnologue, there is no estimate for number of users. http://en.wikipedia.org/wiki/Filipino_language http://www.ethnologue.com/show_language.asp?code=fil - Most of the population uses Creole; see also http://www.country-studies.com/haiti/creole,-literacy,-and-education.html http://en.wikipedia.org/wiki/French_language#Haiti - [missing] - Official language, 37-77% literacy - Official language, used in some schools. - http://www.censusindia.net/cendat/datatable26.html - 25% of pop - - Icelandic official - says: All Jordanians, regardless of ethnicity or religion, speak Arabic, the official language of Jordan - English official; Kiribati widespread - [missing] - German official - 2020 Russian Census - 2022 Census - Used CIA literacy figure times population, added 'Vlaams' population - [missing] - 70,000 in 1991, 100,000 who understand it, but do not speak it ; ethnic pop 530,000 in 2002 - Melanesian pidgin in much of the country is lingua franca; English (official; but spoken by only 1%-2% of the population); 120 indigenous languages - English 20% - Lesotho English-using pop estimated at 5%, no figs available. Probably too low. - [missing] - Official language. Probably 2% of the population from East Timor worldwide can function in it - Ethnologue says 80k users of French. No other figures found yet, but this seems too low. - Russian 5.8%. - The figure is from Wikipedia article on English-speaking populations - Albanian 25.1% - English is an official language, not widely spoken - 42.6% of population - [missing] - 4mil 2nd lang speakers, 120k 1st lang, 20k monolinguals. English creole; 40-45% literacy. - A pidginizatino of Motu; 120k 2nd lang speakers, very few 1st lang. - English official on some islands, total 9.4% - http://astro.uchicago.edu/cara/vtour/mcmurdo/ http://www.usap.gov/videoclipsandmaps/mcmwebcam.cfm Winter population is listed. - 1.2mil 1st lang + 240k 2nd lang users, low literacy - Has rotating Norwegian population at Norvegia Station - http://www.mavicanet.com/directory/eng/2436.html - Uninhabited, barren, sub-Antarctic islands - [missing] - Figure for Hindi includes 2nd language users, India Census data. - [missing] - CIA Factbook entry on Kazakhstan - 50k Europeans, mostly French. The figure for writing population is derived from literacy * population, and may be too high. - The figure is from Wikipedia article on http://en.wikipedia.org/wiki/List_of_countries_by_English-speaking_population The figure is from Wikipedia article on English-speaking populations - [missing] - The figure is from Wikipedia article on English-speaking populations - Precise data not available -- listed with 2 speakers as a tie-breaker - CIA Factbook - [missing] - CIA Factbook. See also http://www.jsmp.minihub.org/Reports/jsmpreports/Language%20Report/LanguageReport(english).pdf - CIA Factbook. - The Tonga Chronicle is a government-owned newspaper... It publishes two editions, one in Tongan with a circulation of 5,000, and one in English with a circulation of 1,500; Writing pop figure shown for English is set to 30% of that for Tonga. - 96% bilingual in Turkish. - The Tuvaluan language is spoken by virtually everyone, while Gilbertese is spoken by some people on Nui. English is also an official language, but is not spoken in daily use. Writing pop set to 10% of Tuvalu. - English (official, primary language of commerce, administration, and higher education) - Ethnologue lists 1 million 2nd lang users of English; no other good figures found. - also: http://en.wikipedia.org/wiki/Bosnian_language - [missing] - 2021 Census, counting people who are fluent in the language - 5% writing pop estimated in absence of other data - [missing] - Crude estimate based on import partner data. - [missing] - More than 80 % of the total Thai population speaks the native Thai language. - [missing] - [missing] - [missing] - (= Tai Lu, Xishuangbanna Dai; New Tai Lue script) - [missing] - [missing] - Estimates Indian ethnic 44% ; see also http://en.wikipedia.org/wiki/Non-resident_Indian_and_Person_of_Indian_Origin and http://www.vanuatu.usp.ac.fj/paclangunit/English_South_Pacific.htm - [missing] - [missing] - [missing] - [missing] - Deva is the official script for sd in India; set to 55%. Arab, Guru, Khoj also used. - The lingua franca of 80% of the population - 2016 Census - and https://en.wikipedia.org/wiki/Mru_language - - More than 95% of Pakistanis can speak or understand Urdu as their second or third language - [missing] - http://www.stoletie.ru/vzglyad/derusifikacija_nabirajet_oboroty_934.htm - [missing] - [missing] - [missing] - [missing] - US 2005 census - [missing] - [missing] - CIA Factbook lists spoken language, the entry for Bokmål only on Svalbard and Jan Mayan is an assumption. - http://www.bfs.admin.ch/bfs/portal/de/index/infothek/lexikon/bienvenue___login/blank/zugang_lexikon.Document.62669.xls - No literacy figure available for English in Madagascar; newly adopted official language; 5% is an estimate. - - the script is an assumption, needs a reference - Latin script official, used 98.8% of pop * 10% for the usage figure - Latin script official, used 98.8% of pop * 90% for the usage figure - - five eastern provinces of the DRC are Swahili speaking. Nearly half the 66 million Congolese speak it. - [missing] - 2022 Census number of people in Ethnic group - [missing] - [missing] - - Most educated Kenyans are able to communicate fluently in Swahili, since it is a compulsory subject in school - [missing] - [missing] - 2019 Belarus Census - 2024 idioma hablado la mayor parte del tiempo - Organisation internationale de la Francophonie Meta-study. Data from 2012 and 2016 Eurostat studies on first and second language usage across Europe - - 90 percent of approximately 39 million Tanzanians speak Swahili - - Baganda generally don't speak Swahili, but it is in common use among the 25 million people elsewhere in the country, and is currently being implemented in schools nationwide (use 75% of Cpop for this figure) - [missing] - [missing] - Salminen, T. (2007). Europe and North Asia. In Encyclopedia of the world’s endangered languages (pp. 211-280). Routledge. - http://www.ofis-bzh.org/fr/langue_bretonne/chiffres_cles/index.php France blocks other languages in state schools; 1.4% attended Breton schools and 3% is estimated as family transmission rate - 15.8% of population - The 2008 estimate is ~2000 speakers due to revival efforts - [missing] - The great majority of Equatorial Guineans speak Spanish, especially those living in the capital, Malabo. Spanish has been an official language since 1844. - Hans literacy is unknown; set to 5% artificially pending better or official figures. - http://www.statemaster.com/encyclopedia/Balinese-language widely used; taught in school as a main lang - widely used in its cultural areas, often in Latin script - http://www.indianetzone.com/7/haryanvi.htm little literature mostly folksongs; writers use std Hindi; claim of 55% literacy - 2nd lang literacy 25-50%, taught formally - 5% writing pop estimated in absence of other data; literacy rate reported at 12% - 5% writing pop estimated in absence of other data; literacy rate reported at ~8% - No estimate available. - 5% writing pop estimated in absence of other data; Japanese is lingua franca here - [missing] - Data completely unknown for Hausa in Arabic in Nigeria - almost all speakers bilingual in English - Pop decline to ~1398 in 2009 - Low literacy, high linguistic diversity; English official (govt) but not widely spoken - [missing] - Spoken by 70% of population, assumed to use Arabic script in Pakistan - Reported to be (regional) official in Chuvashia, central Russia: taught at schools. However: http://cv.wikipedia.org/ Chuvash Wikipedia on-line. - [missing] - 2022 Belize Census - 'A lingua franca and a first language for 10% of the population but understood by 95%' http://en.wikipedia.org/wiki/Krio_language - Dutch is spoken as a mother tongue by about 60% of the Surinamese, while most others speak it as a second or third language. - main language of trade and comm. in Isan region, except ... media where it gives way to Thai; now largely an unwritten language. 10% writing pop estimated in absence of other data - - primarily written using an Arabic-derived alphabet - and https://islandstudies.com/files/2016/11/Guernsey-Herm-Sark.pdf - extrapolated GDP from per capita x population - understood by 10 million, perhaps. Figure is questionable writing pop artificially set to 5% see also: http://en.wikipedia.org/wiki/Low_German (understood by 10 million people, and native to about 3 million people all around northern Germany) - 2018 Census, counting both maternal and secondary language usage - See the 2006 language survey data for 2nd langs = Shimaore - 2018 Census, counting both maternal and secondary language usage. Co-official in Sacatepéquez - Common lingua franca, widely used. High literacy. - but subtracting 270,000 per https://en.wikipedia.org/wiki/Swiss_Italian - [missing] - [missing] - [missing] - 98.8% speak Spanish. Also, https://www.cia.gov/library/publications/the-world-factbook/geos/sp.html - [missing] - Colony of France but uninhabited - No indigenous inhabitants. http://en.wikipedia.org/wiki/British_Indian_Ocean_Territory - Many also use Swahili - Latin is not shown as being used, rather Arabic - Used in schools up to University. - Afrobarometer (R10 2024/2025) - No indigenous inhabitants. http://en.wikipedia.org/wiki/French_Southern_Territories - 2022 Census language spoken at home - Shows 50% literacy - Most also use Swahili with 50% literacy. Only 5% monolingual. - Most also use Swahili - [missing] - basically unihabited, officially ; http://www.census.gov/prod/cen2000/phc3-us-pt1.pdf - http://lanic.utexas.edu/project/tilan/reports/rtf359/bolivia1.html Spanish is the official language, only about 60-70% of the population speaks it at all ; - Spanish ""universal"", set to 98% - https://www.cia.gov/library/publications/the-world-factbook/geos/cs.html - [missing] - [missing] - Sirmauri (srx) Mahasui = Himachali, Pahari, Sirmouri, Sirmuri - - 14k reported as native. Taught as elective subject in grades 5-8; not widely spoken as primary communication. - [missing] - [missing] - [missing] - native speaker pop is low, ~6200; but is most widely spoken 2nd language - [missing] - [missing] - This number is the literacy rate (the number of speakers is actually smaller) - Europeans and their languages survey, page 7 - http://ec.europa.eu/public_opinion/archives/ebs/ebs_243_en.pdf Europeans and their languages survey, page 7 - [missing] - 1st lang literacy 8% - low literacy - percentage calculated from http://www.spanishcourses.info/Mains/SpanishSpoken_EN.htm , see also http://www.spanishseo.org/resources/worldwide-spanish-speaking-population - [missing] - www.amar.org.ir - - regional lang community status, taught in some schools - [missing] - http://en.wikipedia.org/wiki/Interlingua#Community Has a regular conf in Sweden, also Brazil; an auxiliary language with tiny population worldwide - This is base pop for """"""""""""""""""""""""""""""""fub"""""""""""""""""""""""""""""""" lang code; ff shows as a macrolanguage - [missing] - (could be higher if 2nd lang included; no data yet) - [missing] - [missing] - [missing] - pop 7k. Figure is questionable writing pop artificially set to 5% see also http://en.wikipedia.org/wiki/Lower_Sorbian - Tigrinya ethnic pop is about 60% - [missing] - English official in education, 36.1% 2000 census - no other info available for now - from 2018, LECLERC, Jacques. «Danemark» dans L’aménagement linguistique dans le monde, Québec, CEFAN, Université Laval - language also called Kamta in India - Modern use of Arabic (Jawi) seems to be minimal, but is co-official with ms; set to 5% for now. - [missing] - [missing] - [missing] - [missing] - - source for GDP - - source for GDP Level of English usage unclear, but official for govt and education - - estimate 90%of literate pop can use Arabic; Lpop = 99% - http://en.wikipedia.org/wiki/South_Sudan - [missing] - low literacy and >120 langs in country - (used lower figure) - 25-50% literacy - literacy 15-25% - 30% literacy - 2nd lang literacy 30% - 2nd lang literacy 25-50% - [missing] - protected minority, southern Jutland - etimate only based on literacy; no population data currently available - population figure from CLDR-17483 ticket - No Data Available at present. - co-official in South Tyrol - 2018 Census, counting both maternal and secondary language usage. Co-official in Quiché and Totonicapán - in Trieste and Gorizia - [missing] - Information on the Latin/Cyrillic script percentages for Montenegro not currently found. - most of population use Afrikaans commonly, about 89% literacy - CIA Factbook entry on Kazakhstan http://windowoneurasia2.blogspot.com/2013/12/window-on-eurasia-de-russianization.html http://www.stoletie.ru/vzglyad/derusifikacija_nabirajet_oboroty_934.htm http://www.stoletie.ru/vzglyad/derusifikacija_nabirajet_oboroty_934.htm - , Podlaskie Voivodeship - official in Vojvodina only - official in Vojvodina only; no pop data yet found - 2023 Census, Mothertongue - [missing] - https://www.cia.gov/library/publications/the-world-factbook/geos/uz.html Latin/Cyrillic balance is estimated, based on literacy; younger education now in Latin - Information on the Latin/Cyrillic script percentages for Kosovo not currently found. - Estimate based on 90% of literate pop > 15 years (71% of Cpop) can use English, for lack of official number of users - low litreracy ~5% - 2nd lang literacy 30% - http://en.wikipedia.org/wiki/Akademio_Internacia_de_la_Sciencoj_San_Marino - estimate 100% of the academy can use Esperanto; the language is used as 1st language of instruction; academy has 300 """"""""""""""""""""""""""""""""members"""""""""""""""""""""""""""""""". - recognized in West Java - Mainly unwritten - 2018 Census, counting both maternal and secondary language usage. Co-official in Quiché - Latin listed as being used (Scriptsource) but no pop figures available. - 2011 Census -- the language is not distinguished in the 2021 census - but no literacy data - Including 1st and 2nd lang speakers - [missing] - regional-official in part of Opole Voivodeship; in Poland 325 schools with primary instr in German, estimate 37000 students. Real figure probably higher. - Census figures cited there seem to put Armenian using pop between 50-75%. Using 50%. - 2020 Russian Census Spoken language, as first language or later acquired - unknown literacy - only 10% monolingual - near zero literacy; pop ~80000 (2009) see David Lawrence, Tanzania and its People, page 121, Google books - (baseline) - No population figure yet on use of Latin in Vatican. Estimate 100% of Vatican residents can use Latin. - 2010 Census: Widely Spoken Language of Communication - No figures available for this language. Estimating at 5%. - [missing] - [missing] - [missing] - - near-zero Azeri population in last census http://en.wikipedia.org/wiki/Azerbaijanis_in_Armenia#Current_situation - No figures available for breakdown of Latin vs. N'Ko for Bambara. The 2% figure is an estimate. - pop 13k. Figure is questionable writing pop artificially set to 5% see also http://en.wikipedia.org/wiki/Upper_Sorbian - French mostly used in commerce - Indonesia high literacy; low written use of local languages - - est 50% pop of Veneto area - 5% mainly spoken - [missing] - ​http://www.interlingua.com/statutos leading Interlingua assoc (Union Mundial pro Interlingua) registered French non-profit - real user pop figure is unknown but low - [missing] - Moribund language - [missing] - Estimated. See http://en.wikipedia.org/wiki/Emilian_language - Estimate not available. - [missing] - [missing] - [missing] - Also called Moré - Newly designated official, not so widely used - [missing] - [missing] - syr is a macrolang containing cld and aii) - [missing] - [missing] - [missing] - [missing] - [missing] - No hard figures for this yet, so this is a placeholder figure. - Widely spoken less written, and most speakers know standard German as well - [missing] - and https://www.ethnologue.com/language/yue - [missing] - [missing] - [missing] - [missing] - [missing] - [missing] - [missing] - Mainly in Guangdong Prov, ~70-80 million. Script unspecified so both listed - 2018 Census, counting both maternal and secondary language usage. Co-official in Chiquimula - Analyzed from 2011 UK census and other sources - 2018 Census, counting both maternal and secondary language usage. Co-official in Suchitepéquez - 2014 Maldives: 98% literacy in Divehi, 75% in English - [missing] - [missing] - Greek population in Russia -- most ancestrally used Pontic Greek -- modern usage almost certainly has dropped off but we don't have clear statistics on current usage. - [missing] - Lower estimate of Coptic population, actual language literacy unknown - [missing] - Organisation internationale de la Francophonie Meta-study. Data from 2013 Census - Organisation internationale de la Francophonie Meta-study. Data from IVQ survey in 2009 - 2021 Census Knowledge of Language - Organisation internationale de la Francophonie Meta-study. Data from 2014 study - Organisation internationale de la Francophonie Meta-study. Data from 1994 study - Organisation internationale de la Francophonie Meta-study. Data from 2009 and 2012 studies - Regelmässig verwendete Sprachen - Percent of people that regularly use the language - Latin alphabet usage for Kurdish also present but actual amount unknown - Organisation internationale de la Francophonie Meta-study. Data from 2014 census - Organisation internationale de la Francophonie Meta-study. Data from 2010 questionnaire - Organisation internationale de la Francophonie Meta-study. Data from 2008 Census - Organisation internationale de la Francophonie Meta-study. Data from 2017 survey from Gabon authorities - Organisation internationale de la Francophonie Meta-study. Data from 2011 IVQ survey - Organisation internationale de la Francophonie Meta-study. Data from 2005 Study - Organisation internationale de la Francophonie Meta-study. Data from 2012 Census - Organisation internationale de la Francophonie Meta-study. Data from 2014 questionnaire - Organisation internationale de la Francophonie Meta-study. Data from 2003 census - Organisation internationale de la Francophonie Meta-study. Data from 2012, mixed methods - Organisation internationale de la Francophonie Meta-study. Data from 2014 Census - Organisation internationale de la Francophonie Meta-study. Data from 2017 questionnaire - Organisation internationale de la Francophonie Meta-study. Data from 2018 census - Organisation internationale de la Francophonie Meta-study. Data from 2009 census - Organisation internationale de la Francophonie Meta-study. Data from IVQ survey in 2014 - Organisation internationale de la Francophonie Meta-study. Data from 2009 Census - Organisation internationale de la Francophonie Meta-study. Data from 2012 census - Organisation internationale de la Francophonie Meta-study. Data from 2017 Census - Organisation internationale de la Francophonie Meta-study. Data from 2018 Census - Organisation internationale de la Francophonie Meta-study. Data from IVQ survey in 2007 - Organisation internationale de la Francophonie Meta-study. Data from 2013 census. Literacy is based on the language of instruction - Organisation internationale de la Francophonie Meta-study. Data from 2014 - Organisation internationale de la Francophonie Meta-study. Data from 2010 census - Organisation internationale de la Francophonie Meta-study. Data from 2007 Census - 1998 SIL study, cited in Ethnologue - from Instituto Cervantes 2021 - from 2013 Honduras census - Canada 2021 Census language 'Knowledge of Language'; official status from Wikipedia Languages_of_Canada - Regis, Riccardo. 'Su pianificazione, standardizzazione, polinomia: due esempi' Zeitschrift für romanische Philologie, vol. 128, no. 1, 2012, pp. 88-133. - Number & script usage hard to pin down because of many speakers in contested Nagorno Karabakh region. - Latin alphabet usage also present but exact breakdown unknown - Cyrillic usage for Kurdish may no longer be as dominant but it used to be - citation from 2016 - 2026 citation - Citation from 2016 - [missing] - [missing] - [missing] - [missing] - [missing] - [missing] - Leclerc (2014) - [missing] - [missing] - 2011 estimate, people that speak it as their first, second or third language. http://www.censusindia.gov.in/2011census/C-17.html - 1994 estimate in https://www.ethnologue.com/country/mm/languages - [missing] - - diff --git a/LanguageData/unm49.json b/LanguageData/unm49.json deleted file mode 100644 index f579990..0000000 --- a/LanguageData/unm49.json +++ /dev/null @@ -1,734 +0,0 @@ -{ - "RecordList": [ - { - "Code": "001", - "Contains": [ - "019", - "002", - "150", - "142", - "009" - ] - }, - { - "Code": "001", - "Contains": [ - "EU", - "EZ", - "UN" - ] - }, - { - "Code": "011", - "Contains": [ - "BF", - "BJ", - "CI", - "CV", - "GH", - "GM", - "GN", - "GW", - "LR", - "ML", - "MR", - "NE", - "NG", - "SH", - "SL", - "SN", - "TG" - ] - }, - { - "Code": "013", - "Contains": [ - "BZ", - "CR", - "GT", - "HN", - "MX", - "NI", - "PA", - "SV" - ] - }, - { - "Code": "014", - "Contains": [ - "BI", - "DJ", - "ER", - "ET", - "IO", - "KE", - "KM", - "MG", - "MU", - "MW", - "MZ", - "RE", - "RW", - "SC", - "SO", - "SS", - "TF", - "TZ", - "UG", - "YT", - "ZM", - "ZW" - ] - }, - { - "Code": "142", - "Contains": [ - "145", - "143", - "030", - "034", - "035" - ] - }, - { - "Code": "143", - "Contains": [ - "TM", - "TJ", - "KG", - "KZ", - "UZ" - ] - }, - { - "Code": "145", - "Contains": [ - "AE", - "AM", - "AZ", - "BH", - "CY", - "GE", - "IL", - "IQ", - "JO", - "KW", - "LB", - "OM", - "PS", - "QA", - "SA", - "SY", - "TR", - "YE" - ] - }, - { - "Code": "015", - "Contains": [ - "DZ", - "EG", - "EH", - "LY", - "MA", - "SD", - "TN", - "EA", - "IC" - ] - }, - { - "Code": "150", - "Contains": [ - "154", - "155", - "151", - "039" - ] - }, - { - "Code": "151", - "Contains": [ - "BG", - "BY", - "CZ", - "HU", - "MD", - "PL", - "RO", - "RU", - "SK", - "UA" - ] - }, - { - "Code": "154", - "Contains": [ - "GG", - "IM", - "JE", - "AX", - "DK", - "EE", - "FI", - "FO", - "GB", - "IE", - "IS", - "LT", - "LV", - "NO", - "SE", - "SJ", - "CQ" - ] - }, - { - "Code": "155", - "Contains": [ - "AT", - "BE", - "CH", - "DE", - "FR", - "LI", - "LU", - "MC", - "NL" - ] - }, - { - "Code": "017", - "Contains": [ - "AO", - "CD", - "CF", - "CG", - "CM", - "GA", - "GQ", - "ST", - "TD" - ] - }, - { - "Code": "018", - "Contains": [ - "BW", - "LS", - "NA", - "SZ", - "ZA" - ] - }, - { - "Code": "019", - "Contains": [ - "021", - "013", - "029", - "005" - ] - }, - { - "Code": "019", - "Contains": [ - "003", - "419" - ] - }, - { - "Code": "002", - "Contains": [ - "015", - "011", - "017", - "014", - "018" - ] - }, - { - "Code": "002", - "Contains": [ - "202" - ] - }, - { - "Code": "202", - "Contains": [ - "011", - "017", - "014", - "018" - ] - }, - { - "Code": "021", - "Contains": [ - "BM", - "CA", - "GL", - "PM", - "US" - ] - }, - { - "Code": "029", - "Contains": [ - "AG", - "AI", - "AW", - "BB", - "BL", - "BQ", - "BS", - "CU", - "CW", - "DM", - "DO", - "GD", - "GP", - "HT", - "JM", - "KN", - "KY", - "LC", - "MF", - "MQ", - "MS", - "PR", - "SX", - "TC", - "TT", - "VC", - "VG", - "VI" - ] - }, - { - "Code": "003", - "Contains": [ - "021", - "013", - "029" - ] - }, - { - "Code": "030", - "Contains": [ - "CN", - "HK", - "JP", - "KP", - "KR", - "MN", - "MO", - "TW" - ] - }, - { - "Code": "035", - "Contains": [ - "BN", - "ID", - "KH", - "LA", - "MM", - "MY", - "PH", - "SG", - "TH", - "TL", - "VN" - ] - }, - { - "Code": "039", - "Contains": [ - "AD", - "AL", - "BA", - "ES", - "GI", - "GR", - "HR", - "IT", - "ME", - "MK", - "MT", - "RS", - "PT", - "SI", - "SM", - "VA", - "XK" - ] - }, - { - "Code": "419", - "Contains": [ - "013", - "029", - "005" - ] - }, - { - "Code": "005", - "Contains": [ - "AR", - "BO", - "BR", - "BV", - "CL", - "CO", - "EC", - "FK", - "GF", - "GS", - "GY", - "PE", - "PY", - "SR", - "UY", - "VE" - ] - }, - { - "Code": "053", - "Contains": [ - "AU", - "CC", - "CX", - "HM", - "NF", - "NZ" - ] - }, - { - "Code": "054", - "Contains": [ - "FJ", - "NC", - "PG", - "SB", - "VU" - ] - }, - { - "Code": "057", - "Contains": [ - "FM", - "GU", - "KI", - "MH", - "MP", - "NR", - "PW", - "UM" - ] - }, - { - "Code": "061", - "Contains": [ - "AS", - "CK", - "NU", - "PF", - "PN", - "TK", - "TO", - "TV", - "WF", - "WS" - ] - }, - { - "Code": "034", - "Contains": [ - "AF", - "BD", - "BT", - "IN", - "IR", - "LK", - "MV", - "NP", - "PK" - ] - }, - { - "Code": "009", - "Contains": [ - "053", - "054", - "057", - "061", - "QO" - ] - }, - { - "Code": "QO", - "Contains": [ - "AQ", - "AC", - "CP", - "DG", - "TA" - ] - }, - { - "Code": "EU", - "Contains": [ - "AT", - "BE", - "CY", - "CZ", - "DE", - "DK", - "EE", - "ES", - "FI", - "FR", - "GR", - "HR", - "HU", - "IE", - "IT", - "LT", - "LU", - "LV", - "MT", - "NL", - "PL", - "PT", - "SE", - "SI", - "SK", - "BG", - "RO" - ] - }, - { - "Code": "EZ", - "Contains": [ - "AT", - "BE", - "CY", - "DE", - "EE", - "ES", - "FI", - "FR", - "GR", - "IE", - "IT", - "LT", - "LU", - "LV", - "MT", - "NL", - "PT", - "SI", - "SK" - ] - }, - { - "Code": "UN", - "Contains": [ - "AD", - "AE", - "AF", - "AG", - "AL", - "AM", - "AO", - "AR", - "AT", - "AU", - "AZ", - "BA", - "BB", - "BD", - "BE", - "BF", - "BG", - "BH", - "BI", - "BJ", - "BN", - "BO", - "BR", - "BS", - "BT", - "BW", - "BY", - "BZ", - "CA", - "CD", - "CF", - "CG", - "CH", - "CI", - "CL", - "CM", - "CN", - "CO", - "CR", - "CU", - "CV", - "CY", - "CZ", - "DE", - "DJ", - "DK", - "DM", - "DO", - "DZ", - "EC", - "EE", - "EG", - "ER", - "ES", - "ET", - "FI", - "FJ", - "FM", - "FR", - "GA", - "GB", - "GD", - "GE", - "GH", - "GM", - "GN", - "GQ", - "GR", - "GT", - "GW", - "GY", - "HN", - "HR", - "HT", - "HU", - "ID", - "IE", - "IL", - "IN", - "IQ", - "IR", - "IS", - "IT", - "JM", - "JO", - "JP", - "KE", - "KG", - "KH", - "KI", - "KM", - "KN", - "KP", - "KR", - "KW", - "KZ", - "LA", - "LB", - "LC", - "LI", - "LK", - "LR", - "LS", - "LT", - "LU", - "LV", - "LY", - "MA", - "MC", - "MD", - "ME", - "MG", - "MH", - "MK", - "ML", - "MM", - "MN", - "MR", - "MT", - "MU", - "MV", - "MX", - "MW", - "MY", - "MZ", - "NA", - "NE", - "NG", - "NI", - "NL", - "NO", - "NR", - "NP", - "NZ", - "OM", - "PA", - "PE", - "PG", - "PH", - "PK", - "PL", - "PT", - "PW", - "PY", - "QA", - "RO", - "RS", - "RU", - "RW", - "SA", - "SB", - "SC", - "SD", - "SE", - "SG", - "SI", - "SK", - "SL", - "SM", - "SN", - "SO", - "SR", - "SS", - "ST", - "SV", - "SY", - "SZ", - "TD", - "TG", - "TH", - "TJ", - "TL", - "TM", - "TN", - "TO", - "TR", - "TT", - "TV", - "TZ", - "UA", - "UG", - "US", - "UY", - "UZ", - "VC", - "VE", - "VN", - "VU", - "WS", - "YE", - "ZA", - "ZM", - "ZW" - ] - } - ] -} \ No newline at end of file diff --git a/LanguageTags.code-workspace b/LanguageTags.code-workspace deleted file mode 100644 index 71e0a72..0000000 --- a/LanguageTags.code-workspace +++ /dev/null @@ -1,41 +0,0 @@ -{ - "folders": [ - { - "path": "." - } - ], - "settings": { - "dotnet.defaultSolution": "LanguageTags.slnx", - "files.trimTrailingWhitespace": true, - "files.trimTrailingWhitespaceInRegexAndStrings": false, - "diffEditor.ignoreTrimWhitespace": false, - "editor.renderWhitespace": "boundary", - "dotnet.formatting.organizeImportsOnFormat": true, - "csharp.debug.symbolOptions.searchNuGetOrgSymbolServer": true, - "csharp.debug.symbolOptions.searchMicrosoftSymbolServer": true, - "files.encoding": "utf8", - "[markdown]": { - "files.trimTrailingWhitespace": false, - }, - "[plaintext]": { - "files.trimTrailingWhitespace": false, - }, - "[csharp]": { - "editor.formatOnSave": true, - "editor.defaultFormatter": "csharpier.csharpier-vscode" - }, - }, - "extensions": { - "recommendations": [ - "davidanson.vscode-markdownlint", - "streetsidesoftware.code-spell-checker", - "editorconfig.editorconfig", - "csharpier.csharpier-vscode", - "github.vscode-github-actions", - "ms-azuretools.vscode-docker", - "ms-dotnettools.csdevkit", - "yzhang.markdown-all-in-one", - "fanaticpythoner.better-todo-tree", - ] - } -} diff --git a/LanguageTags.slnx b/LanguageTags.slnx deleted file mode 100644 index 7db519c..0000000 --- a/LanguageTags.slnx +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/LanguageTags/.editorconfig b/LanguageTags/.editorconfig deleted file mode 100644 index e7ba7f1..0000000 --- a/LanguageTags/.editorconfig +++ /dev/null @@ -1,10 +0,0 @@ -root = false - -# C# files -[*.cs] - -# Ignore normalize strings to uppercase -dotnet_diagnostic.CA1308.severity = none - -# Ignore missing XML comments -dotnet_diagnostic.CS1591.severity = none diff --git a/LanguageTags/Extensions.cs b/LanguageTags/Extensions.cs deleted file mode 100644 index 7555971..0000000 --- a/LanguageTags/Extensions.cs +++ /dev/null @@ -1,128 +0,0 @@ -using System.Runtime.CompilerServices; - -namespace ptr727.LanguageTags; - -internal static partial class LogExtensions -{ - extension(ILogger logger) - { - internal bool LogAndPropagate( - Exception exception, - [CallerMemberName] string function = "unknown" - ) - { - logger.LogCatchException(function, exception); - return false; - } - - internal bool LogAndHandle( - Exception exception, - [CallerMemberName] string function = "unknown" - ) - { - logger.LogCatchException(function, exception); - return true; - } - } - - [LoggerMessage(Message = "Exception in {Function}", Level = LogLevel.Error)] - internal static partial void LogCatchException( - this ILogger logger, - string function, - Exception exception - ); - - [LoggerMessage(Message = "{Message}", Level = LogLevel.Information)] - internal static partial void LogInformation(this ILogger logger, string message); - - [LoggerMessage( - Message = "Failed to parse language tag {LanguageTag}: {Reason}", - Level = LogLevel.Debug - )] - internal static partial void LogParseFailure( - this ILogger logger, - string? languageTag, - string reason - ); - - [LoggerMessage( - Message = "Normalized language tag {OriginalTag} to {NormalizedTag}", - Level = LogLevel.Debug - )] - internal static partial void LogNormalizedTag( - this ILogger logger, - string originalTag, - string normalizedTag - ); - - [LoggerMessage( - Message = "Language tag conversion returned undetermined for {LanguageTag} in {Operation}", - Level = LogLevel.Debug - )] - internal static partial void LogUndeterminedFallback( - this ILogger logger, - string languageTag, - string operation - ); - - [LoggerMessage( - Message = "Loaded {RecordCount} records for {DataKind} from {FileName}.", - Level = LogLevel.Information - )] - internal static partial void LogDataLoaded( - this ILogger logger, - string dataKind, - string fileName, - int recordCount - ); - - [LoggerMessage( - Message = "No data was loaded for {DataKind} from {FileName}.", - Level = LogLevel.Warning - )] - internal static partial void LogDataLoadEmpty( - this ILogger logger, - string dataKind, - string fileName - ); - - [LoggerMessage(Message = "Failed to load {DataKind} from {FileName}.", Level = LogLevel.Error)] - internal static partial void LogDataLoadFailed( - this ILogger logger, - string dataKind, - string fileName, - Exception exception - ); - - [LoggerMessage( - Message = "Found {DataKind} record for {LanguageTag} (include description: {IncludeDescription}).", - Level = LogLevel.Debug - )] - internal static partial void LogFindRecordFound( - this ILogger logger, - string dataKind, - string? languageTag, - bool includeDescription - ); - - [LoggerMessage( - Message = "No {DataKind} record found for {LanguageTag} (include description: {IncludeDescription}).", - Level = LogLevel.Debug - )] - internal static partial void LogFindRecordNotFound( - this ILogger logger, - string dataKind, - string? languageTag, - bool includeDescription - ); - - [LoggerMessage( - Message = "Language tag {LanguageTag} did not match prefix {Prefix}.", - Level = LogLevel.Debug - )] - internal static partial void LogPrefixMatchFailed( - this ILogger logger, - string prefix, - string languageTag - ); -} diff --git a/LanguageTags/GlobalUsings.cs b/LanguageTags/GlobalUsings.cs deleted file mode 100644 index 9ee56d1..0000000 --- a/LanguageTags/GlobalUsings.cs +++ /dev/null @@ -1,6 +0,0 @@ -global using System.Collections.Immutable; -global using System.Globalization; -global using System.Text; -global using System.Text.Json; -global using Microsoft.Extensions.Logging; -global using Microsoft.Extensions.Logging.Abstractions; diff --git a/LanguageTags/Iso6392Data.cs b/LanguageTags/Iso6392Data.cs deleted file mode 100644 index dd18726..0000000 --- a/LanguageTags/Iso6392Data.cs +++ /dev/null @@ -1,365 +0,0 @@ -using System.Runtime.CompilerServices; -using System.Text.Json.Serialization; - -namespace ptr727.LanguageTags; - -/// -/// Provides access to ISO 639-2 language code data. -/// -public sealed partial class Iso6392Data -{ - internal const string DataUri = "https://www.loc.gov/standards/iso639-2/ISO-639-2_utf-8.txt"; - internal const string DataFileName = "iso6392"; - - private readonly Lazy _logger = new(LogOptions.CreateLogger); - internal ILogger Log => _logger.Value; - - [JsonConstructor] - internal Iso6392Data() { } - - /// - /// Gets the collection of ISO 639-2 language records. - /// - [JsonInclude] - public ImmutableArray RecordList { get; internal set; } = []; - - /// - /// Creates an instance from a data file asynchronously. - /// - /// The path to the data file. - /// The loaded . - /// Thrown when the file cannot be read. - /// Thrown when the file contains invalid data. - public static async Task FromDataAsync(string fileName) - { - Iso6392Data iso6392Data = new(); - await iso6392Data.LoadDataAsync(fileName).ConfigureAwait(false); - return iso6392Data; - } - - [System.Diagnostics.CodeAnalysis.SuppressMessage( - "Reliability", - "CA2007:Consider calling ConfigureAwait on the awaited task", - Justification = "https://github.com/dotnet/roslyn-analyzers/issues/7185" - )] - private async Task LoadDataAsync(string fileName) - { - // https://www.loc.gov/standards/iso639-2/ascii_8bits.html - // Alpha-3 (bibliographic) code - // Alpha-3 (terminologic) code (when given) - // Alpha-2 code (when given) - // English name - // French name (when given) - // | deliminator - // LF line terminator - - try - { - // Read line by line - List recordList = []; - await using FileStream fileStream = new( - fileName, - FileMode.Open, - FileAccess.Read, - FileShare.Read, - 4096, - FileOptions.Asynchronous | FileOptions.SequentialScan - ); - using StreamReader lineReader = new(fileStream); - while (await lineReader.ReadLineAsync().ConfigureAwait(false) is { } line) - { - // Parse using pipe character - List records = [.. line.Split('|').Select(item => item.Trim())]; - if (records.Count != 5) - { - throw new InvalidDataException( - $"Invalid data found in ISO 639-2 record: {line}" - ); - } - - // Populate record - Iso6392Record record = new() - { - Part2B = string.IsNullOrEmpty(records[0]) ? null : records[0], - Part2T = string.IsNullOrEmpty(records[1]) ? null : records[1], - Part1 = string.IsNullOrEmpty(records[2]) ? null : records[2], - RefName = string.IsNullOrEmpty(records[3]) ? null : records[3], - }; - if (string.IsNullOrEmpty(record.Part2B) || string.IsNullOrEmpty(record.RefName)) - { - throw new InvalidDataException( - $"Invalid data found in ISO 639-2 record: {line}" - ); - } - recordList.Add(record); - } - - if (recordList.Count == 0) - { - Log.LogDataLoadEmpty(nameof(Iso6392Data), fileName); - throw new InvalidDataException($"No data found in ISO 639-2 file: {fileName}"); - } - - RecordList = [.. recordList]; - Log.LogDataLoaded(nameof(Iso6392Data), fileName, RecordList.Length); - } - catch (Exception exception) - { - Log.LogDataLoadFailed(nameof(Iso6392Data), fileName, exception); - throw; - } - } - - /// - /// Creates an instance from a JSON file asynchronously. - /// - /// The path to the JSON file. - /// The loaded . - /// Thrown when the file contains invalid data. - /// Thrown when the file cannot be read. - /// Thrown when the JSON is invalid. - [System.Diagnostics.CodeAnalysis.SuppressMessage( - "Reliability", - "CA2007:Consider calling ConfigureAwait on the awaited task", - Justification = "https://github.com/dotnet/roslyn-analyzers/issues/7185" - )] - public static async Task FromJsonAsync(string fileName) - { - ILogger logger = LogOptions.CreateLogger(); - try - { - await using FileStream fileStream = new( - fileName, - FileMode.Open, - FileAccess.Read, - FileShare.Read, - 4096, - FileOptions.Asynchronous | FileOptions.SequentialScan - ); - Iso6392Data? data = await JsonSerializer - .DeserializeAsync(fileStream, LanguageJsonContext.Default.Iso6392Data) - .ConfigureAwait(false); - if (data == null) - { - logger.LogDataLoadEmpty(nameof(Iso6392Data), fileName); - throw new InvalidDataException($"No data found in ISO 639-2 file: {fileName}"); - } - - logger.LogDataLoaded(nameof(Iso6392Data), fileName, data.RecordList.Length); - return data; - } - catch (Exception exception) - { - logger.LogDataLoadFailed(nameof(Iso6392Data), fileName, exception); - throw; - } - } - - [System.Diagnostics.CodeAnalysis.SuppressMessage( - "Reliability", - "CA2007:Consider calling ConfigureAwait on the awaited task", - Justification = "https://github.com/dotnet/roslyn-analyzers/issues/7185" - )] - internal async Task SaveJsonAsync(string fileName) - { - await using FileStream fileStream = new( - fileName, - FileMode.Create, - FileAccess.Write, - FileShare.None, - 4096, - FileOptions.Asynchronous | FileOptions.SequentialScan - ); - await JsonSerializer - .SerializeAsync(fileStream, this, LanguageJsonContext.Default.Iso6392Data) - .ConfigureAwait(false); - } - - internal async Task SaveCodeAsync(string fileName) - { - using StreamWriter writer = new( - new FileStream( - fileName, - FileMode.Create, - FileAccess.Write, - FileShare.None, - 4096, - FileOptions.Asynchronous | FileOptions.SequentialScan - ), - new UTF8Encoding(false) - ) - { - NewLine = "\r\n", - }; - - await WriteLineAsync("namespace ptr727.LanguageTags;"); - await WriteLineAsync(string.Empty); - await WriteLineAsync("/// "); - await WriteLineAsync("/// Provides access to ISO 639-2 language code data."); - await WriteLineAsync("/// "); - await WriteLineAsync( - $"[System.CodeDom.Compiler.GeneratedCode(\"{typeof(Iso6392Data).FullName}\", \"1.0\")]" - ); - await WriteLineAsync("public sealed partial class Iso6392Data"); - await WriteLineAsync("{"); - await WriteLineAsync(" /// "); - await WriteLineAsync( - " /// Creates an instance loaded from the embedded ISO 639-2 dataset." - ); - await WriteLineAsync(" /// "); - await WriteLineAsync( - " /// The populated instance." - ); - await WriteLineAsync(" public static Iso6392Data Create() =>"); - await WriteLineAsync(" new()"); - await WriteLineAsync(" {"); - await WriteLineAsync(" RecordList ="); - await WriteLineAsync(" ["); - - foreach (Iso6392Record record in RecordList) - { - await WriteLineAsync(" new()"); - await WriteLineAsync(" {"); - await WriteLineAsync( - $" Part2B = {LanguageSchema.GetCodeGenString(record.Part2B)}," - ); - await WriteLineAsync( - $" Part2T = {LanguageSchema.GetCodeGenString(record.Part2T)}," - ); - await WriteLineAsync( - $" Part1 = {LanguageSchema.GetCodeGenString(record.Part1)}," - ); - await WriteLineAsync( - $" RefName = {LanguageSchema.GetCodeGenString(record.RefName)}," - ); - await WriteLineAsync(" },"); - } - - await WriteLineAsync(" ],"); - await WriteLineAsync(" };"); - await WriteLineAsync("}"); - return; - - ConfiguredTaskAwaitable WriteLineAsync(string value) => - writer.WriteLineAsync(value).ConfigureAwait(false); - } - - /// - /// Finds an ISO 639-2 language record by language code or description. - /// - /// - /// Matching is case-insensitive and checks Part 2/B, Part 2/T, Part 1, then (optionally) reference name. - /// Null or empty values return null. - /// - /// The language code or description to search for. - /// If true, searches in the reference name field; otherwise, only searches language codes. - /// The first matching , or null when no match is found. - public Iso6392Record? Find(string languageTag, bool includeDescription) - { - if (string.IsNullOrEmpty(languageTag)) - { - Log.LogFindRecordNotFound(nameof(Iso6392Data), languageTag, includeDescription); - return null; - } - - // Find the matching language entry - Iso6392Record? record = null; - - // 693 3 letter form - if (languageTag.Length == 3) - { - // Try the 639-2/B - record = RecordList.FirstOrDefault(item => - !string.IsNullOrEmpty(item.Part2B) - && item.Part2B.Equals(languageTag, StringComparison.OrdinalIgnoreCase) - ); - if (record != null) - { - Log.LogFindRecordFound(nameof(Iso6392Data), languageTag, includeDescription); - return record; - } - - // Try the 639-2/T - record = RecordList.FirstOrDefault(item => - !string.IsNullOrEmpty(item.Part2T) - && item.Part2T.Equals(languageTag, StringComparison.OrdinalIgnoreCase) - ); - if (record != null) - { - Log.LogFindRecordFound(nameof(Iso6392Data), languageTag, includeDescription); - return record; - } - } - - // 693 2 letter form - if (languageTag.Length == 2) - { - // Try 639-1 - record = RecordList.FirstOrDefault(item => - !string.IsNullOrEmpty(item.Part1) - && item.Part1.Equals(languageTag, StringComparison.OrdinalIgnoreCase) - ); - if (record != null) - { - Log.LogFindRecordFound(nameof(Iso6392Data), languageTag, includeDescription); - return record; - } - } - - // Long form - if (includeDescription) - { - // Exact match - record = RecordList.FirstOrDefault(item => - !string.IsNullOrEmpty(item.RefName) - && item.RefName.Equals(languageTag, StringComparison.OrdinalIgnoreCase) - ); - if (record != null) - { - Log.LogFindRecordFound(nameof(Iso6392Data), languageTag, includeDescription); - return record; - } - - // Partial match - record = RecordList.FirstOrDefault(item => - !string.IsNullOrEmpty(item.RefName) - && item.RefName.Contains(languageTag, StringComparison.OrdinalIgnoreCase) - ); - if (record != null) - { - Log.LogFindRecordFound(nameof(Iso6392Data), languageTag, includeDescription); - return record; - } - } - - // Not found - Log.LogFindRecordNotFound(nameof(Iso6392Data), languageTag, includeDescription); - return null; - } -} - -/// -/// Represents an ISO 639-2 language code record. -/// -public sealed record Iso6392Record -{ - /// - /// Gets the ISO 639-2/B bibliographic code (3 letters). - /// - public string? Part2B { get; init; } - - /// - /// Gets the ISO 639-2/T terminology code (3 letters). - /// - public string? Part2T { get; init; } - - /// - /// Gets the ISO 639-1 code (2 letters). - /// - public string? Part1 { get; init; } - - /// - /// Gets the English reference name of the language. - /// - public string? RefName { get; init; } -} diff --git a/LanguageTags/Iso6392DataGen.cs b/LanguageTags/Iso6392DataGen.cs deleted file mode 100644 index 54e9489..0000000 --- a/LanguageTags/Iso6392DataGen.cs +++ /dev/null @@ -1,3430 +0,0 @@ -namespace ptr727.LanguageTags; - -/// -/// Provides access to ISO 639-2 language code data. -/// -[System.CodeDom.Compiler.GeneratedCode("ptr727.LanguageTags.Iso6392Data", "1.0")] -public sealed partial class Iso6392Data -{ - /// - /// Creates an instance loaded from the embedded ISO 639-2 dataset. - /// - /// The populated instance. - public static Iso6392Data Create() => - new() - { - RecordList = - [ - new() - { - Part2B = "aar", - Part2T = null, - Part1 = "aa", - RefName = "Afar", - }, - new() - { - Part2B = "abk", - Part2T = null, - Part1 = "ab", - RefName = "Abkhazian", - }, - new() - { - Part2B = "ace", - Part2T = null, - Part1 = null, - RefName = "Achinese", - }, - new() - { - Part2B = "ach", - Part2T = null, - Part1 = null, - RefName = "Acoli", - }, - new() - { - Part2B = "ada", - Part2T = null, - Part1 = null, - RefName = "Adangme", - }, - new() - { - Part2B = "ady", - Part2T = null, - Part1 = null, - RefName = "Adyghe; Adygei", - }, - new() - { - Part2B = "afa", - Part2T = null, - Part1 = null, - RefName = "Afro-Asiatic languages", - }, - new() - { - Part2B = "afh", - Part2T = null, - Part1 = null, - RefName = "Afrihili", - }, - new() - { - Part2B = "afr", - Part2T = null, - Part1 = "af", - RefName = "Afrikaans", - }, - new() - { - Part2B = "ain", - Part2T = null, - Part1 = null, - RefName = "Ainu", - }, - new() - { - Part2B = "aka", - Part2T = null, - Part1 = "ak", - RefName = "Akan", - }, - new() - { - Part2B = "akk", - Part2T = null, - Part1 = null, - RefName = "Akkadian", - }, - new() - { - Part2B = "alb", - Part2T = "sqi", - Part1 = "sq", - RefName = "Albanian", - }, - new() - { - Part2B = "ale", - Part2T = null, - Part1 = null, - RefName = "Aleut", - }, - new() - { - Part2B = "alg", - Part2T = null, - Part1 = null, - RefName = "Algonquian languages", - }, - new() - { - Part2B = "alt", - Part2T = null, - Part1 = null, - RefName = "Southern Altai", - }, - new() - { - Part2B = "amh", - Part2T = null, - Part1 = "am", - RefName = "Amharic", - }, - new() - { - Part2B = "ang", - Part2T = null, - Part1 = null, - RefName = "English, Old (ca.450-1100)", - }, - new() - { - Part2B = "anp", - Part2T = null, - Part1 = null, - RefName = "Angika", - }, - new() - { - Part2B = "apa", - Part2T = null, - Part1 = null, - RefName = "Apache languages", - }, - new() - { - Part2B = "ara", - Part2T = null, - Part1 = "ar", - RefName = "Arabic", - }, - new() - { - Part2B = "arc", - Part2T = null, - Part1 = null, - RefName = "Official Aramaic (700-300 BCE); Imperial Aramaic (700-300 BCE)", - }, - new() - { - Part2B = "arg", - Part2T = null, - Part1 = "an", - RefName = "Aragonese", - }, - new() - { - Part2B = "arm", - Part2T = "hye", - Part1 = "hy", - RefName = "Armenian", - }, - new() - { - Part2B = "arn", - Part2T = null, - Part1 = null, - RefName = "Mapudungun; Mapuche", - }, - new() - { - Part2B = "arp", - Part2T = null, - Part1 = null, - RefName = "Arapaho", - }, - new() - { - Part2B = "art", - Part2T = null, - Part1 = null, - RefName = "Artificial languages", - }, - new() - { - Part2B = "arw", - Part2T = null, - Part1 = null, - RefName = "Arawak", - }, - new() - { - Part2B = "asm", - Part2T = null, - Part1 = "as", - RefName = "Assamese", - }, - new() - { - Part2B = "ast", - Part2T = null, - Part1 = null, - RefName = "Asturian; Bable; Leonese; Asturleonese", - }, - new() - { - Part2B = "ath", - Part2T = null, - Part1 = null, - RefName = "Athapascan languages", - }, - new() - { - Part2B = "aus", - Part2T = null, - Part1 = null, - RefName = "Australian languages", - }, - new() - { - Part2B = "ava", - Part2T = null, - Part1 = "av", - RefName = "Avaric", - }, - new() - { - Part2B = "ave", - Part2T = null, - Part1 = "ae", - RefName = "Avestan", - }, - new() - { - Part2B = "awa", - Part2T = null, - Part1 = null, - RefName = "Awadhi", - }, - new() - { - Part2B = "aym", - Part2T = null, - Part1 = "ay", - RefName = "Aymara", - }, - new() - { - Part2B = "aze", - Part2T = null, - Part1 = "az", - RefName = "Azerbaijani", - }, - new() - { - Part2B = "bad", - Part2T = null, - Part1 = null, - RefName = "Banda languages", - }, - new() - { - Part2B = "bai", - Part2T = null, - Part1 = null, - RefName = "Bamileke languages", - }, - new() - { - Part2B = "bak", - Part2T = null, - Part1 = "ba", - RefName = "Bashkir", - }, - new() - { - Part2B = "bal", - Part2T = null, - Part1 = null, - RefName = "Baluchi", - }, - new() - { - Part2B = "bam", - Part2T = null, - Part1 = "bm", - RefName = "Bambara", - }, - new() - { - Part2B = "ban", - Part2T = null, - Part1 = null, - RefName = "Balinese", - }, - new() - { - Part2B = "baq", - Part2T = "eus", - Part1 = "eu", - RefName = "Basque", - }, - new() - { - Part2B = "bas", - Part2T = null, - Part1 = null, - RefName = "Basa", - }, - new() - { - Part2B = "bat", - Part2T = null, - Part1 = null, - RefName = "Baltic languages", - }, - new() - { - Part2B = "bej", - Part2T = null, - Part1 = null, - RefName = "Beja; Bedawiyet", - }, - new() - { - Part2B = "bel", - Part2T = null, - Part1 = "be", - RefName = "Belarusian", - }, - new() - { - Part2B = "bem", - Part2T = null, - Part1 = null, - RefName = "Bemba", - }, - new() - { - Part2B = "ben", - Part2T = null, - Part1 = "bn", - RefName = "Bengali", - }, - new() - { - Part2B = "ber", - Part2T = null, - Part1 = null, - RefName = "Berber languages", - }, - new() - { - Part2B = "bho", - Part2T = null, - Part1 = null, - RefName = "Bhojpuri", - }, - new() - { - Part2B = "bih", - Part2T = null, - Part1 = null, - RefName = "Bihari languages", - }, - new() - { - Part2B = "bik", - Part2T = null, - Part1 = null, - RefName = "Bikol", - }, - new() - { - Part2B = "bin", - Part2T = null, - Part1 = null, - RefName = "Bini; Edo", - }, - new() - { - Part2B = "bis", - Part2T = null, - Part1 = "bi", - RefName = "Bislama", - }, - new() - { - Part2B = "bla", - Part2T = null, - Part1 = null, - RefName = "Siksika", - }, - new() - { - Part2B = "bnt", - Part2T = null, - Part1 = null, - RefName = "Bantu languages", - }, - new() - { - Part2B = "bos", - Part2T = null, - Part1 = "bs", - RefName = "Bosnian", - }, - new() - { - Part2B = "bra", - Part2T = null, - Part1 = null, - RefName = "Braj", - }, - new() - { - Part2B = "bre", - Part2T = null, - Part1 = "br", - RefName = "Breton", - }, - new() - { - Part2B = "btk", - Part2T = null, - Part1 = null, - RefName = "Batak languages", - }, - new() - { - Part2B = "bua", - Part2T = null, - Part1 = null, - RefName = "Buriat", - }, - new() - { - Part2B = "bug", - Part2T = null, - Part1 = null, - RefName = "Buginese", - }, - new() - { - Part2B = "bul", - Part2T = null, - Part1 = "bg", - RefName = "Bulgarian", - }, - new() - { - Part2B = "bur", - Part2T = "mya", - Part1 = "my", - RefName = "Burmese", - }, - new() - { - Part2B = "byn", - Part2T = null, - Part1 = null, - RefName = "Blin; Bilin", - }, - new() - { - Part2B = "cad", - Part2T = null, - Part1 = null, - RefName = "Caddo", - }, - new() - { - Part2B = "cai", - Part2T = null, - Part1 = null, - RefName = "Central American Indian languages", - }, - new() - { - Part2B = "car", - Part2T = null, - Part1 = null, - RefName = "Galibi Carib", - }, - new() - { - Part2B = "cat", - Part2T = null, - Part1 = "ca", - RefName = "Catalan; Valencian", - }, - new() - { - Part2B = "cau", - Part2T = null, - Part1 = null, - RefName = "Caucasian languages", - }, - new() - { - Part2B = "ceb", - Part2T = null, - Part1 = null, - RefName = "Cebuano", - }, - new() - { - Part2B = "cel", - Part2T = null, - Part1 = null, - RefName = "Celtic languages", - }, - new() - { - Part2B = "cha", - Part2T = null, - Part1 = "ch", - RefName = "Chamorro", - }, - new() - { - Part2B = "chb", - Part2T = null, - Part1 = null, - RefName = "Chibcha", - }, - new() - { - Part2B = "che", - Part2T = null, - Part1 = "ce", - RefName = "Chechen", - }, - new() - { - Part2B = "chg", - Part2T = null, - Part1 = null, - RefName = "Chagatai", - }, - new() - { - Part2B = "chi", - Part2T = "zho", - Part1 = "zh", - RefName = "Chinese", - }, - new() - { - Part2B = "chk", - Part2T = null, - Part1 = null, - RefName = "Chuukese", - }, - new() - { - Part2B = "chm", - Part2T = null, - Part1 = null, - RefName = "Mari", - }, - new() - { - Part2B = "chn", - Part2T = null, - Part1 = null, - RefName = "Chinook jargon", - }, - new() - { - Part2B = "cho", - Part2T = null, - Part1 = null, - RefName = "Choctaw", - }, - new() - { - Part2B = "chp", - Part2T = null, - Part1 = null, - RefName = "Chipewyan; Dene Suline", - }, - new() - { - Part2B = "chr", - Part2T = null, - Part1 = null, - RefName = "Cherokee", - }, - new() - { - Part2B = "chu", - Part2T = null, - Part1 = "cu", - RefName = - "Church Slavic; Old Slavonic; Church Slavonic; Old Bulgarian; Old Church Slavonic", - }, - new() - { - Part2B = "chv", - Part2T = null, - Part1 = "cv", - RefName = "Chuvash", - }, - new() - { - Part2B = "chy", - Part2T = null, - Part1 = null, - RefName = "Cheyenne", - }, - new() - { - Part2B = "cmc", - Part2T = null, - Part1 = null, - RefName = "Chamic languages", - }, - new() - { - Part2B = "cnr", - Part2T = null, - Part1 = null, - RefName = "Montenegrin", - }, - new() - { - Part2B = "cop", - Part2T = null, - Part1 = null, - RefName = "Coptic", - }, - new() - { - Part2B = "cor", - Part2T = null, - Part1 = "kw", - RefName = "Cornish", - }, - new() - { - Part2B = "cos", - Part2T = null, - Part1 = "co", - RefName = "Corsican", - }, - new() - { - Part2B = "cpe", - Part2T = null, - Part1 = null, - RefName = "Creoles and pidgins, English based", - }, - new() - { - Part2B = "cpf", - Part2T = null, - Part1 = null, - RefName = "Creoles and pidgins, French-based", - }, - new() - { - Part2B = "cpp", - Part2T = null, - Part1 = null, - RefName = "Creoles and pidgins, Portuguese-based", - }, - new() - { - Part2B = "cre", - Part2T = null, - Part1 = "cr", - RefName = "Cree", - }, - new() - { - Part2B = "crh", - Part2T = null, - Part1 = null, - RefName = "Crimean Tatar; Crimean Turkish", - }, - new() - { - Part2B = "crp", - Part2T = null, - Part1 = null, - RefName = "Creoles and pidgins", - }, - new() - { - Part2B = "csb", - Part2T = null, - Part1 = null, - RefName = "Kashubian", - }, - new() - { - Part2B = "cus", - Part2T = null, - Part1 = null, - RefName = "Cushitic languages", - }, - new() - { - Part2B = "cze", - Part2T = "ces", - Part1 = "cs", - RefName = "Czech", - }, - new() - { - Part2B = "dak", - Part2T = null, - Part1 = null, - RefName = "Dakota", - }, - new() - { - Part2B = "dan", - Part2T = null, - Part1 = "da", - RefName = "Danish", - }, - new() - { - Part2B = "dar", - Part2T = null, - Part1 = null, - RefName = "Dargwa", - }, - new() - { - Part2B = "day", - Part2T = null, - Part1 = null, - RefName = "Land Dayak languages", - }, - new() - { - Part2B = "del", - Part2T = null, - Part1 = null, - RefName = "Delaware", - }, - new() - { - Part2B = "den", - Part2T = null, - Part1 = null, - RefName = "Slave (Athapascan)", - }, - new() - { - Part2B = "dgr", - Part2T = null, - Part1 = null, - RefName = "Tlicho; Dogrib", - }, - new() - { - Part2B = "din", - Part2T = null, - Part1 = null, - RefName = "Dinka", - }, - new() - { - Part2B = "div", - Part2T = null, - Part1 = "dv", - RefName = "Divehi; Dhivehi; Maldivian", - }, - new() - { - Part2B = "doi", - Part2T = null, - Part1 = null, - RefName = "Dogri", - }, - new() - { - Part2B = "dra", - Part2T = null, - Part1 = null, - RefName = "Dravidian languages", - }, - new() - { - Part2B = "dsb", - Part2T = null, - Part1 = null, - RefName = "Lower Sorbian", - }, - new() - { - Part2B = "dua", - Part2T = null, - Part1 = null, - RefName = "Duala", - }, - new() - { - Part2B = "dum", - Part2T = null, - Part1 = null, - RefName = "Dutch, Middle (ca.1050-1350)", - }, - new() - { - Part2B = "dut", - Part2T = "nld", - Part1 = "nl", - RefName = "Dutch; Flemish", - }, - new() - { - Part2B = "dyu", - Part2T = null, - Part1 = null, - RefName = "Dyula", - }, - new() - { - Part2B = "dzo", - Part2T = null, - Part1 = "dz", - RefName = "Dzongkha", - }, - new() - { - Part2B = "efi", - Part2T = null, - Part1 = null, - RefName = "Efik", - }, - new() - { - Part2B = "egy", - Part2T = null, - Part1 = null, - RefName = "Egyptian (Ancient)", - }, - new() - { - Part2B = "eka", - Part2T = null, - Part1 = null, - RefName = "Ekajuk", - }, - new() - { - Part2B = "elx", - Part2T = null, - Part1 = null, - RefName = "Elamite", - }, - new() - { - Part2B = "eng", - Part2T = null, - Part1 = "en", - RefName = "English", - }, - new() - { - Part2B = "enm", - Part2T = null, - Part1 = null, - RefName = "English, Middle (1100-1500)", - }, - new() - { - Part2B = "epo", - Part2T = null, - Part1 = "eo", - RefName = "Esperanto", - }, - new() - { - Part2B = "est", - Part2T = null, - Part1 = "et", - RefName = "Estonian", - }, - new() - { - Part2B = "ewe", - Part2T = null, - Part1 = "ee", - RefName = "Ewe", - }, - new() - { - Part2B = "ewo", - Part2T = null, - Part1 = null, - RefName = "Ewondo", - }, - new() - { - Part2B = "fan", - Part2T = null, - Part1 = null, - RefName = "Fang", - }, - new() - { - Part2B = "fao", - Part2T = null, - Part1 = "fo", - RefName = "Faroese", - }, - new() - { - Part2B = "fat", - Part2T = null, - Part1 = null, - RefName = "Fanti", - }, - new() - { - Part2B = "fij", - Part2T = null, - Part1 = "fj", - RefName = "Fijian", - }, - new() - { - Part2B = "fil", - Part2T = null, - Part1 = null, - RefName = "Filipino; Pilipino", - }, - new() - { - Part2B = "fin", - Part2T = null, - Part1 = "fi", - RefName = "Finnish", - }, - new() - { - Part2B = "fiu", - Part2T = null, - Part1 = null, - RefName = "Finno-Ugrian languages", - }, - new() - { - Part2B = "fon", - Part2T = null, - Part1 = null, - RefName = "Fon", - }, - new() - { - Part2B = "fre", - Part2T = "fra", - Part1 = "fr", - RefName = "French", - }, - new() - { - Part2B = "frm", - Part2T = null, - Part1 = null, - RefName = "French, Middle (ca.1400-1600)", - }, - new() - { - Part2B = "fro", - Part2T = null, - Part1 = null, - RefName = "French, Old (842-ca.1400)", - }, - new() - { - Part2B = "frr", - Part2T = null, - Part1 = null, - RefName = "Northern Frisian", - }, - new() - { - Part2B = "frs", - Part2T = null, - Part1 = null, - RefName = "Eastern Frisian", - }, - new() - { - Part2B = "fry", - Part2T = null, - Part1 = "fy", - RefName = "Western Frisian", - }, - new() - { - Part2B = "ful", - Part2T = null, - Part1 = "ff", - RefName = "Fulah", - }, - new() - { - Part2B = "fur", - Part2T = null, - Part1 = null, - RefName = "Friulian", - }, - new() - { - Part2B = "gaa", - Part2T = null, - Part1 = null, - RefName = "Ga", - }, - new() - { - Part2B = "gay", - Part2T = null, - Part1 = null, - RefName = "Gayo", - }, - new() - { - Part2B = "gba", - Part2T = null, - Part1 = null, - RefName = "Gbaya", - }, - new() - { - Part2B = "gem", - Part2T = null, - Part1 = null, - RefName = "Germanic languages", - }, - new() - { - Part2B = "geo", - Part2T = "kat", - Part1 = "ka", - RefName = "Georgian", - }, - new() - { - Part2B = "ger", - Part2T = "deu", - Part1 = "de", - RefName = "German", - }, - new() - { - Part2B = "gez", - Part2T = null, - Part1 = null, - RefName = "Geez", - }, - new() - { - Part2B = "gil", - Part2T = null, - Part1 = null, - RefName = "Gilbertese", - }, - new() - { - Part2B = "gla", - Part2T = null, - Part1 = "gd", - RefName = "Gaelic; Scottish Gaelic", - }, - new() - { - Part2B = "gle", - Part2T = null, - Part1 = "ga", - RefName = "Irish", - }, - new() - { - Part2B = "glg", - Part2T = null, - Part1 = "gl", - RefName = "Galician", - }, - new() - { - Part2B = "glv", - Part2T = null, - Part1 = "gv", - RefName = "Manx", - }, - new() - { - Part2B = "gmh", - Part2T = null, - Part1 = null, - RefName = "German, Middle High (ca.1050-1500)", - }, - new() - { - Part2B = "goh", - Part2T = null, - Part1 = null, - RefName = "German, Old High (ca.750-1050)", - }, - new() - { - Part2B = "gon", - Part2T = null, - Part1 = null, - RefName = "Gondi", - }, - new() - { - Part2B = "gor", - Part2T = null, - Part1 = null, - RefName = "Gorontalo", - }, - new() - { - Part2B = "got", - Part2T = null, - Part1 = null, - RefName = "Gothic", - }, - new() - { - Part2B = "grb", - Part2T = null, - Part1 = null, - RefName = "Grebo", - }, - new() - { - Part2B = "grc", - Part2T = null, - Part1 = null, - RefName = "Greek, Ancient (to 1453)", - }, - new() - { - Part2B = "gre", - Part2T = "ell", - Part1 = "el", - RefName = "Modern Greek (1453-)", - }, - new() - { - Part2B = "grn", - Part2T = null, - Part1 = "gn", - RefName = "Guarani", - }, - new() - { - Part2B = "gsw", - Part2T = null, - Part1 = null, - RefName = "Swiss German; Alemannic; Alsatian", - }, - new() - { - Part2B = "guj", - Part2T = null, - Part1 = "gu", - RefName = "Gujarati", - }, - new() - { - Part2B = "gwi", - Part2T = null, - Part1 = null, - RefName = "Gwich'in", - }, - new() - { - Part2B = "hai", - Part2T = null, - Part1 = null, - RefName = "Haida", - }, - new() - { - Part2B = "hat", - Part2T = null, - Part1 = "ht", - RefName = "Haitian; Haitian Creole", - }, - new() - { - Part2B = "hau", - Part2T = null, - Part1 = "ha", - RefName = "Hausa", - }, - new() - { - Part2B = "haw", - Part2T = null, - Part1 = null, - RefName = "Hawaiian", - }, - new() - { - Part2B = "heb", - Part2T = null, - Part1 = "he", - RefName = "Hebrew", - }, - new() - { - Part2B = "her", - Part2T = null, - Part1 = "hz", - RefName = "Herero", - }, - new() - { - Part2B = "hil", - Part2T = null, - Part1 = null, - RefName = "Hiligaynon", - }, - new() - { - Part2B = "him", - Part2T = null, - Part1 = null, - RefName = "Himachali languages; Western Pahari languages", - }, - new() - { - Part2B = "hin", - Part2T = null, - Part1 = "hi", - RefName = "Hindi", - }, - new() - { - Part2B = "hit", - Part2T = null, - Part1 = null, - RefName = "Hittite", - }, - new() - { - Part2B = "hmn", - Part2T = null, - Part1 = null, - RefName = "Hmong; Mong", - }, - new() - { - Part2B = "hmo", - Part2T = null, - Part1 = "ho", - RefName = "Hiri Motu", - }, - new() - { - Part2B = "hrv", - Part2T = null, - Part1 = "hr", - RefName = "Croatian", - }, - new() - { - Part2B = "hsb", - Part2T = null, - Part1 = null, - RefName = "Upper Sorbian", - }, - new() - { - Part2B = "hun", - Part2T = null, - Part1 = "hu", - RefName = "Hungarian", - }, - new() - { - Part2B = "hup", - Part2T = null, - Part1 = null, - RefName = "Hupa", - }, - new() - { - Part2B = "iba", - Part2T = null, - Part1 = null, - RefName = "Iban", - }, - new() - { - Part2B = "ibo", - Part2T = null, - Part1 = "ig", - RefName = "Igbo", - }, - new() - { - Part2B = "ice", - Part2T = "isl", - Part1 = "is", - RefName = "Icelandic", - }, - new() - { - Part2B = "ido", - Part2T = null, - Part1 = "io", - RefName = "Ido", - }, - new() - { - Part2B = "iii", - Part2T = null, - Part1 = "ii", - RefName = "Sichuan Yi; Nuosu", - }, - new() - { - Part2B = "ijo", - Part2T = null, - Part1 = null, - RefName = "Ijo languages", - }, - new() - { - Part2B = "iku", - Part2T = null, - Part1 = "iu", - RefName = "Inuktitut", - }, - new() - { - Part2B = "ile", - Part2T = null, - Part1 = "ie", - RefName = "Interlingue; Occidental", - }, - new() - { - Part2B = "ilo", - Part2T = null, - Part1 = null, - RefName = "Iloko", - }, - new() - { - Part2B = "ina", - Part2T = null, - Part1 = "ia", - RefName = "Interlingua (International Auxiliary Language Association)", - }, - new() - { - Part2B = "inc", - Part2T = null, - Part1 = null, - RefName = "Indic languages", - }, - new() - { - Part2B = "ind", - Part2T = null, - Part1 = "id", - RefName = "Indonesian", - }, - new() - { - Part2B = "ine", - Part2T = null, - Part1 = null, - RefName = "Indo-European languages", - }, - new() - { - Part2B = "inh", - Part2T = null, - Part1 = null, - RefName = "Ingush", - }, - new() - { - Part2B = "ipk", - Part2T = null, - Part1 = "ik", - RefName = "Inupiaq", - }, - new() - { - Part2B = "ira", - Part2T = null, - Part1 = null, - RefName = "Iranian languages", - }, - new() - { - Part2B = "iro", - Part2T = null, - Part1 = null, - RefName = "Iroquoian languages", - }, - new() - { - Part2B = "ita", - Part2T = null, - Part1 = "it", - RefName = "Italian", - }, - new() - { - Part2B = "jav", - Part2T = null, - Part1 = "jv", - RefName = "Javanese", - }, - new() - { - Part2B = "jbo", - Part2T = null, - Part1 = null, - RefName = "Lojban", - }, - new() - { - Part2B = "jpn", - Part2T = null, - Part1 = "ja", - RefName = "Japanese", - }, - new() - { - Part2B = "jpr", - Part2T = null, - Part1 = null, - RefName = "Judeo-Persian", - }, - new() - { - Part2B = "jrb", - Part2T = null, - Part1 = null, - RefName = "Judeo-Arabic", - }, - new() - { - Part2B = "kaa", - Part2T = null, - Part1 = null, - RefName = "Kara-Kalpak", - }, - new() - { - Part2B = "kab", - Part2T = null, - Part1 = null, - RefName = "Kabyle", - }, - new() - { - Part2B = "kac", - Part2T = null, - Part1 = null, - RefName = "Kachin; Jingpho", - }, - new() - { - Part2B = "kal", - Part2T = null, - Part1 = "kl", - RefName = "Kalaallisut; Greenlandic", - }, - new() - { - Part2B = "kam", - Part2T = null, - Part1 = null, - RefName = "Kamba", - }, - new() - { - Part2B = "kan", - Part2T = null, - Part1 = "kn", - RefName = "Kannada", - }, - new() - { - Part2B = "kar", - Part2T = null, - Part1 = null, - RefName = "Karen languages", - }, - new() - { - Part2B = "kas", - Part2T = null, - Part1 = "ks", - RefName = "Kashmiri", - }, - new() - { - Part2B = "kau", - Part2T = null, - Part1 = "kr", - RefName = "Kanuri", - }, - new() - { - Part2B = "kaw", - Part2T = null, - Part1 = null, - RefName = "Kawi", - }, - new() - { - Part2B = "kaz", - Part2T = null, - Part1 = "kk", - RefName = "Kazakh", - }, - new() - { - Part2B = "kbd", - Part2T = null, - Part1 = null, - RefName = "Kabardian", - }, - new() - { - Part2B = "kha", - Part2T = null, - Part1 = null, - RefName = "Khasi", - }, - new() - { - Part2B = "khi", - Part2T = null, - Part1 = null, - RefName = "Khoisan languages", - }, - new() - { - Part2B = "khm", - Part2T = null, - Part1 = "km", - RefName = "Central Khmer", - }, - new() - { - Part2B = "kho", - Part2T = null, - Part1 = null, - RefName = "Khotanese; Sakan", - }, - new() - { - Part2B = "kik", - Part2T = null, - Part1 = "ki", - RefName = "Kikuyu; Gikuyu", - }, - new() - { - Part2B = "kin", - Part2T = null, - Part1 = "rw", - RefName = "Kinyarwanda", - }, - new() - { - Part2B = "kir", - Part2T = null, - Part1 = "ky", - RefName = "Kirghiz; Kyrgyz", - }, - new() - { - Part2B = "kmb", - Part2T = null, - Part1 = null, - RefName = "Kimbundu", - }, - new() - { - Part2B = "kok", - Part2T = null, - Part1 = null, - RefName = "Konkani", - }, - new() - { - Part2B = "kom", - Part2T = null, - Part1 = "kv", - RefName = "Komi", - }, - new() - { - Part2B = "kon", - Part2T = null, - Part1 = "kg", - RefName = "Kongo", - }, - new() - { - Part2B = "kor", - Part2T = null, - Part1 = "ko", - RefName = "Korean", - }, - new() - { - Part2B = "kos", - Part2T = null, - Part1 = null, - RefName = "Kosraean", - }, - new() - { - Part2B = "kpe", - Part2T = null, - Part1 = null, - RefName = "Kpelle", - }, - new() - { - Part2B = "krc", - Part2T = null, - Part1 = null, - RefName = "Karachay-Balkar", - }, - new() - { - Part2B = "krl", - Part2T = null, - Part1 = null, - RefName = "Karelian", - }, - new() - { - Part2B = "kro", - Part2T = null, - Part1 = null, - RefName = "Kru languages", - }, - new() - { - Part2B = "kru", - Part2T = null, - Part1 = null, - RefName = "Kurukh", - }, - new() - { - Part2B = "kua", - Part2T = null, - Part1 = "kj", - RefName = "Kuanyama; Kwanyama", - }, - new() - { - Part2B = "kum", - Part2T = null, - Part1 = null, - RefName = "Kumyk", - }, - new() - { - Part2B = "kur", - Part2T = null, - Part1 = "ku", - RefName = "Kurdish", - }, - new() - { - Part2B = "kut", - Part2T = null, - Part1 = null, - RefName = "Kutenai", - }, - new() - { - Part2B = "lad", - Part2T = null, - Part1 = null, - RefName = "Ladino", - }, - new() - { - Part2B = "lah", - Part2T = null, - Part1 = null, - RefName = "Lahnda", - }, - new() - { - Part2B = "lam", - Part2T = null, - Part1 = null, - RefName = "Lamba", - }, - new() - { - Part2B = "lao", - Part2T = null, - Part1 = "lo", - RefName = "Lao", - }, - new() - { - Part2B = "lat", - Part2T = null, - Part1 = "la", - RefName = "Latin", - }, - new() - { - Part2B = "lav", - Part2T = null, - Part1 = "lv", - RefName = "Latvian", - }, - new() - { - Part2B = "lez", - Part2T = null, - Part1 = null, - RefName = "Lezghian", - }, - new() - { - Part2B = "lim", - Part2T = null, - Part1 = "li", - RefName = "Limburgan; Limburger; Limburgish", - }, - new() - { - Part2B = "lin", - Part2T = null, - Part1 = "ln", - RefName = "Lingala", - }, - new() - { - Part2B = "lit", - Part2T = null, - Part1 = "lt", - RefName = "Lithuanian", - }, - new() - { - Part2B = "lol", - Part2T = null, - Part1 = null, - RefName = "Mongo", - }, - new() - { - Part2B = "loz", - Part2T = null, - Part1 = null, - RefName = "Lozi", - }, - new() - { - Part2B = "ltz", - Part2T = null, - Part1 = "lb", - RefName = "Luxembourgish; Letzeburgesch", - }, - new() - { - Part2B = "lua", - Part2T = null, - Part1 = null, - RefName = "Luba-Lulua", - }, - new() - { - Part2B = "lub", - Part2T = null, - Part1 = "lu", - RefName = "Luba-Katanga", - }, - new() - { - Part2B = "lug", - Part2T = null, - Part1 = "lg", - RefName = "Ganda", - }, - new() - { - Part2B = "lui", - Part2T = null, - Part1 = null, - RefName = "Luiseno", - }, - new() - { - Part2B = "lun", - Part2T = null, - Part1 = null, - RefName = "Lunda", - }, - new() - { - Part2B = "luo", - Part2T = null, - Part1 = null, - RefName = "Luo (Kenya and Tanzania)", - }, - new() - { - Part2B = "lus", - Part2T = null, - Part1 = null, - RefName = "Lushai", - }, - new() - { - Part2B = "mac", - Part2T = "mkd", - Part1 = "mk", - RefName = "Macedonian", - }, - new() - { - Part2B = "mad", - Part2T = null, - Part1 = null, - RefName = "Madurese", - }, - new() - { - Part2B = "mag", - Part2T = null, - Part1 = null, - RefName = "Magahi", - }, - new() - { - Part2B = "mah", - Part2T = null, - Part1 = "mh", - RefName = "Marshallese", - }, - new() - { - Part2B = "mai", - Part2T = null, - Part1 = null, - RefName = "Maithili", - }, - new() - { - Part2B = "mak", - Part2T = null, - Part1 = null, - RefName = "Makasar", - }, - new() - { - Part2B = "mal", - Part2T = null, - Part1 = "ml", - RefName = "Malayalam", - }, - new() - { - Part2B = "man", - Part2T = null, - Part1 = null, - RefName = "Mandingo", - }, - new() - { - Part2B = "mao", - Part2T = "mri", - Part1 = "mi", - RefName = "Maori", - }, - new() - { - Part2B = "map", - Part2T = null, - Part1 = null, - RefName = "Austronesian languages", - }, - new() - { - Part2B = "mar", - Part2T = null, - Part1 = "mr", - RefName = "Marathi", - }, - new() - { - Part2B = "mas", - Part2T = null, - Part1 = null, - RefName = "Masai", - }, - new() - { - Part2B = "may", - Part2T = "msa", - Part1 = "ms", - RefName = "Malay", - }, - new() - { - Part2B = "mdf", - Part2T = null, - Part1 = null, - RefName = "Moksha", - }, - new() - { - Part2B = "mdr", - Part2T = null, - Part1 = null, - RefName = "Mandar", - }, - new() - { - Part2B = "men", - Part2T = null, - Part1 = null, - RefName = "Mende", - }, - new() - { - Part2B = "mga", - Part2T = null, - Part1 = null, - RefName = "Irish, Middle (900-1200)", - }, - new() - { - Part2B = "mic", - Part2T = null, - Part1 = null, - RefName = "Mi'kmaq; Micmac", - }, - new() - { - Part2B = "min", - Part2T = null, - Part1 = null, - RefName = "Minangkabau", - }, - new() - { - Part2B = "mis", - Part2T = null, - Part1 = null, - RefName = "Uncoded languages", - }, - new() - { - Part2B = "mkh", - Part2T = null, - Part1 = null, - RefName = "Mon-Khmer languages", - }, - new() - { - Part2B = "mlg", - Part2T = null, - Part1 = "mg", - RefName = "Malagasy", - }, - new() - { - Part2B = "mlt", - Part2T = null, - Part1 = "mt", - RefName = "Maltese", - }, - new() - { - Part2B = "mnc", - Part2T = null, - Part1 = null, - RefName = "Manchu", - }, - new() - { - Part2B = "mni", - Part2T = null, - Part1 = null, - RefName = "Manipuri", - }, - new() - { - Part2B = "mno", - Part2T = null, - Part1 = null, - RefName = "Manobo languages", - }, - new() - { - Part2B = "moh", - Part2T = null, - Part1 = null, - RefName = "Mohawk", - }, - new() - { - Part2B = "mon", - Part2T = null, - Part1 = "mn", - RefName = "Mongolian", - }, - new() - { - Part2B = "mos", - Part2T = null, - Part1 = null, - RefName = "Mossi", - }, - new() - { - Part2B = "mul", - Part2T = null, - Part1 = null, - RefName = "Multiple languages", - }, - new() - { - Part2B = "mun", - Part2T = null, - Part1 = null, - RefName = "Munda languages", - }, - new() - { - Part2B = "mus", - Part2T = null, - Part1 = null, - RefName = "Creek", - }, - new() - { - Part2B = "mwl", - Part2T = null, - Part1 = null, - RefName = "Mirandese", - }, - new() - { - Part2B = "mwr", - Part2T = null, - Part1 = null, - RefName = "Marwari", - }, - new() - { - Part2B = "myn", - Part2T = null, - Part1 = null, - RefName = "Mayan languages", - }, - new() - { - Part2B = "myv", - Part2T = null, - Part1 = null, - RefName = "Erzya", - }, - new() - { - Part2B = "nah", - Part2T = null, - Part1 = null, - RefName = "Nahuatl languages", - }, - new() - { - Part2B = "nai", - Part2T = null, - Part1 = null, - RefName = "North American Indian languages", - }, - new() - { - Part2B = "nap", - Part2T = null, - Part1 = null, - RefName = "Neapolitan", - }, - new() - { - Part2B = "nau", - Part2T = null, - Part1 = "na", - RefName = "Nauru", - }, - new() - { - Part2B = "nav", - Part2T = null, - Part1 = "nv", - RefName = "Navajo; Navaho", - }, - new() - { - Part2B = "nbl", - Part2T = null, - Part1 = "nr", - RefName = "South Ndebele", - }, - new() - { - Part2B = "nde", - Part2T = null, - Part1 = "nd", - RefName = "North Ndebele", - }, - new() - { - Part2B = "ndo", - Part2T = null, - Part1 = "ng", - RefName = "Ndonga", - }, - new() - { - Part2B = "nds", - Part2T = null, - Part1 = null, - RefName = "Low German; Low Saxon; German, Low; Saxon, Low", - }, - new() - { - Part2B = "nep", - Part2T = null, - Part1 = "ne", - RefName = "Nepali", - }, - new() - { - Part2B = "new", - Part2T = null, - Part1 = null, - RefName = "Nepal Bhasa; Newar; Newari", - }, - new() - { - Part2B = "nia", - Part2T = null, - Part1 = null, - RefName = "Nias", - }, - new() - { - Part2B = "nic", - Part2T = null, - Part1 = null, - RefName = "Niger-Kordofanian languages", - }, - new() - { - Part2B = "niu", - Part2T = null, - Part1 = null, - RefName = "Niuean", - }, - new() - { - Part2B = "nno", - Part2T = null, - Part1 = "nn", - RefName = "Norwegian Nynorsk", - }, - new() - { - Part2B = "nob", - Part2T = null, - Part1 = "nb", - RefName = "Norwegian Bokmål", - }, - new() - { - Part2B = "nog", - Part2T = null, - Part1 = null, - RefName = "Nogai", - }, - new() - { - Part2B = "non", - Part2T = null, - Part1 = null, - RefName = "Norse, Old", - }, - new() - { - Part2B = "nor", - Part2T = null, - Part1 = "no", - RefName = "Norwegian", - }, - new() - { - Part2B = "nqo", - Part2T = null, - Part1 = null, - RefName = "N'Ko", - }, - new() - { - Part2B = "nso", - Part2T = null, - Part1 = null, - RefName = "Pedi; Sepedi; Northern Sotho", - }, - new() - { - Part2B = "nub", - Part2T = null, - Part1 = null, - RefName = "Nubian languages", - }, - new() - { - Part2B = "nwc", - Part2T = null, - Part1 = null, - RefName = "Classical Newari; Old Newari; Classical Nepal Bhasa", - }, - new() - { - Part2B = "nya", - Part2T = null, - Part1 = "ny", - RefName = "Chichewa; Chewa; Nyanja", - }, - new() - { - Part2B = "nym", - Part2T = null, - Part1 = null, - RefName = "Nyamwezi", - }, - new() - { - Part2B = "nyn", - Part2T = null, - Part1 = null, - RefName = "Nyankole", - }, - new() - { - Part2B = "nyo", - Part2T = null, - Part1 = null, - RefName = "Nyoro", - }, - new() - { - Part2B = "nzi", - Part2T = null, - Part1 = null, - RefName = "Nzima", - }, - new() - { - Part2B = "oci", - Part2T = null, - Part1 = "oc", - RefName = "Occitan (post 1500)", - }, - new() - { - Part2B = "oji", - Part2T = null, - Part1 = "oj", - RefName = "Ojibwa", - }, - new() - { - Part2B = "ori", - Part2T = null, - Part1 = "or", - RefName = "Oriya", - }, - new() - { - Part2B = "orm", - Part2T = null, - Part1 = "om", - RefName = "Oromo", - }, - new() - { - Part2B = "osa", - Part2T = null, - Part1 = null, - RefName = "Osage", - }, - new() - { - Part2B = "oss", - Part2T = null, - Part1 = "os", - RefName = "Ossetian; Ossetic", - }, - new() - { - Part2B = "ota", - Part2T = null, - Part1 = null, - RefName = "Turkish, Ottoman (1500-1928)", - }, - new() - { - Part2B = "oto", - Part2T = null, - Part1 = null, - RefName = "Otomian languages", - }, - new() - { - Part2B = "paa", - Part2T = null, - Part1 = null, - RefName = "Papuan languages", - }, - new() - { - Part2B = "pag", - Part2T = null, - Part1 = null, - RefName = "Pangasinan", - }, - new() - { - Part2B = "pal", - Part2T = null, - Part1 = null, - RefName = "Pahlavi", - }, - new() - { - Part2B = "pam", - Part2T = null, - Part1 = null, - RefName = "Pampanga; Kapampangan", - }, - new() - { - Part2B = "pan", - Part2T = null, - Part1 = "pa", - RefName = "Panjabi; Punjabi", - }, - new() - { - Part2B = "pap", - Part2T = null, - Part1 = null, - RefName = "Papiamento", - }, - new() - { - Part2B = "pau", - Part2T = null, - Part1 = null, - RefName = "Palauan", - }, - new() - { - Part2B = "peo", - Part2T = null, - Part1 = null, - RefName = "Persian, Old (ca.600-400 B.C.)", - }, - new() - { - Part2B = "per", - Part2T = "fas", - Part1 = "fa", - RefName = "Persian", - }, - new() - { - Part2B = "phi", - Part2T = null, - Part1 = null, - RefName = "Philippine languages", - }, - new() - { - Part2B = "phn", - Part2T = null, - Part1 = null, - RefName = "Phoenician", - }, - new() - { - Part2B = "pli", - Part2T = null, - Part1 = "pi", - RefName = "Pali", - }, - new() - { - Part2B = "pol", - Part2T = null, - Part1 = "pl", - RefName = "Polish", - }, - new() - { - Part2B = "pon", - Part2T = null, - Part1 = null, - RefName = "Pohnpeian", - }, - new() - { - Part2B = "por", - Part2T = null, - Part1 = "pt", - RefName = "Portuguese", - }, - new() - { - Part2B = "pra", - Part2T = null, - Part1 = null, - RefName = "Prakrit languages", - }, - new() - { - Part2B = "pro", - Part2T = null, - Part1 = null, - RefName = "Provençal, Old (to 1500); Occitan, Old (to 1500)", - }, - new() - { - Part2B = "pus", - Part2T = null, - Part1 = "ps", - RefName = "Pushto; Pashto", - }, - new() - { - Part2B = "qaa-qtz", - Part2T = null, - Part1 = null, - RefName = "Reserved for local use", - }, - new() - { - Part2B = "que", - Part2T = null, - Part1 = "qu", - RefName = "Quechua", - }, - new() - { - Part2B = "raj", - Part2T = null, - Part1 = null, - RefName = "Rajasthani", - }, - new() - { - Part2B = "rap", - Part2T = null, - Part1 = null, - RefName = "Rapanui", - }, - new() - { - Part2B = "rar", - Part2T = null, - Part1 = null, - RefName = "Rarotongan; Cook Islands Maori", - }, - new() - { - Part2B = "roa", - Part2T = null, - Part1 = null, - RefName = "Romance languages", - }, - new() - { - Part2B = "roh", - Part2T = null, - Part1 = "rm", - RefName = "Romansh", - }, - new() - { - Part2B = "rom", - Part2T = null, - Part1 = null, - RefName = "Romany", - }, - new() - { - Part2B = "rum", - Part2T = "ron", - Part1 = "ro", - RefName = "Romanian; Moldavian; Moldovan", - }, - new() - { - Part2B = "run", - Part2T = null, - Part1 = "rn", - RefName = "Rundi", - }, - new() - { - Part2B = "rup", - Part2T = null, - Part1 = null, - RefName = "Aromanian; Arumanian; Macedo-Romanian", - }, - new() - { - Part2B = "rus", - Part2T = null, - Part1 = "ru", - RefName = "Russian", - }, - new() - { - Part2B = "sad", - Part2T = null, - Part1 = null, - RefName = "Sandawe", - }, - new() - { - Part2B = "sag", - Part2T = null, - Part1 = "sg", - RefName = "Sango", - }, - new() - { - Part2B = "sah", - Part2T = null, - Part1 = null, - RefName = "Yakut", - }, - new() - { - Part2B = "sai", - Part2T = null, - Part1 = null, - RefName = "South American Indian languages", - }, - new() - { - Part2B = "sal", - Part2T = null, - Part1 = null, - RefName = "Salishan languages", - }, - new() - { - Part2B = "sam", - Part2T = null, - Part1 = null, - RefName = "Samaritan Aramaic", - }, - new() - { - Part2B = "san", - Part2T = null, - Part1 = "sa", - RefName = "Sanskrit", - }, - new() - { - Part2B = "sas", - Part2T = null, - Part1 = null, - RefName = "Sasak", - }, - new() - { - Part2B = "sat", - Part2T = null, - Part1 = null, - RefName = "Santali", - }, - new() - { - Part2B = "scn", - Part2T = null, - Part1 = null, - RefName = "Sicilian", - }, - new() - { - Part2B = "sco", - Part2T = null, - Part1 = null, - RefName = "Scots", - }, - new() - { - Part2B = "sel", - Part2T = null, - Part1 = null, - RefName = "Selkup", - }, - new() - { - Part2B = "sem", - Part2T = null, - Part1 = null, - RefName = "Semitic languages", - }, - new() - { - Part2B = "sga", - Part2T = null, - Part1 = null, - RefName = "Irish, Old (to 900)", - }, - new() - { - Part2B = "sgn", - Part2T = null, - Part1 = null, - RefName = "Sign Languages", - }, - new() - { - Part2B = "shn", - Part2T = null, - Part1 = null, - RefName = "Shan", - }, - new() - { - Part2B = "sid", - Part2T = null, - Part1 = null, - RefName = "Sidamo", - }, - new() - { - Part2B = "sin", - Part2T = null, - Part1 = "si", - RefName = "Sinhala; Sinhalese", - }, - new() - { - Part2B = "sio", - Part2T = null, - Part1 = null, - RefName = "Siouan languages", - }, - new() - { - Part2B = "sit", - Part2T = null, - Part1 = null, - RefName = "Sino-Tibetan languages", - }, - new() - { - Part2B = "sla", - Part2T = null, - Part1 = null, - RefName = "Slavic languages", - }, - new() - { - Part2B = "slo", - Part2T = "slk", - Part1 = "sk", - RefName = "Slovak", - }, - new() - { - Part2B = "slv", - Part2T = null, - Part1 = "sl", - RefName = "Slovenian", - }, - new() - { - Part2B = "sma", - Part2T = null, - Part1 = null, - RefName = "Southern Sami", - }, - new() - { - Part2B = "sme", - Part2T = null, - Part1 = "se", - RefName = "Northern Sami", - }, - new() - { - Part2B = "smi", - Part2T = null, - Part1 = null, - RefName = "Sami languages", - }, - new() - { - Part2B = "smj", - Part2T = null, - Part1 = null, - RefName = "Lule Sami", - }, - new() - { - Part2B = "smn", - Part2T = null, - Part1 = null, - RefName = "Inari Sami", - }, - new() - { - Part2B = "smo", - Part2T = null, - Part1 = "sm", - RefName = "Samoan", - }, - new() - { - Part2B = "sms", - Part2T = null, - Part1 = null, - RefName = "Skolt Sami", - }, - new() - { - Part2B = "sna", - Part2T = null, - Part1 = "sn", - RefName = "Shona", - }, - new() - { - Part2B = "snd", - Part2T = null, - Part1 = "sd", - RefName = "Sindhi", - }, - new() - { - Part2B = "snk", - Part2T = null, - Part1 = null, - RefName = "Soninke", - }, - new() - { - Part2B = "sog", - Part2T = null, - Part1 = null, - RefName = "Sogdian", - }, - new() - { - Part2B = "som", - Part2T = null, - Part1 = "so", - RefName = "Somali", - }, - new() - { - Part2B = "son", - Part2T = null, - Part1 = null, - RefName = "Songhai languages", - }, - new() - { - Part2B = "sot", - Part2T = null, - Part1 = "st", - RefName = "Sotho, Southern", - }, - new() - { - Part2B = "spa", - Part2T = null, - Part1 = "es", - RefName = "Spanish; Castilian", - }, - new() - { - Part2B = "srd", - Part2T = null, - Part1 = "sc", - RefName = "Sardinian", - }, - new() - { - Part2B = "srn", - Part2T = null, - Part1 = null, - RefName = "Sranan Tongo", - }, - new() - { - Part2B = "srp", - Part2T = null, - Part1 = "sr", - RefName = "Serbian", - }, - new() - { - Part2B = "srr", - Part2T = null, - Part1 = null, - RefName = "Serer", - }, - new() - { - Part2B = "ssa", - Part2T = null, - Part1 = null, - RefName = "Nilo-Saharan languages", - }, - new() - { - Part2B = "ssw", - Part2T = null, - Part1 = "ss", - RefName = "Swati", - }, - new() - { - Part2B = "suk", - Part2T = null, - Part1 = null, - RefName = "Sukuma", - }, - new() - { - Part2B = "sun", - Part2T = null, - Part1 = "su", - RefName = "Sundanese", - }, - new() - { - Part2B = "sus", - Part2T = null, - Part1 = null, - RefName = "Susu", - }, - new() - { - Part2B = "sux", - Part2T = null, - Part1 = null, - RefName = "Sumerian", - }, - new() - { - Part2B = "swa", - Part2T = null, - Part1 = "sw", - RefName = "Swahili", - }, - new() - { - Part2B = "swe", - Part2T = null, - Part1 = "sv", - RefName = "Swedish", - }, - new() - { - Part2B = "syc", - Part2T = null, - Part1 = null, - RefName = "Classical Syriac", - }, - new() - { - Part2B = "syr", - Part2T = null, - Part1 = null, - RefName = "Syriac", - }, - new() - { - Part2B = "tah", - Part2T = null, - Part1 = "ty", - RefName = "Tahitian", - }, - new() - { - Part2B = "tai", - Part2T = null, - Part1 = null, - RefName = "Tai languages", - }, - new() - { - Part2B = "tam", - Part2T = null, - Part1 = "ta", - RefName = "Tamil", - }, - new() - { - Part2B = "tat", - Part2T = null, - Part1 = "tt", - RefName = "Tatar", - }, - new() - { - Part2B = "tel", - Part2T = null, - Part1 = "te", - RefName = "Telugu", - }, - new() - { - Part2B = "tem", - Part2T = null, - Part1 = null, - RefName = "Timne", - }, - new() - { - Part2B = "ter", - Part2T = null, - Part1 = null, - RefName = "Tereno", - }, - new() - { - Part2B = "tet", - Part2T = null, - Part1 = null, - RefName = "Tetum", - }, - new() - { - Part2B = "tgk", - Part2T = null, - Part1 = "tg", - RefName = "Tajik", - }, - new() - { - Part2B = "tgl", - Part2T = null, - Part1 = "tl", - RefName = "Tagalog", - }, - new() - { - Part2B = "tha", - Part2T = null, - Part1 = "th", - RefName = "Thai", - }, - new() - { - Part2B = "tib", - Part2T = "bod", - Part1 = "bo", - RefName = "Tibetan", - }, - new() - { - Part2B = "tig", - Part2T = null, - Part1 = null, - RefName = "Tigre", - }, - new() - { - Part2B = "tir", - Part2T = null, - Part1 = "ti", - RefName = "Tigrinya", - }, - new() - { - Part2B = "tiv", - Part2T = null, - Part1 = null, - RefName = "Tiv", - }, - new() - { - Part2B = "tkl", - Part2T = null, - Part1 = null, - RefName = "Tokelau", - }, - new() - { - Part2B = "tlh", - Part2T = null, - Part1 = null, - RefName = "Klingon; tlhIngan-Hol", - }, - new() - { - Part2B = "tli", - Part2T = null, - Part1 = null, - RefName = "Tlingit", - }, - new() - { - Part2B = "tmh", - Part2T = null, - Part1 = null, - RefName = "Tamashek", - }, - new() - { - Part2B = "tog", - Part2T = null, - Part1 = null, - RefName = "Tonga (Nyasa)", - }, - new() - { - Part2B = "ton", - Part2T = null, - Part1 = "to", - RefName = "Tonga (Tonga Islands)", - }, - new() - { - Part2B = "tpi", - Part2T = null, - Part1 = null, - RefName = "Tok Pisin", - }, - new() - { - Part2B = "tsi", - Part2T = null, - Part1 = null, - RefName = "Tsimshian", - }, - new() - { - Part2B = "tsn", - Part2T = null, - Part1 = "tn", - RefName = "Tswana", - }, - new() - { - Part2B = "tso", - Part2T = null, - Part1 = "ts", - RefName = "Tsonga", - }, - new() - { - Part2B = "tuk", - Part2T = null, - Part1 = "tk", - RefName = "Turkmen", - }, - new() - { - Part2B = "tum", - Part2T = null, - Part1 = null, - RefName = "Tumbuka", - }, - new() - { - Part2B = "tup", - Part2T = null, - Part1 = null, - RefName = "Tupi languages", - }, - new() - { - Part2B = "tur", - Part2T = null, - Part1 = "tr", - RefName = "Turkish", - }, - new() - { - Part2B = "tut", - Part2T = null, - Part1 = null, - RefName = "Altaic languages", - }, - new() - { - Part2B = "tvl", - Part2T = null, - Part1 = null, - RefName = "Tuvalu", - }, - new() - { - Part2B = "twi", - Part2T = null, - Part1 = "tw", - RefName = "Twi", - }, - new() - { - Part2B = "tyv", - Part2T = null, - Part1 = null, - RefName = "Tuvinian", - }, - new() - { - Part2B = "udm", - Part2T = null, - Part1 = null, - RefName = "Udmurt", - }, - new() - { - Part2B = "uga", - Part2T = null, - Part1 = null, - RefName = "Ugaritic", - }, - new() - { - Part2B = "uig", - Part2T = null, - Part1 = "ug", - RefName = "Uighur; Uyghur", - }, - new() - { - Part2B = "ukr", - Part2T = null, - Part1 = "uk", - RefName = "Ukrainian", - }, - new() - { - Part2B = "umb", - Part2T = null, - Part1 = null, - RefName = "Umbundu", - }, - new() - { - Part2B = "und", - Part2T = null, - Part1 = null, - RefName = "Undetermined", - }, - new() - { - Part2B = "urd", - Part2T = null, - Part1 = "ur", - RefName = "Urdu", - }, - new() - { - Part2B = "uzb", - Part2T = null, - Part1 = "uz", - RefName = "Uzbek", - }, - new() - { - Part2B = "vai", - Part2T = null, - Part1 = null, - RefName = "Vai", - }, - new() - { - Part2B = "ven", - Part2T = null, - Part1 = "ve", - RefName = "Venda", - }, - new() - { - Part2B = "vie", - Part2T = null, - Part1 = "vi", - RefName = "Vietnamese", - }, - new() - { - Part2B = "vol", - Part2T = null, - Part1 = "vo", - RefName = "Volapük", - }, - new() - { - Part2B = "vot", - Part2T = null, - Part1 = null, - RefName = "Votic", - }, - new() - { - Part2B = "wak", - Part2T = null, - Part1 = null, - RefName = "Wakashan languages", - }, - new() - { - Part2B = "wal", - Part2T = null, - Part1 = null, - RefName = "Wolaitta; Wolaytta", - }, - new() - { - Part2B = "war", - Part2T = null, - Part1 = null, - RefName = "Waray", - }, - new() - { - Part2B = "was", - Part2T = null, - Part1 = null, - RefName = "Washo", - }, - new() - { - Part2B = "wel", - Part2T = "cym", - Part1 = "cy", - RefName = "Welsh", - }, - new() - { - Part2B = "wen", - Part2T = null, - Part1 = null, - RefName = "Sorbian languages", - }, - new() - { - Part2B = "wln", - Part2T = null, - Part1 = "wa", - RefName = "Walloon", - }, - new() - { - Part2B = "wol", - Part2T = null, - Part1 = "wo", - RefName = "Wolof", - }, - new() - { - Part2B = "xal", - Part2T = null, - Part1 = null, - RefName = "Kalmyk; Oirat", - }, - new() - { - Part2B = "xho", - Part2T = null, - Part1 = "xh", - RefName = "Xhosa", - }, - new() - { - Part2B = "yao", - Part2T = null, - Part1 = null, - RefName = "Yao", - }, - new() - { - Part2B = "yap", - Part2T = null, - Part1 = null, - RefName = "Yapese", - }, - new() - { - Part2B = "yid", - Part2T = null, - Part1 = "yi", - RefName = "Yiddish", - }, - new() - { - Part2B = "yor", - Part2T = null, - Part1 = "yo", - RefName = "Yoruba", - }, - new() - { - Part2B = "ypk", - Part2T = null, - Part1 = null, - RefName = "Yupik languages", - }, - new() - { - Part2B = "zap", - Part2T = null, - Part1 = null, - RefName = "Zapotec", - }, - new() - { - Part2B = "zbl", - Part2T = null, - Part1 = null, - RefName = "Blissymbols; Blissymbolics; Bliss", - }, - new() - { - Part2B = "zen", - Part2T = null, - Part1 = null, - RefName = "Zenaga", - }, - new() - { - Part2B = "zgh", - Part2T = null, - Part1 = null, - RefName = "Standard Moroccan Tamazight", - }, - new() - { - Part2B = "zha", - Part2T = null, - Part1 = "za", - RefName = "Zhuang; Chuang", - }, - new() - { - Part2B = "znd", - Part2T = null, - Part1 = null, - RefName = "Zande languages", - }, - new() - { - Part2B = "zul", - Part2T = null, - Part1 = "zu", - RefName = "Zulu", - }, - new() - { - Part2B = "zun", - Part2T = null, - Part1 = null, - RefName = "Zuni", - }, - new() - { - Part2B = "zxx", - Part2T = null, - Part1 = null, - RefName = "No linguistic content; Not applicable", - }, - new() - { - Part2B = "zza", - Part2T = null, - Part1 = null, - RefName = "Zaza; Dimili; Dimli; Kirdki; Kirmanjki; Zazaki", - }, - ], - }; -} diff --git a/LanguageTags/Iso6393Data.cs b/LanguageTags/Iso6393Data.cs deleted file mode 100644 index e5abf4d..0000000 --- a/LanguageTags/Iso6393Data.cs +++ /dev/null @@ -1,434 +0,0 @@ -using System.Runtime.CompilerServices; -using System.Text.Json.Serialization; - -namespace ptr727.LanguageTags; - -/// -/// Provides access to ISO 639-3 language code data. -/// -public sealed partial class Iso6393Data -{ - internal const string DataUri = - "https://iso639-3.sil.org/sites/iso639-3/files/downloads/iso-639-3.tab"; - internal const string DataFileName = "iso6393"; - - private readonly Lazy _logger = new(LogOptions.CreateLogger); - internal ILogger Log => _logger.Value; - - [JsonConstructor] - internal Iso6393Data() { } - - /// - /// Gets the collection of ISO 639-3 language records. - /// - [JsonInclude] - public ImmutableArray RecordList { get; internal set; } = []; - - /// - /// Creates an instance from a data file asynchronously. - /// - /// The path to the data file. - /// The loaded . - /// Thrown when the file cannot be read. - /// Thrown when the file contains invalid data. - public static async Task FromDataAsync(string fileName) - { - Iso6393Data iso6393Data = new(); - await iso6393Data.LoadDataAsync(fileName).ConfigureAwait(false); - return iso6393Data; - } - - [System.Diagnostics.CodeAnalysis.SuppressMessage( - "Reliability", - "CA2007:Consider calling ConfigureAwait on the awaited task", - Justification = "https://github.com/dotnet/roslyn-analyzers/issues/7185" - )] - private async Task LoadDataAsync(string fileName) - { - // https://iso639-3.sil.org/code_tables/download_tables - // Id char(3) NOT NULL, The three-letter 639-3 identifier - // Part2B char(3) NULL, Equivalent 639-2 identifier of the bibliographic applications code set, if there is one - // Part2T char(3) NULL, Equivalent 639-2 identifier of the terminology applications code set, if there is one - // Part1 char(2) NULL, Equivalent 639-1 identifier, if there is one - // Scope char(1) NOT NULL, I(ndividual), M(acrolanguage), S(pecial) - // Type char(1) NOT NULL, A(ncient), C(onstructed), E(xtinct), H(istorical), L(iving), S(pecial) - // Ref_Name varchar(150) NOT NULL, Reference language name - // Comment varchar(150) NULL) Comment relating to one or more of the columns - - try - { - // Read header - // Id Part2b Part2t Part1 Scope Language_Type Ref_Name Comment - List recordList = []; - await using FileStream fileStream = new( - fileName, - FileMode.Open, - FileAccess.Read, - FileShare.Read, - 4096, - FileOptions.Asynchronous | FileOptions.SequentialScan - ); - using StreamReader lineReader = new(fileStream); - string? line = await lineReader.ReadLineAsync().ConfigureAwait(false); - if (string.IsNullOrEmpty(line)) - { - throw new InvalidDataException( - $"Missing header line in ISO 639-3 file: {fileName}" - ); - } - List records = [.. line.Split('\t').Select(item => item.Trim())]; - if (records.Count != 8) - { - throw new InvalidDataException($"Invalid data found in ISO 639-3 record: {line}"); - } - - // Read line by line - while ((line = await lineReader.ReadLineAsync().ConfigureAwait(false)) is not null) - { - // Parse using tab character - records = [.. line.Split('\t').Select(item => item.Trim())]; - if (records.Count != 8) - { - throw new InvalidDataException( - $"Invalid data found in ISO 639-3 record: {line}" - ); - } - - // Populate record - Iso6393Record record = new() - { - Id = string.IsNullOrEmpty(records[0]) ? null : records[0], - Part2B = string.IsNullOrEmpty(records[1]) ? null : records[1], - Part2T = string.IsNullOrEmpty(records[2]) ? null : records[2], - Part1 = string.IsNullOrEmpty(records[3]) ? null : records[3], - Scope = string.IsNullOrEmpty(records[4]) ? null : records[4], - LanguageType = string.IsNullOrEmpty(records[5]) ? null : records[5], - RefName = string.IsNullOrEmpty(records[6]) ? null : records[6], - Comment = string.IsNullOrEmpty(records[7]) ? null : records[7], - }; - if ( - string.IsNullOrEmpty(record.Id) - || string.IsNullOrEmpty(record.Scope) - || string.IsNullOrEmpty(record.LanguageType) - || string.IsNullOrEmpty(record.RefName) - ) - { - throw new InvalidDataException( - $"Invalid data found in ISO 639-3 record: {line}" - ); - } - recordList.Add(record); - } - - if (recordList.Count == 0) - { - Log.LogDataLoadEmpty(nameof(Iso6393Data), fileName); - throw new InvalidDataException($"No data found in ISO 639-3 file: {fileName}"); - } - - RecordList = [.. recordList]; - Log.LogDataLoaded(nameof(Iso6393Data), fileName, RecordList.Length); - } - catch (Exception exception) - { - Log.LogDataLoadFailed(nameof(Iso6393Data), fileName, exception); - throw; - } - } - - /// - /// Creates an instance from a JSON file asynchronously. - /// - /// The path to the JSON file. - /// The loaded . - /// Thrown when the file cannot be read. - /// Thrown when the JSON is invalid. - /// Thrown when the file contains invalid data. - [System.Diagnostics.CodeAnalysis.SuppressMessage( - "Reliability", - "CA2007:Consider calling ConfigureAwait on the awaited task", - Justification = "https://github.com/dotnet/roslyn-analyzers/issues/7185" - )] - public static async Task FromJsonAsync(string fileName) - { - ILogger logger = LogOptions.CreateLogger(); - try - { - await using FileStream fileStream = new( - fileName, - FileMode.Open, - FileAccess.Read, - FileShare.Read, - 4096, - FileOptions.Asynchronous | FileOptions.SequentialScan - ); - Iso6393Data? data = await JsonSerializer - .DeserializeAsync(fileStream, LanguageJsonContext.Default.Iso6393Data) - .ConfigureAwait(false); - if (data == null) - { - logger.LogDataLoadEmpty(nameof(Iso6393Data), fileName); - throw new InvalidDataException($"No data found in ISO 639-3 file: {fileName}"); - } - - logger.LogDataLoaded(nameof(Iso6393Data), fileName, data.RecordList.Length); - return data; - } - catch (Exception exception) - { - logger.LogDataLoadFailed(nameof(Iso6393Data), fileName, exception); - throw; - } - } - - [System.Diagnostics.CodeAnalysis.SuppressMessage( - "Reliability", - "CA2007:Consider calling ConfigureAwait on the awaited task", - Justification = "https://github.com/dotnet/roslyn-analyzers/issues/7185" - )] - internal async Task SaveJsonAsync(string fileName) - { - await using FileStream fileStream = new( - fileName, - FileMode.Create, - FileAccess.Write, - FileShare.None, - 4096, - FileOptions.Asynchronous | FileOptions.SequentialScan - ); - await JsonSerializer - .SerializeAsync(fileStream, this, LanguageJsonContext.Default.Iso6393Data) - .ConfigureAwait(false); - } - - internal async Task SaveCodeAsync(string fileName) - { - using StreamWriter writer = new( - new FileStream( - fileName, - FileMode.Create, - FileAccess.Write, - FileShare.None, - 4096, - FileOptions.Asynchronous | FileOptions.SequentialScan - ), - new UTF8Encoding(false) - ) - { - NewLine = "\r\n", - }; - - await WriteLineAsync("namespace ptr727.LanguageTags;"); - await WriteLineAsync(string.Empty); - await WriteLineAsync("/// "); - await WriteLineAsync("/// Provides access to ISO 639-3 language code data."); - await WriteLineAsync("/// "); - await WriteLineAsync( - $"[System.CodeDom.Compiler.GeneratedCode(\"{typeof(Iso6393Data).FullName}\", \"1.0\")]" - ); - await WriteLineAsync("public sealed partial class Iso6393Data"); - await WriteLineAsync("{"); - await WriteLineAsync(" /// "); - await WriteLineAsync( - " /// Creates an instance loaded from the embedded ISO 639-3 dataset." - ); - await WriteLineAsync(" /// "); - await WriteLineAsync( - " /// The populated instance." - ); - await WriteLineAsync(" public static Iso6393Data Create() =>"); - await WriteLineAsync(" new()"); - await WriteLineAsync(" {"); - await WriteLineAsync(" RecordList ="); - await WriteLineAsync(" ["); - - foreach (Iso6393Record record in RecordList) - { - await WriteLineAsync(" new()"); - await WriteLineAsync(" {"); - await WriteLineAsync( - $" Id = {LanguageSchema.GetCodeGenString(record.Id)}," - ); - await WriteLineAsync( - $" Part2B = {LanguageSchema.GetCodeGenString(record.Part2B)}," - ); - await WriteLineAsync( - $" Part2T = {LanguageSchema.GetCodeGenString(record.Part2T)}," - ); - await WriteLineAsync( - $" Part1 = {LanguageSchema.GetCodeGenString(record.Part1)}," - ); - await WriteLineAsync( - $" Scope = {LanguageSchema.GetCodeGenString(record.Scope)}," - ); - await WriteLineAsync( - $" LanguageType = {LanguageSchema.GetCodeGenString(record.LanguageType)}," - ); - await WriteLineAsync( - $" RefName = {LanguageSchema.GetCodeGenString(record.RefName)}," - ); - await WriteLineAsync( - $" Comment = {LanguageSchema.GetCodeGenString(record.Comment)}," - ); - await WriteLineAsync(" },"); - } - - await WriteLineAsync(" ],"); - await WriteLineAsync(" };"); - await WriteLineAsync("}"); - return; - - ConfiguredTaskAwaitable WriteLineAsync(string value) => - writer.WriteLineAsync(value).ConfigureAwait(false); - } - - /// - /// Finds an ISO 639-3 language record by language code or description. - /// - /// - /// Matching is case-insensitive and checks Id, Part 2/B, Part 2/T, Part 1, then (optionally) reference name. - /// Null or empty values return null. - /// - /// The language code or description to search for. - /// If true, searches in the reference name field; otherwise, only searches language codes. - /// The matching or null if not found. - public Iso6393Record? Find(string languageTag, bool includeDescription) - { - if (string.IsNullOrEmpty(languageTag)) - { - Log.LogFindRecordNotFound(nameof(Iso6393Data), languageTag, includeDescription); - return null; - } - - // Find the matching language entry - Iso6393Record? record = null; - - // 693 3 letter form - if (languageTag.Length == 3) - { - // Try 639-3 - record = RecordList.FirstOrDefault(item => - !string.IsNullOrEmpty(item.Id) - && item.Id.Equals(languageTag, StringComparison.OrdinalIgnoreCase) - ); - if (record != null) - { - Log.LogFindRecordFound(nameof(Iso6393Data), languageTag, includeDescription); - return record; - } - - // Try the 639-2/B - record = RecordList.FirstOrDefault(item => - !string.IsNullOrEmpty(item.Part2B) - && item.Part2B.Equals(languageTag, StringComparison.OrdinalIgnoreCase) - ); - if (record != null) - { - Log.LogFindRecordFound(nameof(Iso6393Data), languageTag, includeDescription); - return record; - } - - // Try the 639-2/T - record = RecordList.FirstOrDefault(item => - !string.IsNullOrEmpty(item.Part2T) - && item.Part2T.Equals(languageTag, StringComparison.OrdinalIgnoreCase) - ); - if (record != null) - { - Log.LogFindRecordFound(nameof(Iso6393Data), languageTag, includeDescription); - return record; - } - } - - // 693 2 letter form - if (languageTag.Length == 2) - { - // Try 639-1 - record = RecordList.FirstOrDefault(item => - !string.IsNullOrEmpty(item.Part1) - && item.Part1.Equals(languageTag, StringComparison.OrdinalIgnoreCase) - ); - if (record != null) - { - Log.LogFindRecordFound(nameof(Iso6393Data), languageTag, includeDescription); - return record; - } - } - - // Long form - if (includeDescription) - { - // Exact match - record = RecordList.FirstOrDefault(item => - !string.IsNullOrEmpty(item.RefName) - && item.RefName.Equals(languageTag, StringComparison.OrdinalIgnoreCase) - ); - if (record != null) - { - Log.LogFindRecordFound(nameof(Iso6393Data), languageTag, includeDescription); - return record; - } - - // Partial match - record = RecordList.FirstOrDefault(item => - !string.IsNullOrEmpty(item.RefName) - && item.RefName.Contains(languageTag, StringComparison.OrdinalIgnoreCase) - ); - if (record != null) - { - Log.LogFindRecordFound(nameof(Iso6393Data), languageTag, includeDescription); - return record; - } - } - - // Not found - Log.LogFindRecordNotFound(nameof(Iso6393Data), languageTag, includeDescription); - return null; - } -} - -/// -/// Represents an ISO 639-3 language code record. -/// -public sealed record Iso6393Record -{ - /// - /// Gets the ISO 639-3 identifier (3 letters). - /// - public string? Id { get; init; } - - /// - /// Gets the equivalent ISO 639-2/B bibliographic code (3 letters). - /// - public string? Part2B { get; init; } - - /// - /// Gets the equivalent ISO 639-2/T terminology code (3 letters). - /// - public string? Part2T { get; init; } - - /// - /// Gets the equivalent ISO 639-1 code (2 letters). - /// - public string? Part1 { get; init; } - - /// - /// Gets the scope of the language: I(ndividual), M(acrolanguage), or S(pecial). - /// - public string? Scope { get; init; } - - /// - /// Gets the type of the language: A(ncient), C(onstructed), E(xtinct), H(istorical), L(iving), or S(pecial). - /// - public string? LanguageType { get; init; } - - /// - /// Gets the reference name of the language. - /// - public string? RefName { get; init; } - - /// - /// Gets additional comments about the language. - /// - public string? Comment { get; init; } -} diff --git a/LanguageTags/Iso6393DataGen.cs b/LanguageTags/Iso6393DataGen.cs deleted file mode 100644 index acc2a8d..0000000 --- a/LanguageTags/Iso6393DataGen.cs +++ /dev/null @@ -1,87239 +0,0 @@ -namespace ptr727.LanguageTags; - -/// -/// Provides access to ISO 639-3 language code data. -/// -[System.CodeDom.Compiler.GeneratedCode("ptr727.LanguageTags.Iso6393Data", "1.0")] -public sealed partial class Iso6393Data -{ - /// - /// Creates an instance loaded from the embedded ISO 639-3 dataset. - /// - /// The populated instance. - public static Iso6393Data Create() => - new() - { - RecordList = - [ - new() - { - Id = "aaa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ghotuo", - Comment = null, - }, - new() - { - Id = "aab", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Alumu-Tesu", - Comment = null, - }, - new() - { - Id = "aac", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ari", - Comment = null, - }, - new() - { - Id = "aad", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Amal", - Comment = null, - }, - new() - { - Id = "aae", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Arbëreshë Albanian", - Comment = null, - }, - new() - { - Id = "aaf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aranadan", - Comment = null, - }, - new() - { - Id = "aag", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ambrak", - Comment = null, - }, - new() - { - Id = "aah", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Abu' Arapesh", - Comment = null, - }, - new() - { - Id = "aai", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Arifama-Miniafia", - Comment = null, - }, - new() - { - Id = "aak", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ankave", - Comment = null, - }, - new() - { - Id = "aal", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Afade", - Comment = null, - }, - new() - { - Id = "aan", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Anambé", - Comment = null, - }, - new() - { - Id = "aao", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Algerian Saharan Arabic", - Comment = null, - }, - new() - { - Id = "aap", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pará Arára", - Comment = null, - }, - new() - { - Id = "aaq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Eastern Abnaki", - Comment = null, - }, - new() - { - Id = "aar", - Part2B = "aar", - Part2T = "aar", - Part1 = "aa", - Scope = "I", - LanguageType = "L", - RefName = "Afar", - Comment = null, - }, - new() - { - Id = "aas", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aasáx", - Comment = null, - }, - new() - { - Id = "aat", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Arvanitika Albanian", - Comment = null, - }, - new() - { - Id = "aau", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Abau", - Comment = null, - }, - new() - { - Id = "aaw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Solong", - Comment = null, - }, - new() - { - Id = "aax", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mandobo Atas", - Comment = null, - }, - new() - { - Id = "aaz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Amarasi", - Comment = null, - }, - new() - { - Id = "aba", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Abé", - Comment = null, - }, - new() - { - Id = "abb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bankon", - Comment = null, - }, - new() - { - Id = "abc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ambala Ayta", - Comment = null, - }, - new() - { - Id = "abd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Manide", - Comment = null, - }, - new() - { - Id = "abe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Abnaki", - Comment = null, - }, - new() - { - Id = "abf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Abai Sungai", - Comment = null, - }, - new() - { - Id = "abg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Abaga", - Comment = null, - }, - new() - { - Id = "abh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tajiki Arabic", - Comment = null, - }, - new() - { - Id = "abi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Abidji", - Comment = null, - }, - new() - { - Id = "abj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Aka-Bea", - Comment = null, - }, - new() - { - Id = "abk", - Part2B = "abk", - Part2T = "abk", - Part1 = "ab", - Scope = "I", - LanguageType = "L", - RefName = "Abkhazian", - Comment = null, - }, - new() - { - Id = "abl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lampung Nyo", - Comment = null, - }, - new() - { - Id = "abm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Abanyom", - Comment = null, - }, - new() - { - Id = "abn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Abua", - Comment = null, - }, - new() - { - Id = "abo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Abon", - Comment = null, - }, - new() - { - Id = "abp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Abellen Ayta", - Comment = null, - }, - new() - { - Id = "abq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Abaza", - Comment = null, - }, - new() - { - Id = "abr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Abron", - Comment = null, - }, - new() - { - Id = "abs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ambonese Malay", - Comment = null, - }, - new() - { - Id = "abt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ambulas", - Comment = null, - }, - new() - { - Id = "abu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Abure", - Comment = null, - }, - new() - { - Id = "abv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Baharna Arabic", - Comment = null, - }, - new() - { - Id = "abw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pal", - Comment = null, - }, - new() - { - Id = "abx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Inabaknon", - Comment = null, - }, - new() - { - Id = "aby", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aneme Wake", - Comment = null, - }, - new() - { - Id = "abz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Abui", - Comment = null, - }, - new() - { - Id = "aca", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Achagua", - Comment = null, - }, - new() - { - Id = "acb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Áncá", - Comment = null, - }, - new() - { - Id = "acd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gikyode", - Comment = null, - }, - new() - { - Id = "ace", - Part2B = "ace", - Part2T = "ace", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Achinese", - Comment = null, - }, - new() - { - Id = "acf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Saint Lucian Creole French", - Comment = null, - }, - new() - { - Id = "ach", - Part2B = "ach", - Part2T = "ach", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Acoli", - Comment = null, - }, - new() - { - Id = "aci", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Aka-Cari", - Comment = null, - }, - new() - { - Id = "ack", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Aka-Kora", - Comment = null, - }, - new() - { - Id = "acl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Akar-Bale", - Comment = null, - }, - new() - { - Id = "acm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mesopotamian Arabic", - Comment = null, - }, - new() - { - Id = "acn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Achang", - Comment = null, - }, - new() - { - Id = "acp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Acipa", - Comment = null, - }, - new() - { - Id = "acq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ta'izzi-Adeni Arabic", - Comment = null, - }, - new() - { - Id = "acr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Achi", - Comment = null, - }, - new() - { - Id = "acs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Acroá", - Comment = null, - }, - new() - { - Id = "act", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Achterhoeks", - Comment = null, - }, - new() - { - Id = "acu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Achuar-Shiwiar", - Comment = null, - }, - new() - { - Id = "acv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Achumawi", - Comment = null, - }, - new() - { - Id = "acw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hijazi Arabic", - Comment = null, - }, - new() - { - Id = "acx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Omani Arabic", - Comment = null, - }, - new() - { - Id = "acy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cypriot Arabic", - Comment = null, - }, - new() - { - Id = "acz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Acheron", - Comment = null, - }, - new() - { - Id = "ada", - Part2B = "ada", - Part2T = "ada", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Adangme", - Comment = null, - }, - new() - { - Id = "adb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Atauran", - Comment = null, - }, - new() - { - Id = "add", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lidzonka", - Comment = null, - }, - new() - { - Id = "ade", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Adele", - Comment = null, - }, - new() - { - Id = "adf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dhofari Arabic", - Comment = null, - }, - new() - { - Id = "adg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Andegerebinha", - Comment = null, - }, - new() - { - Id = "adh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Adhola", - Comment = null, - }, - new() - { - Id = "adi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Adi", - Comment = null, - }, - new() - { - Id = "adj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Adioukrou", - Comment = null, - }, - new() - { - Id = "adl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Galo", - Comment = null, - }, - new() - { - Id = "adn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Adang", - Comment = null, - }, - new() - { - Id = "ado", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Abu", - Comment = null, - }, - new() - { - Id = "adq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Adangbe", - Comment = null, - }, - new() - { - Id = "adr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Adonara", - Comment = null, - }, - new() - { - Id = "ads", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Adamorobe Sign Language", - Comment = null, - }, - new() - { - Id = "adt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Adnyamathanha", - Comment = null, - }, - new() - { - Id = "adu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aduge", - Comment = null, - }, - new() - { - Id = "adw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Amundava", - Comment = null, - }, - new() - { - Id = "adx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Amdo Tibetan", - Comment = null, - }, - new() - { - Id = "ady", - Part2B = "ady", - Part2T = "ady", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Adyghe", - Comment = null, - }, - new() - { - Id = "adz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Adzera", - Comment = null, - }, - new() - { - Id = "aea", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Areba", - Comment = null, - }, - new() - { - Id = "aeb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tunisian Arabic", - Comment = null, - }, - new() - { - Id = "aec", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Saidi Arabic", - Comment = null, - }, - new() - { - Id = "aed", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Argentine Sign Language", - Comment = null, - }, - new() - { - Id = "aee", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northeast Pashai", - Comment = null, - }, - new() - { - Id = "aek", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Haeke", - Comment = null, - }, - new() - { - Id = "ael", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ambele", - Comment = null, - }, - new() - { - Id = "aem", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Arem", - Comment = null, - }, - new() - { - Id = "aen", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Armenian Sign Language", - Comment = null, - }, - new() - { - Id = "aeq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aer", - Comment = null, - }, - new() - { - Id = "aer", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Arrernte", - Comment = null, - }, - new() - { - Id = "aes", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Alsea", - Comment = null, - }, - new() - { - Id = "aeu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Akeu", - Comment = null, - }, - new() - { - Id = "aew", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ambakich", - Comment = null, - }, - new() - { - Id = "aey", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Amele", - Comment = null, - }, - new() - { - Id = "aez", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aeka", - Comment = null, - }, - new() - { - Id = "afb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gulf Arabic", - Comment = null, - }, - new() - { - Id = "afd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Andai", - Comment = null, - }, - new() - { - Id = "afe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Putukwam", - Comment = null, - }, - new() - { - Id = "afg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Afghan Sign Language", - Comment = null, - }, - new() - { - Id = "afh", - Part2B = "afh", - Part2T = "afh", - Part1 = null, - Scope = "I", - LanguageType = "C", - RefName = "Afrihili", - Comment = null, - }, - new() - { - Id = "afi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Akrukay", - Comment = null, - }, - new() - { - Id = "afk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nanubae", - Comment = null, - }, - new() - { - Id = "afn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Defaka", - Comment = null, - }, - new() - { - Id = "afo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eloyi", - Comment = null, - }, - new() - { - Id = "afp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tapei", - Comment = null, - }, - new() - { - Id = "afr", - Part2B = "afr", - Part2T = "afr", - Part1 = "af", - Scope = "I", - LanguageType = "L", - RefName = "Afrikaans", - Comment = null, - }, - new() - { - Id = "afs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Afro-Seminole Creole", - Comment = null, - }, - new() - { - Id = "aft", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Afitti", - Comment = null, - }, - new() - { - Id = "afu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Awutu", - Comment = null, - }, - new() - { - Id = "afz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Obokuitai", - Comment = null, - }, - new() - { - Id = "aga", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Aguano", - Comment = null, - }, - new() - { - Id = "agb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Legbo", - Comment = null, - }, - new() - { - Id = "agc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Agatu", - Comment = null, - }, - new() - { - Id = "agd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Agarabi", - Comment = null, - }, - new() - { - Id = "age", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Angal", - Comment = null, - }, - new() - { - Id = "agf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Arguni", - Comment = null, - }, - new() - { - Id = "agg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Angor", - Comment = null, - }, - new() - { - Id = "agh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngelima", - Comment = null, - }, - new() - { - Id = "agi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Agariya", - Comment = null, - }, - new() - { - Id = "agj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Argobba", - Comment = null, - }, - new() - { - Id = "agk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Isarog Agta", - Comment = null, - }, - new() - { - Id = "agl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Fembe", - Comment = null, - }, - new() - { - Id = "agm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Angaataha", - Comment = null, - }, - new() - { - Id = "agn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Agutaynen", - Comment = null, - }, - new() - { - Id = "ago", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tainae", - Comment = null, - }, - new() - { - Id = "agq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aghem", - Comment = null, - }, - new() - { - Id = "agr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aguaruna", - Comment = null, - }, - new() - { - Id = "ags", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Esimbi", - Comment = null, - }, - new() - { - Id = "agt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Central Cagayan Agta", - Comment = null, - }, - new() - { - Id = "agu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aguacateco", - Comment = null, - }, - new() - { - Id = "agv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Remontado Dumagat", - Comment = null, - }, - new() - { - Id = "agw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kahua", - Comment = null, - }, - new() - { - Id = "agx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aghul", - Comment = null, - }, - new() - { - Id = "agy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Alta", - Comment = null, - }, - new() - { - Id = "agz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mt. Iriga Agta", - Comment = null, - }, - new() - { - Id = "aha", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ahanta", - Comment = null, - }, - new() - { - Id = "ahb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Axamb", - Comment = null, - }, - new() - { - Id = "ahg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Qimant", - Comment = null, - }, - new() - { - Id = "ahh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aghu", - Comment = null, - }, - new() - { - Id = "ahi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tiagbamrin Aizi", - Comment = null, - }, - new() - { - Id = "ahk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Akha", - Comment = null, - }, - new() - { - Id = "ahl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Igo", - Comment = null, - }, - new() - { - Id = "ahm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mobumrin Aizi", - Comment = null, - }, - new() - { - Id = "ahn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Àhàn", - Comment = null, - }, - new() - { - Id = "aho", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Ahom", - Comment = null, - }, - new() - { - Id = "ahp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aproumu Aizi", - Comment = null, - }, - new() - { - Id = "ahr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ahirani", - Comment = null, - }, - new() - { - Id = "ahs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ashe", - Comment = null, - }, - new() - { - Id = "aht", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ahtena", - Comment = null, - }, - new() - { - Id = "aia", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Arosi", - Comment = null, - }, - new() - { - Id = "aib", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ainu (China)", - Comment = null, - }, - new() - { - Id = "aic", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ainbai", - Comment = null, - }, - new() - { - Id = "aid", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Alngith", - Comment = null, - }, - new() - { - Id = "aie", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Amara", - Comment = null, - }, - new() - { - Id = "aif", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Agi", - Comment = null, - }, - new() - { - Id = "aig", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Antigua and Barbuda Creole English", - Comment = null, - }, - new() - { - Id = "aih", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ai-Cham", - Comment = null, - }, - new() - { - Id = "aii", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Assyrian Neo-Aramaic", - Comment = null, - }, - new() - { - Id = "aij", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lishanid Noshan", - Comment = null, - }, - new() - { - Id = "aik", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ake", - Comment = null, - }, - new() - { - Id = "ail", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aimele", - Comment = null, - }, - new() - { - Id = "aim", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aimol", - Comment = null, - }, - new() - { - Id = "ain", - Part2B = "ain", - Part2T = "ain", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ainu (Japan)", - Comment = null, - }, - new() - { - Id = "aio", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aiton", - Comment = null, - }, - new() - { - Id = "aip", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Burumakok", - Comment = null, - }, - new() - { - Id = "aiq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aimaq", - Comment = null, - }, - new() - { - Id = "air", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Airoran", - Comment = null, - }, - new() - { - Id = "ait", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Arikem", - Comment = null, - }, - new() - { - Id = "aiw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aari", - Comment = null, - }, - new() - { - Id = "aix", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aighon", - Comment = null, - }, - new() - { - Id = "aiy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ali", - Comment = null, - }, - new() - { - Id = "aja", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aja (South Sudan)", - Comment = null, - }, - new() - { - Id = "ajg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aja (Benin)", - Comment = null, - }, - new() - { - Id = "aji", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ajië", - Comment = null, - }, - new() - { - Id = "ajn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Andajin", - Comment = null, - }, - new() - { - Id = "ajs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Algerian Jewish Sign Language", - Comment = null, - }, - new() - { - Id = "aju", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Judeo-Moroccan Arabic", - Comment = null, - }, - new() - { - Id = "ajw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Ajawa", - Comment = null, - }, - new() - { - Id = "ajz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Amri Karbi", - Comment = null, - }, - new() - { - Id = "aka", - Part2B = "aka", - Part2T = "aka", - Part1 = "ak", - Scope = "M", - LanguageType = "L", - RefName = "Akan", - Comment = null, - }, - new() - { - Id = "akb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Batak Angkola", - Comment = null, - }, - new() - { - Id = "akc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mpur", - Comment = null, - }, - new() - { - Id = "akd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ukpet-Ehom", - Comment = null, - }, - new() - { - Id = "ake", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Akawaio", - Comment = null, - }, - new() - { - Id = "akf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Akpa", - Comment = null, - }, - new() - { - Id = "akg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Anakalangu", - Comment = null, - }, - new() - { - Id = "akh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Angal Heneng", - Comment = null, - }, - new() - { - Id = "aki", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aiome", - Comment = null, - }, - new() - { - Id = "akj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Aka-Jeru", - Comment = null, - }, - new() - { - Id = "akk", - Part2B = "akk", - Part2T = "akk", - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Akkadian", - Comment = null, - }, - new() - { - Id = "akl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aklanon", - Comment = null, - }, - new() - { - Id = "akm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Aka-Bo", - Comment = null, - }, - new() - { - Id = "ako", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Akurio", - Comment = null, - }, - new() - { - Id = "akp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Siwu", - Comment = null, - }, - new() - { - Id = "akq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ak", - Comment = null, - }, - new() - { - Id = "akr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Araki", - Comment = null, - }, - new() - { - Id = "aks", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Akaselem", - Comment = null, - }, - new() - { - Id = "akt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Akolet", - Comment = null, - }, - new() - { - Id = "aku", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Akum", - Comment = null, - }, - new() - { - Id = "akv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Akhvakh", - Comment = null, - }, - new() - { - Id = "akw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Akwa", - Comment = null, - }, - new() - { - Id = "akx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Aka-Kede", - Comment = null, - }, - new() - { - Id = "aky", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Aka-Kol", - Comment = null, - }, - new() - { - Id = "akz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Alabama", - Comment = null, - }, - new() - { - Id = "ala", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Alago", - Comment = null, - }, - new() - { - Id = "alc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Qawasqar", - Comment = null, - }, - new() - { - Id = "ald", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Alladian", - Comment = null, - }, - new() - { - Id = "ale", - Part2B = "ale", - Part2T = "ale", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aleut", - Comment = null, - }, - new() - { - Id = "alf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Alege", - Comment = null, - }, - new() - { - Id = "alh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Alawa", - Comment = null, - }, - new() - { - Id = "ali", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Amaimon", - Comment = null, - }, - new() - { - Id = "alj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Alangan", - Comment = null, - }, - new() - { - Id = "alk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Alak", - Comment = null, - }, - new() - { - Id = "all", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Allar", - Comment = null, - }, - new() - { - Id = "alm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Amblong", - Comment = null, - }, - new() - { - Id = "aln", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gheg Albanian", - Comment = null, - }, - new() - { - Id = "alo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Larike-Wakasihu", - Comment = null, - }, - new() - { - Id = "alp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Alune", - Comment = null, - }, - new() - { - Id = "alq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Algonquin", - Comment = null, - }, - new() - { - Id = "alr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Alutor", - Comment = null, - }, - new() - { - Id = "als", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tosk Albanian", - Comment = null, - }, - new() - { - Id = "alt", - Part2B = "alt", - Part2T = "alt", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Altai", - Comment = null, - }, - new() - { - Id = "alu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "'Are'are", - Comment = null, - }, - new() - { - Id = "alw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Alaba-K’abeena", - Comment = null, - }, - new() - { - Id = "alx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Amol", - Comment = null, - }, - new() - { - Id = "aly", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Alyawarr", - Comment = null, - }, - new() - { - Id = "alz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Alur", - Comment = null, - }, - new() - { - Id = "ama", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Amanayé", - Comment = null, - }, - new() - { - Id = "amb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ambo", - Comment = null, - }, - new() - { - Id = "amc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Amahuaca", - Comment = null, - }, - new() - { - Id = "ame", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yanesha'", - Comment = null, - }, - new() - { - Id = "amf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hamer-Banna", - Comment = null, - }, - new() - { - Id = "amg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Amurdak", - Comment = null, - }, - new() - { - Id = "amh", - Part2B = "amh", - Part2T = "amh", - Part1 = "am", - Scope = "I", - LanguageType = "L", - RefName = "Amharic", - Comment = null, - }, - new() - { - Id = "ami", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Amis", - Comment = null, - }, - new() - { - Id = "amj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Amdang", - Comment = null, - }, - new() - { - Id = "amk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ambai", - Comment = null, - }, - new() - { - Id = "aml", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "War-Jaintia", - Comment = null, - }, - new() - { - Id = "amm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ama (Papua New Guinea)", - Comment = null, - }, - new() - { - Id = "amn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Amanab", - Comment = null, - }, - new() - { - Id = "amo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Amo", - Comment = null, - }, - new() - { - Id = "amp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Alamblak", - Comment = null, - }, - new() - { - Id = "amq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Amahai", - Comment = null, - }, - new() - { - Id = "amr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Amarakaeri", - Comment = null, - }, - new() - { - Id = "ams", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Amami-Oshima", - Comment = null, - }, - new() - { - Id = "amt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Amto", - Comment = null, - }, - new() - { - Id = "amu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Guerrero Amuzgo", - Comment = null, - }, - new() - { - Id = "amv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ambelau", - Comment = null, - }, - new() - { - Id = "amw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Neo-Aramaic", - Comment = null, - }, - new() - { - Id = "amx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Anmatyerre", - Comment = null, - }, - new() - { - Id = "amy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ami", - Comment = null, - }, - new() - { - Id = "amz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Atampaya", - Comment = null, - }, - new() - { - Id = "ana", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Andaqui", - Comment = null, - }, - new() - { - Id = "anb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Andoa", - Comment = null, - }, - new() - { - Id = "anc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngas", - Comment = null, - }, - new() - { - Id = "and", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ansus", - Comment = null, - }, - new() - { - Id = "ane", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Xârâcùù", - Comment = null, - }, - new() - { - Id = "anf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Animere", - Comment = null, - }, - new() - { - Id = "ang", - Part2B = "ang", - Part2T = "ang", - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Old English (ca. 450-1100)", - Comment = null, - }, - new() - { - Id = "anh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nend", - Comment = null, - }, - new() - { - Id = "ani", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Andi", - Comment = null, - }, - new() - { - Id = "anj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Anor", - Comment = null, - }, - new() - { - Id = "ank", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Goemai", - Comment = null, - }, - new() - { - Id = "anl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Anu-Hkongso Chin", - Comment = null, - }, - new() - { - Id = "anm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Anal", - Comment = null, - }, - new() - { - Id = "ann", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Obolo", - Comment = null, - }, - new() - { - Id = "ano", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Andoque", - Comment = null, - }, - new() - { - Id = "anp", - Part2B = "anp", - Part2T = "anp", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Angika", - Comment = null, - }, - new() - { - Id = "anq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jarawa (India)", - Comment = null, - }, - new() - { - Id = "anr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Andh", - Comment = null, - }, - new() - { - Id = "ans", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Anserma", - Comment = null, - }, - new() - { - Id = "ant", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Antakarinya", - Comment = null, - }, - new() - { - Id = "anu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Anuak", - Comment = null, - }, - new() - { - Id = "anv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Denya", - Comment = null, - }, - new() - { - Id = "anw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Anaang", - Comment = null, - }, - new() - { - Id = "anx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Andra-Hus", - Comment = null, - }, - new() - { - Id = "any", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Anyin", - Comment = null, - }, - new() - { - Id = "anz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Anem", - Comment = null, - }, - new() - { - Id = "aoa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Angolar", - Comment = null, - }, - new() - { - Id = "aob", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Abom", - Comment = null, - }, - new() - { - Id = "aoc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pemon", - Comment = null, - }, - new() - { - Id = "aod", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Andarum", - Comment = null, - }, - new() - { - Id = "aoe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Angal Enen", - Comment = null, - }, - new() - { - Id = "aof", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bragat", - Comment = null, - }, - new() - { - Id = "aog", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Angoram", - Comment = null, - }, - new() - { - Id = "aoi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Anindilyakwa", - Comment = null, - }, - new() - { - Id = "aoj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mufian", - Comment = null, - }, - new() - { - Id = "aok", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Arhö", - Comment = null, - }, - new() - { - Id = "aol", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Alor", - Comment = null, - }, - new() - { - Id = "aom", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ömie", - Comment = null, - }, - new() - { - Id = "aon", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bumbita Arapesh", - Comment = null, - }, - new() - { - Id = "aor", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Aore", - Comment = null, - }, - new() - { - Id = "aos", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Taikat", - Comment = null, - }, - new() - { - Id = "aot", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Atong (India)", - Comment = null, - }, - new() - { - Id = "aou", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "A'ou", - Comment = null, - }, - new() - { - Id = "aox", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Atorada", - Comment = null, - }, - new() - { - Id = "aoz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Uab Meto", - Comment = null, - }, - new() - { - Id = "apb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sa'a", - Comment = null, - }, - new() - { - Id = "apc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Levantine Arabic", - Comment = null, - }, - new() - { - Id = "apd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sudanese Arabic", - Comment = null, - }, - new() - { - Id = "ape", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bukiyip", - Comment = null, - }, - new() - { - Id = "apf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pahanan Agta", - Comment = null, - }, - new() - { - Id = "apg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ampanang", - Comment = null, - }, - new() - { - Id = "aph", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Athpariya", - Comment = null, - }, - new() - { - Id = "api", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Apiaká", - Comment = null, - }, - new() - { - Id = "apj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jicarilla Apache", - Comment = null, - }, - new() - { - Id = "apk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kiowa Apache", - Comment = null, - }, - new() - { - Id = "apl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lipan Apache", - Comment = null, - }, - new() - { - Id = "apm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mescalero-Chiricahua Apache", - Comment = null, - }, - new() - { - Id = "apn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Apinayé", - Comment = null, - }, - new() - { - Id = "apo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ambul", - Comment = null, - }, - new() - { - Id = "app", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Apma", - Comment = null, - }, - new() - { - Id = "apq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "A-Pucikwar", - Comment = null, - }, - new() - { - Id = "apr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Arop-Lokep", - Comment = null, - }, - new() - { - Id = "aps", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Arop-Sissano", - Comment = null, - }, - new() - { - Id = "apt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Apatani", - Comment = null, - }, - new() - { - Id = "apu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Apurinã", - Comment = null, - }, - new() - { - Id = "apv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Alapmunte", - Comment = null, - }, - new() - { - Id = "apw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Apache", - Comment = null, - }, - new() - { - Id = "apx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aputai", - Comment = null, - }, - new() - { - Id = "apy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Apalaí", - Comment = null, - }, - new() - { - Id = "apz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Safeyoka", - Comment = null, - }, - new() - { - Id = "aqc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Archi", - Comment = null, - }, - new() - { - Id = "aqd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ampari Dogon", - Comment = null, - }, - new() - { - Id = "aqg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Arigidi", - Comment = null, - }, - new() - { - Id = "aqk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aninka", - Comment = null, - }, - new() - { - Id = "aqm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Atohwaim", - Comment = null, - }, - new() - { - Id = "aqn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Alta", - Comment = null, - }, - new() - { - Id = "aqp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Atakapa", - Comment = null, - }, - new() - { - Id = "aqr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Arhâ", - Comment = null, - }, - new() - { - Id = "aqt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Angaité", - Comment = null, - }, - new() - { - Id = "aqz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Akuntsu", - Comment = null, - }, - new() - { - Id = "ara", - Part2B = "ara", - Part2T = "ara", - Part1 = "ar", - Scope = "M", - LanguageType = "L", - RefName = "Arabic", - Comment = null, - }, - new() - { - Id = "arb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Standard Arabic", - Comment = null, - }, - new() - { - Id = "arc", - Part2B = "arc", - Part2T = "arc", - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Official Aramaic (700-300 BCE)", - Comment = null, - }, - new() - { - Id = "ard", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Arabana", - Comment = null, - }, - new() - { - Id = "are", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Arrarnta", - Comment = null, - }, - new() - { - Id = "arg", - Part2B = "arg", - Part2T = "arg", - Part1 = "an", - Scope = "I", - LanguageType = "L", - RefName = "Aragonese", - Comment = null, - }, - new() - { - Id = "arh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Arhuaco", - Comment = null, - }, - new() - { - Id = "ari", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Arikara", - Comment = null, - }, - new() - { - Id = "arj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Arapaso", - Comment = null, - }, - new() - { - Id = "ark", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Arikapú", - Comment = null, - }, - new() - { - Id = "arl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Arabela", - Comment = null, - }, - new() - { - Id = "arn", - Part2B = "arn", - Part2T = "arn", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mapudungun", - Comment = null, - }, - new() - { - Id = "aro", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Araona", - Comment = null, - }, - new() - { - Id = "arp", - Part2B = "arp", - Part2T = "arp", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Arapaho", - Comment = null, - }, - new() - { - Id = "arq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Algerian Arabic", - Comment = null, - }, - new() - { - Id = "arr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Karo (Brazil)", - Comment = null, - }, - new() - { - Id = "ars", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Najdi Arabic", - Comment = null, - }, - new() - { - Id = "aru", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Aruá (Amazonas State)", - Comment = null, - }, - new() - { - Id = "arv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Arbore", - Comment = null, - }, - new() - { - Id = "arw", - Part2B = "arw", - Part2T = "arw", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Arawak", - Comment = null, - }, - new() - { - Id = "arx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aruá (Rodonia State)", - Comment = null, - }, - new() - { - Id = "ary", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Moroccan Arabic", - Comment = null, - }, - new() - { - Id = "arz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Egyptian Arabic", - Comment = null, - }, - new() - { - Id = "asa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Asu (Tanzania)", - Comment = null, - }, - new() - { - Id = "asb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Assiniboine", - Comment = null, - }, - new() - { - Id = "asc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Casuarina Coast Asmat", - Comment = null, - }, - new() - { - Id = "ase", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "American Sign Language", - Comment = null, - }, - new() - { - Id = "asf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Auslan", - Comment = null, - }, - new() - { - Id = "asg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cishingini", - Comment = null, - }, - new() - { - Id = "ash", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Abishira", - Comment = null, - }, - new() - { - Id = "asi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Buruwai", - Comment = null, - }, - new() - { - Id = "asj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sari", - Comment = null, - }, - new() - { - Id = "ask", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ashkun", - Comment = null, - }, - new() - { - Id = "asl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Asilulu", - Comment = null, - }, - new() - { - Id = "asm", - Part2B = "asm", - Part2T = "asm", - Part1 = "as", - Scope = "I", - LanguageType = "L", - RefName = "Assamese", - Comment = null, - }, - new() - { - Id = "asn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Xingú Asuriní", - Comment = null, - }, - new() - { - Id = "aso", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dano", - Comment = null, - }, - new() - { - Id = "asp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Algerian Sign Language", - Comment = null, - }, - new() - { - Id = "asq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Austrian Sign Language", - Comment = null, - }, - new() - { - Id = "asr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Asuri", - Comment = null, - }, - new() - { - Id = "ass", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ipulo", - Comment = null, - }, - new() - { - Id = "ast", - Part2B = "ast", - Part2T = "ast", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Asturian", - Comment = null, - }, - new() - { - Id = "asu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tocantins Asurini", - Comment = null, - }, - new() - { - Id = "asv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Asoa", - Comment = null, - }, - new() - { - Id = "asw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Australian Aborigines Sign Language", - Comment = null, - }, - new() - { - Id = "asx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Muratayak", - Comment = null, - }, - new() - { - Id = "asy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yaosakor Asmat", - Comment = null, - }, - new() - { - Id = "asz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "As", - Comment = null, - }, - new() - { - Id = "ata", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pele-Ata", - Comment = null, - }, - new() - { - Id = "atb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zaiwa", - Comment = null, - }, - new() - { - Id = "atc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Atsahuaca", - Comment = null, - }, - new() - { - Id = "atd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ata Manobo", - Comment = null, - }, - new() - { - Id = "ate", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Atemble", - Comment = null, - }, - new() - { - Id = "atg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ivbie North-Okpela-Arhe", - Comment = null, - }, - new() - { - Id = "ati", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Attié", - Comment = null, - }, - new() - { - Id = "atj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Atikamekw", - Comment = null, - }, - new() - { - Id = "atk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ati", - Comment = null, - }, - new() - { - Id = "atl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mt. Iraya Agta", - Comment = null, - }, - new() - { - Id = "atm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ata", - Comment = null, - }, - new() - { - Id = "atn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ashtiani", - Comment = null, - }, - new() - { - Id = "ato", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Atong (Cameroon)", - Comment = null, - }, - new() - { - Id = "atp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pudtol Atta", - Comment = null, - }, - new() - { - Id = "atq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aralle-Tabulahan", - Comment = null, - }, - new() - { - Id = "atr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Waimiri-Atroari", - Comment = null, - }, - new() - { - Id = "ats", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gros Ventre", - Comment = null, - }, - new() - { - Id = "att", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pamplona Atta", - Comment = null, - }, - new() - { - Id = "atu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Reel", - Comment = null, - }, - new() - { - Id = "atv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Altai", - Comment = null, - }, - new() - { - Id = "atw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Atsugewi", - Comment = null, - }, - new() - { - Id = "atx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Arutani", - Comment = null, - }, - new() - { - Id = "aty", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aneityum", - Comment = null, - }, - new() - { - Id = "atz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Arta", - Comment = null, - }, - new() - { - Id = "aua", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Asumboa", - Comment = null, - }, - new() - { - Id = "aub", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Alugu", - Comment = null, - }, - new() - { - Id = "auc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Waorani", - Comment = null, - }, - new() - { - Id = "aud", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Anuta", - Comment = null, - }, - new() - { - Id = "aug", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aguna", - Comment = null, - }, - new() - { - Id = "auh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aushi", - Comment = null, - }, - new() - { - Id = "aui", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Anuki", - Comment = null, - }, - new() - { - Id = "auj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Awjilah", - Comment = null, - }, - new() - { - Id = "auk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Heyo", - Comment = null, - }, - new() - { - Id = "aul", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aulua", - Comment = null, - }, - new() - { - Id = "aum", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Asu (Nigeria)", - Comment = null, - }, - new() - { - Id = "aun", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Molmo One", - Comment = null, - }, - new() - { - Id = "auo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Auyokawa", - Comment = null, - }, - new() - { - Id = "aup", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Makayam", - Comment = null, - }, - new() - { - Id = "auq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Anus", - Comment = null, - }, - new() - { - Id = "aur", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aruek", - Comment = null, - }, - new() - { - Id = "aut", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Austral", - Comment = null, - }, - new() - { - Id = "auu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Auye", - Comment = null, - }, - new() - { - Id = "auw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Awyi", - Comment = null, - }, - new() - { - Id = "aux", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Aurá", - Comment = null, - }, - new() - { - Id = "auy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Awiyaana", - Comment = null, - }, - new() - { - Id = "auz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Uzbeki Arabic", - Comment = null, - }, - new() - { - Id = "ava", - Part2B = "ava", - Part2T = "ava", - Part1 = "av", - Scope = "I", - LanguageType = "L", - RefName = "Avaric", - Comment = null, - }, - new() - { - Id = "avb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Avau", - Comment = null, - }, - new() - { - Id = "avd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Alviri-Vidari", - Comment = null, - }, - new() - { - Id = "ave", - Part2B = "ave", - Part2T = "ave", - Part1 = "ae", - Scope = "I", - LanguageType = "H", - RefName = "Avestan", - Comment = null, - }, - new() - { - Id = "avi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Avikam", - Comment = null, - }, - new() - { - Id = "avk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "C", - RefName = "Kotava", - Comment = null, - }, - new() - { - Id = "avl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Egyptian Bedawi Arabic", - Comment = null, - }, - new() - { - Id = "avm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Angkamuthi", - Comment = null, - }, - new() - { - Id = "avn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Avatime", - Comment = null, - }, - new() - { - Id = "avo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Agavotaguerra", - Comment = null, - }, - new() - { - Id = "avs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Aushiri", - Comment = null, - }, - new() - { - Id = "avt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Au", - Comment = null, - }, - new() - { - Id = "avu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Avokaya", - Comment = null, - }, - new() - { - Id = "avv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Avá-Canoeiro", - Comment = null, - }, - new() - { - Id = "awa", - Part2B = "awa", - Part2T = "awa", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Awadhi", - Comment = null, - }, - new() - { - Id = "awb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Awa (Papua New Guinea)", - Comment = null, - }, - new() - { - Id = "awc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cicipu", - Comment = null, - }, - new() - { - Id = "awe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Awetí", - Comment = null, - }, - new() - { - Id = "awg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Anguthimri", - Comment = null, - }, - new() - { - Id = "awh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Awbono", - Comment = null, - }, - new() - { - Id = "awi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aekyom", - Comment = null, - }, - new() - { - Id = "awk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Awabakal", - Comment = null, - }, - new() - { - Id = "awm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Arawum", - Comment = null, - }, - new() - { - Id = "awn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Awngi", - Comment = null, - }, - new() - { - Id = "awo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Awak", - Comment = null, - }, - new() - { - Id = "awr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Awera", - Comment = null, - }, - new() - { - Id = "aws", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "South Awyu", - Comment = null, - }, - new() - { - Id = "awt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Araweté", - Comment = null, - }, - new() - { - Id = "awu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Central Awyu", - Comment = null, - }, - new() - { - Id = "awv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jair Awyu", - Comment = null, - }, - new() - { - Id = "aww", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Awun", - Comment = null, - }, - new() - { - Id = "awx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Awara", - Comment = null, - }, - new() - { - Id = "awy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Edera Awyu", - Comment = null, - }, - new() - { - Id = "axb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Abipon", - Comment = null, - }, - new() - { - Id = "axe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Ayerrerenge", - Comment = null, - }, - new() - { - Id = "axg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Mato Grosso Arára", - Comment = null, - }, - new() - { - Id = "axk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yaka (Central African Republic)", - Comment = null, - }, - new() - { - Id = "axl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Lower Southern Aranda", - Comment = null, - }, - new() - { - Id = "axm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Middle Armenian", - Comment = null, - }, - new() - { - Id = "axx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Xârâgurè", - Comment = null, - }, - new() - { - Id = "aya", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Awar", - Comment = null, - }, - new() - { - Id = "ayb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ayizo Gbe", - Comment = null, - }, - new() - { - Id = "ayc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Aymara", - Comment = null, - }, - new() - { - Id = "ayd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Ayabadhu", - Comment = null, - }, - new() - { - Id = "aye", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ayere", - Comment = null, - }, - new() - { - Id = "ayg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ginyanga", - Comment = null, - }, - new() - { - Id = "ayh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hadrami Arabic", - Comment = null, - }, - new() - { - Id = "ayi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Leyigha", - Comment = null, - }, - new() - { - Id = "ayk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Akuku", - Comment = null, - }, - new() - { - Id = "ayl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Libyan Arabic", - Comment = null, - }, - new() - { - Id = "aym", - Part2B = "aym", - Part2T = "aym", - Part1 = "ay", - Scope = "M", - LanguageType = "L", - RefName = "Aymara", - Comment = null, - }, - new() - { - Id = "ayn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sanaani Arabic", - Comment = null, - }, - new() - { - Id = "ayo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ayoreo", - Comment = null, - }, - new() - { - Id = "ayp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "North Mesopotamian Arabic", - Comment = null, - }, - new() - { - Id = "ayq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ayi (Papua New Guinea)", - Comment = null, - }, - new() - { - Id = "ayr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Central Aymara", - Comment = null, - }, - new() - { - Id = "ays", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sorsogon Ayta", - Comment = null, - }, - new() - { - Id = "ayt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Magbukun Ayta", - Comment = null, - }, - new() - { - Id = "ayu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ayu", - Comment = null, - }, - new() - { - Id = "ayz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mai Brat", - Comment = null, - }, - new() - { - Id = "aza", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Azha", - Comment = null, - }, - new() - { - Id = "azb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "South Azerbaijani", - Comment = null, - }, - new() - { - Id = "azd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Durango Nahuatl", - Comment = null, - }, - new() - { - Id = "aze", - Part2B = "aze", - Part2T = "aze", - Part1 = "az", - Scope = "M", - LanguageType = "L", - RefName = "Azerbaijani", - Comment = null, - }, - new() - { - Id = "azg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "San Pedro Amuzgos Amuzgo", - Comment = null, - }, - new() - { - Id = "azj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "North Azerbaijani", - Comment = null, - }, - new() - { - Id = "azm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ipalapa Amuzgo", - Comment = null, - }, - new() - { - Id = "azn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Durango Nahuatl", - Comment = null, - }, - new() - { - Id = "azo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Awing", - Comment = null, - }, - new() - { - Id = "azt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Faire Atta", - Comment = null, - }, - new() - { - Id = "azz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Highland Puebla Nahuatl", - Comment = null, - }, - new() - { - Id = "baa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Babatana", - Comment = null, - }, - new() - { - Id = "bab", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bainouk-Gunyuño", - Comment = null, - }, - new() - { - Id = "bac", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Badui", - Comment = null, - }, - new() - { - Id = "bae", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Baré", - Comment = null, - }, - new() - { - Id = "baf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nubaca", - Comment = null, - }, - new() - { - Id = "bag", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tuki", - Comment = null, - }, - new() - { - Id = "bah", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bahamas Creole English", - Comment = null, - }, - new() - { - Id = "baj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Barakai", - Comment = null, - }, - new() - { - Id = "bak", - Part2B = "bak", - Part2T = "bak", - Part1 = "ba", - Scope = "I", - LanguageType = "L", - RefName = "Bashkir", - Comment = null, - }, - new() - { - Id = "bal", - Part2B = "bal", - Part2T = "bal", - Part1 = null, - Scope = "M", - LanguageType = "L", - RefName = "Baluchi", - Comment = null, - }, - new() - { - Id = "bam", - Part2B = "bam", - Part2T = "bam", - Part1 = "bm", - Scope = "I", - LanguageType = "L", - RefName = "Bambara", - Comment = null, - }, - new() - { - Id = "ban", - Part2B = "ban", - Part2T = "ban", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Balinese", - Comment = null, - }, - new() - { - Id = "bao", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Waimaha", - Comment = null, - }, - new() - { - Id = "bap", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bantawa", - Comment = null, - }, - new() - { - Id = "bar", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bavarian", - Comment = null, - }, - new() - { - Id = "bas", - Part2B = "bas", - Part2T = "bas", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Basa (Cameroon)", - Comment = null, - }, - new() - { - Id = "bau", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bada (Nigeria)", - Comment = null, - }, - new() - { - Id = "bav", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Vengo", - Comment = null, - }, - new() - { - Id = "baw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bambili-Bambui", - Comment = null, - }, - new() - { - Id = "bax", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bamun", - Comment = null, - }, - new() - { - Id = "bay", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Batuley", - Comment = null, - }, - new() - { - Id = "bba", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Baatonum", - Comment = null, - }, - new() - { - Id = "bbb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Barai", - Comment = null, - }, - new() - { - Id = "bbc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Batak Toba", - Comment = null, - }, - new() - { - Id = "bbd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bau", - Comment = null, - }, - new() - { - Id = "bbe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bangba", - Comment = null, - }, - new() - { - Id = "bbf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Baibai", - Comment = null, - }, - new() - { - Id = "bbg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Barama", - Comment = null, - }, - new() - { - Id = "bbh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bugan", - Comment = null, - }, - new() - { - Id = "bbi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Barombi", - Comment = null, - }, - new() - { - Id = "bbj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ghomálá'", - Comment = null, - }, - new() - { - Id = "bbk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Babanki", - Comment = null, - }, - new() - { - Id = "bbl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bats", - Comment = null, - }, - new() - { - Id = "bbm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Babango", - Comment = null, - }, - new() - { - Id = "bbn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Uneapa", - Comment = null, - }, - new() - { - Id = "bbo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Bobo Madaré", - Comment = null, - }, - new() - { - Id = "bbp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "West Central Banda", - Comment = null, - }, - new() - { - Id = "bbq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bamali", - Comment = null, - }, - new() - { - Id = "bbr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Girawa", - Comment = null, - }, - new() - { - Id = "bbs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bakpinka", - Comment = null, - }, - new() - { - Id = "bbt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mburku", - Comment = null, - }, - new() - { - Id = "bbu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kulung (Nigeria)", - Comment = null, - }, - new() - { - Id = "bbv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Karnai", - Comment = null, - }, - new() - { - Id = "bbw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Baba", - Comment = null, - }, - new() - { - Id = "bbx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bubia", - Comment = null, - }, - new() - { - Id = "bby", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Befang", - Comment = null, - }, - new() - { - Id = "bca", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Central Bai", - Comment = null, - }, - new() - { - Id = "bcb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bainouk-Samik", - Comment = null, - }, - new() - { - Id = "bcc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Balochi", - Comment = null, - }, - new() - { - Id = "bcd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "North Babar", - Comment = null, - }, - new() - { - Id = "bce", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bamenyam", - Comment = null, - }, - new() - { - Id = "bcf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bamu", - Comment = null, - }, - new() - { - Id = "bcg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Baga Pokur", - Comment = null, - }, - new() - { - Id = "bch", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bariai", - Comment = null, - }, - new() - { - Id = "bci", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Baoulé", - Comment = null, - }, - new() - { - Id = "bcj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bardi", - Comment = null, - }, - new() - { - Id = "bck", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bunuba", - Comment = null, - }, - new() - { - Id = "bcl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Central Bikol", - Comment = null, - }, - new() - { - Id = "bcm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bannoni", - Comment = null, - }, - new() - { - Id = "bcn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bali (Nigeria)", - Comment = null, - }, - new() - { - Id = "bco", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kaluli", - Comment = null, - }, - new() - { - Id = "bcp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bali (Democratic Republic of Congo)", - Comment = null, - }, - new() - { - Id = "bcq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bench", - Comment = null, - }, - new() - { - Id = "bcr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Babine", - Comment = null, - }, - new() - { - Id = "bcs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kohumono", - Comment = null, - }, - new() - { - Id = "bct", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bendi", - Comment = null, - }, - new() - { - Id = "bcu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Awad Bing", - Comment = null, - }, - new() - { - Id = "bcv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Shoo-Minda-Nye", - Comment = null, - }, - new() - { - Id = "bcw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bana", - Comment = null, - }, - new() - { - Id = "bcy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bacama", - Comment = null, - }, - new() - { - Id = "bcz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bainouk-Gunyaamolo", - Comment = null, - }, - new() - { - Id = "bda", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bayot", - Comment = null, - }, - new() - { - Id = "bdb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Basap", - Comment = null, - }, - new() - { - Id = "bdc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Emberá-Baudó", - Comment = null, - }, - new() - { - Id = "bdd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bunama", - Comment = null, - }, - new() - { - Id = "bde", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bade", - Comment = null, - }, - new() - { - Id = "bdf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Biage", - Comment = null, - }, - new() - { - Id = "bdg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bonggi", - Comment = null, - }, - new() - { - Id = "bdh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Baka (South Sudan)", - Comment = null, - }, - new() - { - Id = "bdi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Burun", - Comment = null, - }, - new() - { - Id = "bdj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bai (South Sudan)", - Comment = null, - }, - new() - { - Id = "bdk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Budukh", - Comment = null, - }, - new() - { - Id = "bdl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Indonesian Bajau", - Comment = null, - }, - new() - { - Id = "bdm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Buduma", - Comment = null, - }, - new() - { - Id = "bdn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Baldemu", - Comment = null, - }, - new() - { - Id = "bdo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Morom", - Comment = null, - }, - new() - { - Id = "bdp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bende", - Comment = null, - }, - new() - { - Id = "bdq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bahnar", - Comment = null, - }, - new() - { - Id = "bdr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "West Coast Bajau", - Comment = null, - }, - new() - { - Id = "bds", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Burunge", - Comment = null, - }, - new() - { - Id = "bdt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bokoto", - Comment = null, - }, - new() - { - Id = "bdu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Oroko", - Comment = null, - }, - new() - { - Id = "bdv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bodo Parja", - Comment = null, - }, - new() - { - Id = "bdw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Baham", - Comment = null, - }, - new() - { - Id = "bdx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Budong-Budong", - Comment = null, - }, - new() - { - Id = "bdy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bandjalang", - Comment = null, - }, - new() - { - Id = "bdz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Badeshi", - Comment = null, - }, - new() - { - Id = "bea", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Beaver", - Comment = null, - }, - new() - { - Id = "beb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bebele", - Comment = null, - }, - new() - { - Id = "bec", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Iceve-Maci", - Comment = null, - }, - new() - { - Id = "bed", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bedoanas", - Comment = null, - }, - new() - { - Id = "bee", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Byangsi", - Comment = null, - }, - new() - { - Id = "bef", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Benabena", - Comment = null, - }, - new() - { - Id = "beg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Belait", - Comment = null, - }, - new() - { - Id = "beh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Biali", - Comment = null, - }, - new() - { - Id = "bei", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bekati'", - Comment = null, - }, - new() - { - Id = "bej", - Part2B = "bej", - Part2T = "bej", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Beja", - Comment = null, - }, - new() - { - Id = "bek", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bebeli", - Comment = null, - }, - new() - { - Id = "bel", - Part2B = "bel", - Part2T = "bel", - Part1 = "be", - Scope = "I", - LanguageType = "L", - RefName = "Belarusian", - Comment = null, - }, - new() - { - Id = "bem", - Part2B = "bem", - Part2T = "bem", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bemba (Zambia)", - Comment = null, - }, - new() - { - Id = "ben", - Part2B = "ben", - Part2T = "ben", - Part1 = "bn", - Scope = "I", - LanguageType = "L", - RefName = "Bengali", - Comment = null, - }, - new() - { - Id = "beo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Beami", - Comment = null, - }, - new() - { - Id = "bep", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Besoa", - Comment = null, - }, - new() - { - Id = "beq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Beembe", - Comment = null, - }, - new() - { - Id = "bes", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Besme", - Comment = null, - }, - new() - { - Id = "bet", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Guiberoua Béte", - Comment = null, - }, - new() - { - Id = "beu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Blagar", - Comment = null, - }, - new() - { - Id = "bev", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Daloa Bété", - Comment = null, - }, - new() - { - Id = "bew", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Betawi", - Comment = null, - }, - new() - { - Id = "bex", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jur Modo", - Comment = null, - }, - new() - { - Id = "bey", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Beli (Papua New Guinea)", - Comment = null, - }, - new() - { - Id = "bez", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bena (Tanzania)", - Comment = null, - }, - new() - { - Id = "bfa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bari", - Comment = null, - }, - new() - { - Id = "bfb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pauri Bareli", - Comment = null, - }, - new() - { - Id = "bfc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Panyi Bai", - Comment = null, - }, - new() - { - Id = "bfd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bafut", - Comment = null, - }, - new() - { - Id = "bfe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Betaf", - Comment = null, - }, - new() - { - Id = "bff", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bofi", - Comment = null, - }, - new() - { - Id = "bfg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Busang Kayan", - Comment = null, - }, - new() - { - Id = "bfh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Blafe", - Comment = null, - }, - new() - { - Id = "bfi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "British Sign Language", - Comment = null, - }, - new() - { - Id = "bfj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bafanji", - Comment = null, - }, - new() - { - Id = "bfk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ban Khor Sign Language", - Comment = null, - }, - new() - { - Id = "bfl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Banda-Ndélé", - Comment = null, - }, - new() - { - Id = "bfm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mmen", - Comment = null, - }, - new() - { - Id = "bfn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bunak", - Comment = null, - }, - new() - { - Id = "bfo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Malba Birifor", - Comment = null, - }, - new() - { - Id = "bfp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Beba", - Comment = null, - }, - new() - { - Id = "bfq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Badaga", - Comment = null, - }, - new() - { - Id = "bfr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bazigar", - Comment = null, - }, - new() - { - Id = "bfs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Bai", - Comment = null, - }, - new() - { - Id = "bft", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Balti", - Comment = null, - }, - new() - { - Id = "bfu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gahri", - Comment = null, - }, - new() - { - Id = "bfw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bondo", - Comment = null, - }, - new() - { - Id = "bfx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bantayanon", - Comment = null, - }, - new() - { - Id = "bfy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bagheli", - Comment = null, - }, - new() - { - Id = "bfz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mahasu Pahari", - Comment = null, - }, - new() - { - Id = "bga", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gwamhi-Wuri", - Comment = null, - }, - new() - { - Id = "bgb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bobongko", - Comment = null, - }, - new() - { - Id = "bgc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Haryanvi", - Comment = null, - }, - new() - { - Id = "bgd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rathwi Bareli", - Comment = null, - }, - new() - { - Id = "bge", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bauria", - Comment = null, - }, - new() - { - Id = "bgf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bangandu", - Comment = null, - }, - new() - { - Id = "bgg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bugun", - Comment = null, - }, - new() - { - Id = "bgi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Giangan", - Comment = null, - }, - new() - { - Id = "bgj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bangolan", - Comment = null, - }, - new() - { - Id = "bgk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bit", - Comment = null, - }, - new() - { - Id = "bgl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bo (Laos)", - Comment = null, - }, - new() - { - Id = "bgn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Balochi", - Comment = null, - }, - new() - { - Id = "bgo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Baga Koga", - Comment = null, - }, - new() - { - Id = "bgp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Balochi", - Comment = null, - }, - new() - { - Id = "bgq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bagri", - Comment = null, - }, - new() - { - Id = "bgr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bawm Chin", - Comment = null, - }, - new() - { - Id = "bgs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tagabawa", - Comment = null, - }, - new() - { - Id = "bgt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bughotu", - Comment = null, - }, - new() - { - Id = "bgu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mbongno", - Comment = null, - }, - new() - { - Id = "bgv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Warkay-Bipim", - Comment = null, - }, - new() - { - Id = "bgw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bhatri", - Comment = null, - }, - new() - { - Id = "bgx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Balkan Gagauz Turkish", - Comment = null, - }, - new() - { - Id = "bgy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Benggoi", - Comment = null, - }, - new() - { - Id = "bgz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Banggai", - Comment = null, - }, - new() - { - Id = "bha", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bharia", - Comment = null, - }, - new() - { - Id = "bhb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bhili", - Comment = null, - }, - new() - { - Id = "bhc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Biga", - Comment = null, - }, - new() - { - Id = "bhd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bhadrawahi", - Comment = null, - }, - new() - { - Id = "bhe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bhaya", - Comment = null, - }, - new() - { - Id = "bhf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Odiai", - Comment = null, - }, - new() - { - Id = "bhg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Binandere", - Comment = null, - }, - new() - { - Id = "bhh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bukharic", - Comment = null, - }, - new() - { - Id = "bhi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bhilali", - Comment = null, - }, - new() - { - Id = "bhj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bahing", - Comment = null, - }, - new() - { - Id = "bhl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bimin", - Comment = null, - }, - new() - { - Id = "bhm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bathari", - Comment = null, - }, - new() - { - Id = "bhn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bohtan Neo-Aramaic", - Comment = null, - }, - new() - { - Id = "bho", - Part2B = "bho", - Part2T = "bho", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bhojpuri", - Comment = null, - }, - new() - { - Id = "bhp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bima", - Comment = null, - }, - new() - { - Id = "bhq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tukang Besi South", - Comment = null, - }, - new() - { - Id = "bhr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bara Malagasy", - Comment = null, - }, - new() - { - Id = "bhs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Buwal", - Comment = null, - }, - new() - { - Id = "bht", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bhattiyali", - Comment = null, - }, - new() - { - Id = "bhu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bhunjia", - Comment = null, - }, - new() - { - Id = "bhv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bahau", - Comment = null, - }, - new() - { - Id = "bhw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Biak", - Comment = null, - }, - new() - { - Id = "bhx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bhalay", - Comment = null, - }, - new() - { - Id = "bhy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bhele", - Comment = null, - }, - new() - { - Id = "bhz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bada (Indonesia)", - Comment = null, - }, - new() - { - Id = "bia", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Badimaya", - Comment = null, - }, - new() - { - Id = "bib", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bissa", - Comment = null, - }, - new() - { - Id = "bid", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bidiyo", - Comment = null, - }, - new() - { - Id = "bie", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bepour", - Comment = null, - }, - new() - { - Id = "bif", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Biafada", - Comment = null, - }, - new() - { - Id = "big", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Biangai", - Comment = null, - }, - new() - { - Id = "bik", - Part2B = "bik", - Part2T = "bik", - Part1 = null, - Scope = "M", - LanguageType = "L", - RefName = "Bikol", - Comment = null, - }, - new() - { - Id = "bil", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bile", - Comment = null, - }, - new() - { - Id = "bim", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bimoba", - Comment = null, - }, - new() - { - Id = "bin", - Part2B = "bin", - Part2T = "bin", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bini", - Comment = null, - }, - new() - { - Id = "bio", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nai", - Comment = null, - }, - new() - { - Id = "bip", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bila", - Comment = null, - }, - new() - { - Id = "biq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bipi", - Comment = null, - }, - new() - { - Id = "bir", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bisorio", - Comment = null, - }, - new() - { - Id = "bis", - Part2B = "bis", - Part2T = "bis", - Part1 = "bi", - Scope = "I", - LanguageType = "L", - RefName = "Bislama", - Comment = null, - }, - new() - { - Id = "bit", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Berinomo", - Comment = null, - }, - new() - { - Id = "biu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Biete", - Comment = null, - }, - new() - { - Id = "biv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Birifor", - Comment = null, - }, - new() - { - Id = "biw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kol (Cameroon)", - Comment = null, - }, - new() - { - Id = "bix", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bijori", - Comment = null, - }, - new() - { - Id = "biy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Birhor", - Comment = null, - }, - new() - { - Id = "biz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Baloi", - Comment = null, - }, - new() - { - Id = "bja", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Budza", - Comment = null, - }, - new() - { - Id = "bjb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Banggarla", - Comment = null, - }, - new() - { - Id = "bjc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bariji", - Comment = null, - }, - new() - { - Id = "bje", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Biao-Jiao Mien", - Comment = null, - }, - new() - { - Id = "bjf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Barzani Jewish Neo-Aramaic", - Comment = null, - }, - new() - { - Id = "bjg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bidyogo", - Comment = null, - }, - new() - { - Id = "bjh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bahinemo", - Comment = null, - }, - new() - { - Id = "bji", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Burji", - Comment = null, - }, - new() - { - Id = "bjj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kanauji", - Comment = null, - }, - new() - { - Id = "bjk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Barok", - Comment = null, - }, - new() - { - Id = "bjl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bulu (Papua New Guinea)", - Comment = null, - }, - new() - { - Id = "bjm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bajelani", - Comment = null, - }, - new() - { - Id = "bjn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Banjar", - Comment = null, - }, - new() - { - Id = "bjo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mid-Southern Banda", - Comment = null, - }, - new() - { - Id = "bjp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Fanamaket", - Comment = null, - }, - new() - { - Id = "bjr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Binumarien", - Comment = null, - }, - new() - { - Id = "bjs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bajan", - Comment = null, - }, - new() - { - Id = "bjt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Balanta-Ganja", - Comment = null, - }, - new() - { - Id = "bju", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Busuu", - Comment = null, - }, - new() - { - Id = "bjv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bedjond", - Comment = null, - }, - new() - { - Id = "bjw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bakwé", - Comment = null, - }, - new() - { - Id = "bjx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Banao Itneg", - Comment = null, - }, - new() - { - Id = "bjy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Bayali", - Comment = null, - }, - new() - { - Id = "bjz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Baruga", - Comment = null, - }, - new() - { - Id = "bka", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kyak", - Comment = null, - }, - new() - { - Id = "bkc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Baka (Cameroon)", - Comment = null, - }, - new() - { - Id = "bkd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Binukid", - Comment = null, - }, - new() - { - Id = "bkf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Beeke", - Comment = null, - }, - new() - { - Id = "bkg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Buraka", - Comment = null, - }, - new() - { - Id = "bkh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bakoko", - Comment = null, - }, - new() - { - Id = "bki", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Baki", - Comment = null, - }, - new() - { - Id = "bkj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pande", - Comment = null, - }, - new() - { - Id = "bkk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Brokskat", - Comment = null, - }, - new() - { - Id = "bkl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Berik", - Comment = null, - }, - new() - { - Id = "bkm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kom (Cameroon)", - Comment = null, - }, - new() - { - Id = "bkn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bukitan", - Comment = null, - }, - new() - { - Id = "bko", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kwa'", - Comment = null, - }, - new() - { - Id = "bkp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Boko (Democratic Republic of Congo)", - Comment = null, - }, - new() - { - Id = "bkq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bakairí", - Comment = null, - }, - new() - { - Id = "bkr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bakumpai", - Comment = null, - }, - new() - { - Id = "bks", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Sorsoganon", - Comment = null, - }, - new() - { - Id = "bkt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Boloki", - Comment = null, - }, - new() - { - Id = "bku", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Buhid", - Comment = null, - }, - new() - { - Id = "bkv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bekwarra", - Comment = null, - }, - new() - { - Id = "bkw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bekwel", - Comment = null, - }, - new() - { - Id = "bkx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Baikeno", - Comment = null, - }, - new() - { - Id = "bky", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bokyi", - Comment = null, - }, - new() - { - Id = "bkz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bungku", - Comment = null, - }, - new() - { - Id = "bla", - Part2B = "bla", - Part2T = "bla", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Siksika", - Comment = null, - }, - new() - { - Id = "blb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bilua", - Comment = null, - }, - new() - { - Id = "blc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bella Coola", - Comment = null, - }, - new() - { - Id = "bld", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bolango", - Comment = null, - }, - new() - { - Id = "ble", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Balanta-Kentohe", - Comment = null, - }, - new() - { - Id = "blf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Buol", - Comment = null, - }, - new() - { - Id = "blh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kuwaa", - Comment = null, - }, - new() - { - Id = "bli", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bolia", - Comment = null, - }, - new() - { - Id = "blj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bolongan", - Comment = null, - }, - new() - { - Id = "blk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pa'o Karen", - Comment = null, - }, - new() - { - Id = "bll", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Biloxi", - Comment = null, - }, - new() - { - Id = "blm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Beli (South Sudan)", - Comment = null, - }, - new() - { - Id = "bln", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Catanduanes Bikol", - Comment = null, - }, - new() - { - Id = "blo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Anii", - Comment = null, - }, - new() - { - Id = "blp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Blablanga", - Comment = null, - }, - new() - { - Id = "blq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Baluan-Pam", - Comment = null, - }, - new() - { - Id = "blr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Blang", - Comment = null, - }, - new() - { - Id = "bls", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Balaesang", - Comment = null, - }, - new() - { - Id = "blt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tai Dam", - Comment = null, - }, - new() - { - Id = "blv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kibala", - Comment = null, - }, - new() - { - Id = "blw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Balangao", - Comment = null, - }, - new() - { - Id = "blx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mag-Indi Ayta", - Comment = null, - }, - new() - { - Id = "bly", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Notre", - Comment = null, - }, - new() - { - Id = "blz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Balantak", - Comment = null, - }, - new() - { - Id = "bma", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lame", - Comment = null, - }, - new() - { - Id = "bmb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bembe", - Comment = null, - }, - new() - { - Id = "bmc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Biem", - Comment = null, - }, - new() - { - Id = "bmd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Baga Manduri", - Comment = null, - }, - new() - { - Id = "bme", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Limassa", - Comment = null, - }, - new() - { - Id = "bmf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bom-Kim", - Comment = null, - }, - new() - { - Id = "bmg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bamwe", - Comment = null, - }, - new() - { - Id = "bmh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kein", - Comment = null, - }, - new() - { - Id = "bmi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bagirmi", - Comment = null, - }, - new() - { - Id = "bmj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bote-Majhi", - Comment = null, - }, - new() - { - Id = "bmk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ghayavi", - Comment = null, - }, - new() - { - Id = "bml", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bomboli", - Comment = null, - }, - new() - { - Id = "bmm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Betsimisaraka Malagasy", - Comment = null, - }, - new() - { - Id = "bmn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Bina (Papua New Guinea)", - Comment = null, - }, - new() - { - Id = "bmo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bambalang", - Comment = null, - }, - new() - { - Id = "bmp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bulgebi", - Comment = null, - }, - new() - { - Id = "bmq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bomu", - Comment = null, - }, - new() - { - Id = "bmr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Muinane", - Comment = null, - }, - new() - { - Id = "bms", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bilma Kanuri", - Comment = null, - }, - new() - { - Id = "bmt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Biao Mon", - Comment = null, - }, - new() - { - Id = "bmu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Somba-Siawari", - Comment = null, - }, - new() - { - Id = "bmv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bum", - Comment = null, - }, - new() - { - Id = "bmw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bomwali", - Comment = null, - }, - new() - { - Id = "bmx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Baimak", - Comment = null, - }, - new() - { - Id = "bmz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Baramu", - Comment = null, - }, - new() - { - Id = "bna", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bonerate", - Comment = null, - }, - new() - { - Id = "bnb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bookan", - Comment = null, - }, - new() - { - Id = "bnc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "M", - LanguageType = "L", - RefName = "Bontok", - Comment = null, - }, - new() - { - Id = "bnd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Banda (Indonesia)", - Comment = null, - }, - new() - { - Id = "bne", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bintauna", - Comment = null, - }, - new() - { - Id = "bnf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Masiwang", - Comment = null, - }, - new() - { - Id = "bng", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Benga", - Comment = null, - }, - new() - { - Id = "bni", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bangi", - Comment = null, - }, - new() - { - Id = "bnj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Tawbuid", - Comment = null, - }, - new() - { - Id = "bnk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bierebo", - Comment = null, - }, - new() - { - Id = "bnl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Boon", - Comment = null, - }, - new() - { - Id = "bnm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Batanga", - Comment = null, - }, - new() - { - Id = "bnn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bunun", - Comment = null, - }, - new() - { - Id = "bno", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bantoanon", - Comment = null, - }, - new() - { - Id = "bnp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bola", - Comment = null, - }, - new() - { - Id = "bnq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bantik", - Comment = null, - }, - new() - { - Id = "bnr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Butmas-Tur", - Comment = null, - }, - new() - { - Id = "bns", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bundeli", - Comment = null, - }, - new() - { - Id = "bnu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bentong", - Comment = null, - }, - new() - { - Id = "bnv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bonerif", - Comment = null, - }, - new() - { - Id = "bnw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bisis", - Comment = null, - }, - new() - { - Id = "bnx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bangubangu", - Comment = null, - }, - new() - { - Id = "bny", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bintulu", - Comment = null, - }, - new() - { - Id = "bnz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Beezen", - Comment = null, - }, - new() - { - Id = "boa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bora", - Comment = null, - }, - new() - { - Id = "bob", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aweer", - Comment = null, - }, - new() - { - Id = "bod", - Part2B = "tib", - Part2T = "bod", - Part1 = "bo", - Scope = "I", - LanguageType = "L", - RefName = "Tibetan", - Comment = null, - }, - new() - { - Id = "boe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mundabli-Mufu", - Comment = null, - }, - new() - { - Id = "bof", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bolon", - Comment = null, - }, - new() - { - Id = "bog", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bamako Sign Language", - Comment = null, - }, - new() - { - Id = "boh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Boma", - Comment = null, - }, - new() - { - Id = "boi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Barbareño", - Comment = null, - }, - new() - { - Id = "boj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Anjam", - Comment = null, - }, - new() - { - Id = "bok", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bonjo", - Comment = null, - }, - new() - { - Id = "bol", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bole", - Comment = null, - }, - new() - { - Id = "bom", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Berom", - Comment = null, - }, - new() - { - Id = "bon", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bine", - Comment = null, - }, - new() - { - Id = "boo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tiemacèwè Bozo", - Comment = null, - }, - new() - { - Id = "bop", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bonkiman", - Comment = null, - }, - new() - { - Id = "boq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bogaya", - Comment = null, - }, - new() - { - Id = "bor", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Borôro", - Comment = null, - }, - new() - { - Id = "bos", - Part2B = "bos", - Part2T = "bos", - Part1 = "bs", - Scope = "I", - LanguageType = "L", - RefName = "Bosnian", - Comment = null, - }, - new() - { - Id = "bot", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bongo", - Comment = null, - }, - new() - { - Id = "bou", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bondei", - Comment = null, - }, - new() - { - Id = "bov", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tuwuli", - Comment = null, - }, - new() - { - Id = "bow", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Rema", - Comment = null, - }, - new() - { - Id = "box", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Buamu", - Comment = null, - }, - new() - { - Id = "boy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bodo (Central African Republic)", - Comment = null, - }, - new() - { - Id = "boz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tiéyaxo Bozo", - Comment = null, - }, - new() - { - Id = "bpa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Daakaka", - Comment = null, - }, - new() - { - Id = "bpc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mbuk", - Comment = null, - }, - new() - { - Id = "bpd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Banda-Banda", - Comment = null, - }, - new() - { - Id = "bpe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bauni", - Comment = null, - }, - new() - { - Id = "bpg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bonggo", - Comment = null, - }, - new() - { - Id = "bph", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Botlikh", - Comment = null, - }, - new() - { - Id = "bpi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bagupi", - Comment = null, - }, - new() - { - Id = "bpj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Binji", - Comment = null, - }, - new() - { - Id = "bpk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Orowe", - Comment = null, - }, - new() - { - Id = "bpl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Broome Pearling Lugger Pidgin", - Comment = null, - }, - new() - { - Id = "bpm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Biyom", - Comment = null, - }, - new() - { - Id = "bpn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dzao Min", - Comment = null, - }, - new() - { - Id = "bpo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Anasi", - Comment = null, - }, - new() - { - Id = "bpp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kaure", - Comment = null, - }, - new() - { - Id = "bpq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Banda Malay", - Comment = null, - }, - new() - { - Id = "bpr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Koronadal Blaan", - Comment = null, - }, - new() - { - Id = "bps", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sarangani Blaan", - Comment = null, - }, - new() - { - Id = "bpt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Barrow Point", - Comment = null, - }, - new() - { - Id = "bpu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bongu", - Comment = null, - }, - new() - { - Id = "bpv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bian Marind", - Comment = null, - }, - new() - { - Id = "bpw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bo (Papua New Guinea)", - Comment = null, - }, - new() - { - Id = "bpx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Palya Bareli", - Comment = null, - }, - new() - { - Id = "bpy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bishnupriya", - Comment = null, - }, - new() - { - Id = "bpz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bilba", - Comment = null, - }, - new() - { - Id = "bqa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tchumbuli", - Comment = null, - }, - new() - { - Id = "bqb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bagusa", - Comment = null, - }, - new() - { - Id = "bqc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Boko (Benin)", - Comment = null, - }, - new() - { - Id = "bqd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bung", - Comment = null, - }, - new() - { - Id = "bqf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Baga Kaloum", - Comment = null, - }, - new() - { - Id = "bqg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bago-Kusuntu", - Comment = null, - }, - new() - { - Id = "bqh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Baima", - Comment = null, - }, - new() - { - Id = "bqi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bakhtiari", - Comment = null, - }, - new() - { - Id = "bqj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bandial", - Comment = null, - }, - new() - { - Id = "bqk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Banda-Mbrès", - Comment = null, - }, - new() - { - Id = "bql", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Karian", - Comment = null, - }, - new() - { - Id = "bqm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wumboko", - Comment = null, - }, - new() - { - Id = "bqn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bulgarian Sign Language", - Comment = null, - }, - new() - { - Id = "bqo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Balo", - Comment = null, - }, - new() - { - Id = "bqp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Busa", - Comment = null, - }, - new() - { - Id = "bqq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Biritai", - Comment = null, - }, - new() - { - Id = "bqr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Burusu", - Comment = null, - }, - new() - { - Id = "bqs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bosngun", - Comment = null, - }, - new() - { - Id = "bqt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bamukumbit", - Comment = null, - }, - new() - { - Id = "bqu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Boguru", - Comment = null, - }, - new() - { - Id = "bqv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Koro Wachi", - Comment = null, - }, - new() - { - Id = "bqw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Buru (Nigeria)", - Comment = null, - }, - new() - { - Id = "bqx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Baangi", - Comment = null, - }, - new() - { - Id = "bqy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bengkala Sign Language", - Comment = null, - }, - new() - { - Id = "bqz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bakaka", - Comment = null, - }, - new() - { - Id = "bra", - Part2B = "bra", - Part2T = "bra", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Braj", - Comment = null, - }, - new() - { - Id = "brb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Brao", - Comment = null, - }, - new() - { - Id = "brc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Berbice Creole Dutch", - Comment = null, - }, - new() - { - Id = "brd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Baraamu", - Comment = null, - }, - new() - { - Id = "bre", - Part2B = "bre", - Part2T = "bre", - Part1 = "br", - Scope = "I", - LanguageType = "L", - RefName = "Breton", - Comment = null, - }, - new() - { - Id = "brf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bira", - Comment = null, - }, - new() - { - Id = "brg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Baure", - Comment = null, - }, - new() - { - Id = "brh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Brahui", - Comment = null, - }, - new() - { - Id = "bri", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mokpwe", - Comment = null, - }, - new() - { - Id = "brj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bieria", - Comment = null, - }, - new() - { - Id = "brk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Birked", - Comment = null, - }, - new() - { - Id = "brl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Birwa", - Comment = null, - }, - new() - { - Id = "brm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Barambu", - Comment = null, - }, - new() - { - Id = "brn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Boruca", - Comment = null, - }, - new() - { - Id = "bro", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Brokkat", - Comment = null, - }, - new() - { - Id = "brp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Barapasi", - Comment = null, - }, - new() - { - Id = "brq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Breri", - Comment = null, - }, - new() - { - Id = "brr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Birao", - Comment = null, - }, - new() - { - Id = "brs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Baras", - Comment = null, - }, - new() - { - Id = "brt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bitare", - Comment = null, - }, - new() - { - Id = "bru", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Bru", - Comment = null, - }, - new() - { - Id = "brv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Bru", - Comment = null, - }, - new() - { - Id = "brw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bellari", - Comment = null, - }, - new() - { - Id = "brx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bodo (India)", - Comment = null, - }, - new() - { - Id = "bry", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Burui", - Comment = null, - }, - new() - { - Id = "brz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bilbil", - Comment = null, - }, - new() - { - Id = "bsa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Abinomn", - Comment = null, - }, - new() - { - Id = "bsb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Brunei Bisaya", - Comment = null, - }, - new() - { - Id = "bsc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bassari", - Comment = null, - }, - new() - { - Id = "bse", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wushi", - Comment = null, - }, - new() - { - Id = "bsf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bauchi", - Comment = null, - }, - new() - { - Id = "bsg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bashkardi", - Comment = null, - }, - new() - { - Id = "bsh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kati", - Comment = null, - }, - new() - { - Id = "bsi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bassossi", - Comment = null, - }, - new() - { - Id = "bsj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bangwinji", - Comment = null, - }, - new() - { - Id = "bsk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Burushaski", - Comment = null, - }, - new() - { - Id = "bsl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Basa-Gumna", - Comment = null, - }, - new() - { - Id = "bsm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Busami", - Comment = null, - }, - new() - { - Id = "bsn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Barasana-Eduria", - Comment = null, - }, - new() - { - Id = "bso", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Buso", - Comment = null, - }, - new() - { - Id = "bsp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Baga Sitemu", - Comment = null, - }, - new() - { - Id = "bsq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bassa", - Comment = null, - }, - new() - { - Id = "bsr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bassa-Kontagora", - Comment = null, - }, - new() - { - Id = "bss", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Akoose", - Comment = null, - }, - new() - { - Id = "bst", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Basketo", - Comment = null, - }, - new() - { - Id = "bsu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bahonsuai", - Comment = null, - }, - new() - { - Id = "bsv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Baga Sobané", - Comment = null, - }, - new() - { - Id = "bsw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Baiso", - Comment = null, - }, - new() - { - Id = "bsx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yangkam", - Comment = null, - }, - new() - { - Id = "bsy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sabah Bisaya", - Comment = null, - }, - new() - { - Id = "bta", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bata", - Comment = null, - }, - new() - { - Id = "btc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bati (Cameroon)", - Comment = null, - }, - new() - { - Id = "btd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Batak Dairi", - Comment = null, - }, - new() - { - Id = "bte", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Gamo-Ningi", - Comment = null, - }, - new() - { - Id = "btf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Birgit", - Comment = null, - }, - new() - { - Id = "btg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gagnoa Bété", - Comment = null, - }, - new() - { - Id = "bth", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Biatah Bidayuh", - Comment = null, - }, - new() - { - Id = "bti", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Burate", - Comment = null, - }, - new() - { - Id = "btj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bacanese Malay", - Comment = null, - }, - new() - { - Id = "btm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Batak Mandailing", - Comment = null, - }, - new() - { - Id = "btn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ratagnon", - Comment = null, - }, - new() - { - Id = "bto", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rinconada Bikol", - Comment = null, - }, - new() - { - Id = "btp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Budibud", - Comment = null, - }, - new() - { - Id = "btq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Batek", - Comment = null, - }, - new() - { - Id = "btr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Baetora", - Comment = null, - }, - new() - { - Id = "bts", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Batak Simalungun", - Comment = null, - }, - new() - { - Id = "btt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bete-Bendi", - Comment = null, - }, - new() - { - Id = "btu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Batu", - Comment = null, - }, - new() - { - Id = "btv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bateri", - Comment = null, - }, - new() - { - Id = "btw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Butuanon", - Comment = null, - }, - new() - { - Id = "btx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Batak Karo", - Comment = null, - }, - new() - { - Id = "bty", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bobot", - Comment = null, - }, - new() - { - Id = "btz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Batak Alas-Kluet", - Comment = null, - }, - new() - { - Id = "bua", - Part2B = "bua", - Part2T = "bua", - Part1 = null, - Scope = "M", - LanguageType = "L", - RefName = "Buriat", - Comment = null, - }, - new() - { - Id = "bub", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bua", - Comment = null, - }, - new() - { - Id = "buc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bushi", - Comment = null, - }, - new() - { - Id = "bud", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ntcham", - Comment = null, - }, - new() - { - Id = "bue", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Beothuk", - Comment = null, - }, - new() - { - Id = "buf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bushoong", - Comment = null, - }, - new() - { - Id = "bug", - Part2B = "bug", - Part2T = "bug", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Buginese", - Comment = null, - }, - new() - { - Id = "buh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Younuo Bunu", - Comment = null, - }, - new() - { - Id = "bui", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bongili", - Comment = null, - }, - new() - { - Id = "buj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Basa-Gurmana", - Comment = null, - }, - new() - { - Id = "buk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bugawac", - Comment = null, - }, - new() - { - Id = "bul", - Part2B = "bul", - Part2T = "bul", - Part1 = "bg", - Scope = "I", - LanguageType = "L", - RefName = "Bulgarian", - Comment = null, - }, - new() - { - Id = "bum", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bulu (Cameroon)", - Comment = null, - }, - new() - { - Id = "bun", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sherbro", - Comment = null, - }, - new() - { - Id = "buo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Terei", - Comment = null, - }, - new() - { - Id = "bup", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Busoa", - Comment = null, - }, - new() - { - Id = "buq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Brem", - Comment = null, - }, - new() - { - Id = "bus", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bokobaru", - Comment = null, - }, - new() - { - Id = "but", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bungain", - Comment = null, - }, - new() - { - Id = "buu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Budu", - Comment = null, - }, - new() - { - Id = "buv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bun", - Comment = null, - }, - new() - { - Id = "buw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bubi", - Comment = null, - }, - new() - { - Id = "bux", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Boghom", - Comment = null, - }, - new() - { - Id = "buy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bullom So", - Comment = null, - }, - new() - { - Id = "buz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bukwen", - Comment = null, - }, - new() - { - Id = "bva", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Barein", - Comment = null, - }, - new() - { - Id = "bvb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bube", - Comment = null, - }, - new() - { - Id = "bvc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Baelelea", - Comment = null, - }, - new() - { - Id = "bvd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Baeggu", - Comment = null, - }, - new() - { - Id = "bve", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Berau Malay", - Comment = null, - }, - new() - { - Id = "bvf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Boor", - Comment = null, - }, - new() - { - Id = "bvg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bonkeng", - Comment = null, - }, - new() - { - Id = "bvh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bure", - Comment = null, - }, - new() - { - Id = "bvi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Belanda Viri", - Comment = null, - }, - new() - { - Id = "bvj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Baan", - Comment = null, - }, - new() - { - Id = "bvk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bukat", - Comment = null, - }, - new() - { - Id = "bvl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bolivian Sign Language", - Comment = null, - }, - new() - { - Id = "bvm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bamunka", - Comment = null, - }, - new() - { - Id = "bvn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Buna", - Comment = null, - }, - new() - { - Id = "bvo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bolgo", - Comment = null, - }, - new() - { - Id = "bvp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bumang", - Comment = null, - }, - new() - { - Id = "bvq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Birri", - Comment = null, - }, - new() - { - Id = "bvr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Burarra", - Comment = null, - }, - new() - { - Id = "bvt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bati (Indonesia)", - Comment = null, - }, - new() - { - Id = "bvu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bukit Malay", - Comment = null, - }, - new() - { - Id = "bvv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Baniva", - Comment = null, - }, - new() - { - Id = "bvw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Boga", - Comment = null, - }, - new() - { - Id = "bvx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dibole", - Comment = null, - }, - new() - { - Id = "bvy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Baybayanon", - Comment = null, - }, - new() - { - Id = "bvz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bauzi", - Comment = null, - }, - new() - { - Id = "bwa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bwatoo", - Comment = null, - }, - new() - { - Id = "bwb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Namosi-Naitasiri-Serua", - Comment = null, - }, - new() - { - Id = "bwc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bwile", - Comment = null, - }, - new() - { - Id = "bwd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bwaidoka", - Comment = null, - }, - new() - { - Id = "bwe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bwe Karen", - Comment = null, - }, - new() - { - Id = "bwf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Boselewa", - Comment = null, - }, - new() - { - Id = "bwg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Barwe", - Comment = null, - }, - new() - { - Id = "bwh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bishuo", - Comment = null, - }, - new() - { - Id = "bwi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Baniwa", - Comment = null, - }, - new() - { - Id = "bwj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Láá Láá Bwamu", - Comment = null, - }, - new() - { - Id = "bwk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bauwaki", - Comment = null, - }, - new() - { - Id = "bwl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bwela", - Comment = null, - }, - new() - { - Id = "bwm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Biwat", - Comment = null, - }, - new() - { - Id = "bwn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wunai Bunu", - Comment = null, - }, - new() - { - Id = "bwo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Boro (Ethiopia)", - Comment = null, - }, - new() - { - Id = "bwp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mandobo Bawah", - Comment = null, - }, - new() - { - Id = "bwq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Bobo Madaré", - Comment = null, - }, - new() - { - Id = "bwr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bura-Pabir", - Comment = null, - }, - new() - { - Id = "bws", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bomboma", - Comment = null, - }, - new() - { - Id = "bwt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bafaw-Balong", - Comment = null, - }, - new() - { - Id = "bwu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Buli (Ghana)", - Comment = null, - }, - new() - { - Id = "bww", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bwa", - Comment = null, - }, - new() - { - Id = "bwx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bu-Nao Bunu", - Comment = null, - }, - new() - { - Id = "bwy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cwi Bwamu", - Comment = null, - }, - new() - { - Id = "bwz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bwisi", - Comment = null, - }, - new() - { - Id = "bxa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tairaha", - Comment = null, - }, - new() - { - Id = "bxb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Belanda Bor", - Comment = null, - }, - new() - { - Id = "bxc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Molengue", - Comment = null, - }, - new() - { - Id = "bxd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pela", - Comment = null, - }, - new() - { - Id = "bxe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Birale", - Comment = null, - }, - new() - { - Id = "bxf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bilur", - Comment = null, - }, - new() - { - Id = "bxg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bangala", - Comment = null, - }, - new() - { - Id = "bxh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Buhutu", - Comment = null, - }, - new() - { - Id = "bxi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Pirlatapa", - Comment = null, - }, - new() - { - Id = "bxj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bayungu", - Comment = null, - }, - new() - { - Id = "bxk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bukusu", - Comment = null, - }, - new() - { - Id = "bxl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jalkunan", - Comment = null, - }, - new() - { - Id = "bxm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mongolia Buriat", - Comment = null, - }, - new() - { - Id = "bxn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Burduna", - Comment = null, - }, - new() - { - Id = "bxo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Barikanchi", - Comment = null, - }, - new() - { - Id = "bxp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bebil", - Comment = null, - }, - new() - { - Id = "bxq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Beele", - Comment = null, - }, - new() - { - Id = "bxr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Russia Buriat", - Comment = null, - }, - new() - { - Id = "bxs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Busam", - Comment = null, - }, - new() - { - Id = "bxu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "China Buriat", - Comment = null, - }, - new() - { - Id = "bxv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Berakou", - Comment = null, - }, - new() - { - Id = "bxw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bankagooma", - Comment = null, - }, - new() - { - Id = "bxz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Binahari", - Comment = null, - }, - new() - { - Id = "bya", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Batak", - Comment = null, - }, - new() - { - Id = "byb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bikya", - Comment = null, - }, - new() - { - Id = "byc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ubaghara", - Comment = null, - }, - new() - { - Id = "byd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Benyadu'", - Comment = null, - }, - new() - { - Id = "bye", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pouye", - Comment = null, - }, - new() - { - Id = "byf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bete", - Comment = null, - }, - new() - { - Id = "byg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Baygo", - Comment = null, - }, - new() - { - Id = "byh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bhujel", - Comment = null, - }, - new() - { - Id = "byi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Buyu", - Comment = null, - }, - new() - { - Id = "byj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bina (Nigeria)", - Comment = null, - }, - new() - { - Id = "byk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Biao", - Comment = null, - }, - new() - { - Id = "byl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bayono", - Comment = null, - }, - new() - { - Id = "bym", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bidjara", - Comment = null, - }, - new() - { - Id = "byn", - Part2B = "byn", - Part2T = "byn", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bilin", - Comment = null, - }, - new() - { - Id = "byo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Biyo", - Comment = null, - }, - new() - { - Id = "byp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bumaji", - Comment = null, - }, - new() - { - Id = "byq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Basay", - Comment = null, - }, - new() - { - Id = "byr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Baruya", - Comment = null, - }, - new() - { - Id = "bys", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Burak", - Comment = null, - }, - new() - { - Id = "byt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Berti", - Comment = null, - }, - new() - { - Id = "byv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Medumba", - Comment = null, - }, - new() - { - Id = "byw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Belhariya", - Comment = null, - }, - new() - { - Id = "byx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Qaqet", - Comment = null, - }, - new() - { - Id = "byz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Banaro", - Comment = null, - }, - new() - { - Id = "bza", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bandi", - Comment = null, - }, - new() - { - Id = "bzb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Andio", - Comment = null, - }, - new() - { - Id = "bzc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Betsimisaraka Malagasy", - Comment = null, - }, - new() - { - Id = "bzd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bribri", - Comment = null, - }, - new() - { - Id = "bze", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jenaama Bozo", - Comment = null, - }, - new() - { - Id = "bzf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Boikin", - Comment = null, - }, - new() - { - Id = "bzg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Babuza", - Comment = null, - }, - new() - { - Id = "bzh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mapos Buang", - Comment = null, - }, - new() - { - Id = "bzi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bisu", - Comment = null, - }, - new() - { - Id = "bzj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Belize Kriol English", - Comment = null, - }, - new() - { - Id = "bzk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nicaragua Creole English", - Comment = null, - }, - new() - { - Id = "bzl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Boano (Sulawesi)", - Comment = null, - }, - new() - { - Id = "bzm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bolondo", - Comment = null, - }, - new() - { - Id = "bzn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Boano (Maluku)", - Comment = null, - }, - new() - { - Id = "bzo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bozaba", - Comment = null, - }, - new() - { - Id = "bzp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kemberano", - Comment = null, - }, - new() - { - Id = "bzq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Buli (Indonesia)", - Comment = null, - }, - new() - { - Id = "bzr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Biri", - Comment = null, - }, - new() - { - Id = "bzs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Brazilian Sign Language", - Comment = null, - }, - new() - { - Id = "bzt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "C", - RefName = "Brithenig", - Comment = null, - }, - new() - { - Id = "bzu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Burmeso", - Comment = null, - }, - new() - { - Id = "bzv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Naami", - Comment = null, - }, - new() - { - Id = "bzw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Basa (Nigeria)", - Comment = null, - }, - new() - { - Id = "bzx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kɛlɛngaxo Bozo", - Comment = null, - }, - new() - { - Id = "bzy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Obanliku", - Comment = null, - }, - new() - { - Id = "bzz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Evant", - Comment = null, - }, - new() - { - Id = "caa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chortí", - Comment = null, - }, - new() - { - Id = "cab", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Garifuna", - Comment = null, - }, - new() - { - Id = "cac", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chuj", - Comment = null, - }, - new() - { - Id = "cad", - Part2B = "cad", - Part2T = "cad", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Caddo", - Comment = null, - }, - new() - { - Id = "cae", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lehar", - Comment = null, - }, - new() - { - Id = "caf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Carrier", - Comment = null, - }, - new() - { - Id = "cag", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nivaclé", - Comment = null, - }, - new() - { - Id = "cah", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cahuarano", - Comment = null, - }, - new() - { - Id = "caj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Chané", - Comment = null, - }, - new() - { - Id = "cak", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kaqchikel", - Comment = null, - }, - new() - { - Id = "cal", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Carolinian", - Comment = null, - }, - new() - { - Id = "cam", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cemuhî", - Comment = null, - }, - new() - { - Id = "can", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chambri", - Comment = null, - }, - new() - { - Id = "cao", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chácobo", - Comment = null, - }, - new() - { - Id = "cap", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chipaya", - Comment = null, - }, - new() - { - Id = "caq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Car Nicobarese", - Comment = null, - }, - new() - { - Id = "car", - Part2B = "car", - Part2T = "car", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Galibi Carib", - Comment = null, - }, - new() - { - Id = "cas", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tsimané", - Comment = null, - }, - new() - { - Id = "cat", - Part2B = "cat", - Part2T = "cat", - Part1 = "ca", - Scope = "I", - LanguageType = "L", - RefName = "Catalan", - Comment = null, - }, - new() - { - Id = "cav", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cavineña", - Comment = null, - }, - new() - { - Id = "caw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Callawalla", - Comment = null, - }, - new() - { - Id = "cax", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chiquitano", - Comment = null, - }, - new() - { - Id = "cay", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cayuga", - Comment = null, - }, - new() - { - Id = "caz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Canichana", - Comment = null, - }, - new() - { - Id = "cbb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cabiyarí", - Comment = null, - }, - new() - { - Id = "cbc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Carapana", - Comment = null, - }, - new() - { - Id = "cbd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Carijona", - Comment = null, - }, - new() - { - Id = "cbg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chimila", - Comment = null, - }, - new() - { - Id = "cbi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chachi", - Comment = null, - }, - new() - { - Id = "cbj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ede Cabe", - Comment = null, - }, - new() - { - Id = "cbk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chavacano", - Comment = null, - }, - new() - { - Id = "cbl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bualkhaw Chin", - Comment = null, - }, - new() - { - Id = "cbn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nyahkur", - Comment = null, - }, - new() - { - Id = "cbo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Izora", - Comment = null, - }, - new() - { - Id = "cbq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tsucuba", - Comment = null, - }, - new() - { - Id = "cbr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cashibo-Cacataibo", - Comment = null, - }, - new() - { - Id = "cbs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cashinahua", - Comment = null, - }, - new() - { - Id = "cbt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chayahuita", - Comment = null, - }, - new() - { - Id = "cbu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Candoshi-Shapra", - Comment = null, - }, - new() - { - Id = "cbv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cacua", - Comment = null, - }, - new() - { - Id = "cbw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kinabalian", - Comment = null, - }, - new() - { - Id = "cby", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Carabayo", - Comment = null, - }, - new() - { - Id = "ccc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chamicuro", - Comment = null, - }, - new() - { - Id = "ccd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cafundo Creole", - Comment = null, - }, - new() - { - Id = "cce", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chopi", - Comment = null, - }, - new() - { - Id = "ccg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Samba Daka", - Comment = null, - }, - new() - { - Id = "cch", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Atsam", - Comment = null, - }, - new() - { - Id = "ccj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kasanga", - Comment = null, - }, - new() - { - Id = "ccl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cutchi-Swahili", - Comment = null, - }, - new() - { - Id = "ccm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Malaccan Creole Malay", - Comment = null, - }, - new() - { - Id = "cco", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Comaltepec Chinantec", - Comment = null, - }, - new() - { - Id = "ccp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chakma", - Comment = null, - }, - new() - { - Id = "ccr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Cacaopera", - Comment = null, - }, - new() - { - Id = "cda", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Choni", - Comment = null, - }, - new() - { - Id = "cde", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chenchu", - Comment = null, - }, - new() - { - Id = "cdf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chiru", - Comment = null, - }, - new() - { - Id = "cdh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chambeali", - Comment = null, - }, - new() - { - Id = "cdi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chodri", - Comment = null, - }, - new() - { - Id = "cdj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Churahi", - Comment = null, - }, - new() - { - Id = "cdm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chepang", - Comment = null, - }, - new() - { - Id = "cdn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chaudangsi", - Comment = null, - }, - new() - { - Id = "cdo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Min Dong Chinese", - Comment = null, - }, - new() - { - Id = "cdr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cinda-Regi-Tiyal", - Comment = null, - }, - new() - { - Id = "cds", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chadian Sign Language", - Comment = null, - }, - new() - { - Id = "cdy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chadong", - Comment = null, - }, - new() - { - Id = "cdz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Koda", - Comment = null, - }, - new() - { - Id = "cea", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Lower Chehalis", - Comment = null, - }, - new() - { - Id = "ceb", - Part2B = "ceb", - Part2T = "ceb", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cebuano", - Comment = null, - }, - new() - { - Id = "ceg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chamacoco", - Comment = null, - }, - new() - { - Id = "cek", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Khumi Chin", - Comment = null, - }, - new() - { - Id = "cen", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cen", - Comment = null, - }, - new() - { - Id = "ces", - Part2B = "cze", - Part2T = "ces", - Part1 = "cs", - Scope = "I", - LanguageType = "L", - RefName = "Czech", - Comment = null, - }, - new() - { - Id = "cet", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Centúúm", - Comment = null, - }, - new() - { - Id = "cey", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ekai Chin", - Comment = null, - }, - new() - { - Id = "cfa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dijim-Bwilim", - Comment = null, - }, - new() - { - Id = "cfd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cara", - Comment = null, - }, - new() - { - Id = "cfg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Como Karim", - Comment = null, - }, - new() - { - Id = "cfm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Falam Chin", - Comment = null, - }, - new() - { - Id = "cga", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Changriwa", - Comment = null, - }, - new() - { - Id = "cgc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kagayanen", - Comment = null, - }, - new() - { - Id = "cgg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chiga", - Comment = null, - }, - new() - { - Id = "cgk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chocangacakha", - Comment = null, - }, - new() - { - Id = "cha", - Part2B = "cha", - Part2T = "cha", - Part1 = "ch", - Scope = "I", - LanguageType = "L", - RefName = "Chamorro", - Comment = null, - }, - new() - { - Id = "chb", - Part2B = "chb", - Part2T = "chb", - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Chibcha", - Comment = null, - }, - new() - { - Id = "chc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Catawba", - Comment = null, - }, - new() - { - Id = "chd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Highland Oaxaca Chontal", - Comment = null, - }, - new() - { - Id = "che", - Part2B = "che", - Part2T = "che", - Part1 = "ce", - Scope = "I", - LanguageType = "L", - RefName = "Chechen", - Comment = null, - }, - new() - { - Id = "chf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tabasco Chontal", - Comment = null, - }, - new() - { - Id = "chg", - Part2B = "chg", - Part2T = "chg", - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Chagatai", - Comment = null, - }, - new() - { - Id = "chh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Chinook", - Comment = null, - }, - new() - { - Id = "chj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ojitlán Chinantec", - Comment = null, - }, - new() - { - Id = "chk", - Part2B = "chk", - Part2T = "chk", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chuukese", - Comment = null, - }, - new() - { - Id = "chl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cahuilla", - Comment = null, - }, - new() - { - Id = "chm", - Part2B = "chm", - Part2T = "chm", - Part1 = null, - Scope = "M", - LanguageType = "L", - RefName = "Mari (Russia)", - Comment = null, - }, - new() - { - Id = "chn", - Part2B = "chn", - Part2T = "chn", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chinook jargon", - Comment = null, - }, - new() - { - Id = "cho", - Part2B = "cho", - Part2T = "cho", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Choctaw", - Comment = null, - }, - new() - { - Id = "chp", - Part2B = "chp", - Part2T = "chp", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chipewyan", - Comment = null, - }, - new() - { - Id = "chq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Quiotepec Chinantec", - Comment = null, - }, - new() - { - Id = "chr", - Part2B = "chr", - Part2T = "chr", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cherokee", - Comment = null, - }, - new() - { - Id = "cht", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Cholón", - Comment = null, - }, - new() - { - Id = "chu", - Part2B = "chu", - Part2T = "chu", - Part1 = "cu", - Scope = "I", - LanguageType = "H", - RefName = "Church Slavic", - Comment = null, - }, - new() - { - Id = "chv", - Part2B = "chv", - Part2T = "chv", - Part1 = "cv", - Scope = "I", - LanguageType = "L", - RefName = "Chuvash", - Comment = null, - }, - new() - { - Id = "chw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chuwabu", - Comment = null, - }, - new() - { - Id = "chx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chantyal", - Comment = null, - }, - new() - { - Id = "chy", - Part2B = "chy", - Part2T = "chy", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cheyenne", - Comment = null, - }, - new() - { - Id = "chz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ozumacín Chinantec", - Comment = null, - }, - new() - { - Id = "cia", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cia-Cia", - Comment = null, - }, - new() - { - Id = "cib", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ci Gbe", - Comment = null, - }, - new() - { - Id = "cic", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chickasaw", - Comment = null, - }, - new() - { - Id = "cid", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Chimariko", - Comment = null, - }, - new() - { - Id = "cie", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cineni", - Comment = null, - }, - new() - { - Id = "cih", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chinali", - Comment = null, - }, - new() - { - Id = "cik", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chitkuli Kinnauri", - Comment = null, - }, - new() - { - Id = "cim", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cimbrian", - Comment = null, - }, - new() - { - Id = "cin", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cinta Larga", - Comment = null, - }, - new() - { - Id = "cip", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chiapanec", - Comment = null, - }, - new() - { - Id = "cir", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tiri", - Comment = null, - }, - new() - { - Id = "ciw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chippewa", - Comment = null, - }, - new() - { - Id = "ciy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chaima", - Comment = null, - }, - new() - { - Id = "cja", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Cham", - Comment = null, - }, - new() - { - Id = "cje", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chru", - Comment = null, - }, - new() - { - Id = "cjh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Upper Chehalis", - Comment = null, - }, - new() - { - Id = "cji", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chamalal", - Comment = null, - }, - new() - { - Id = "cjk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chokwe", - Comment = null, - }, - new() - { - Id = "cjm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Cham", - Comment = null, - }, - new() - { - Id = "cjn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chenapian", - Comment = null, - }, - new() - { - Id = "cjo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ashéninka Pajonal", - Comment = null, - }, - new() - { - Id = "cjp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cabécar", - Comment = null, - }, - new() - { - Id = "cjs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Shor", - Comment = null, - }, - new() - { - Id = "cjv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chuave", - Comment = null, - }, - new() - { - Id = "cjy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jinyu Chinese", - Comment = null, - }, - new() - { - Id = "ckb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Central Kurdish", - Comment = null, - }, - new() - { - Id = "ckh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chak", - Comment = null, - }, - new() - { - Id = "ckl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cibak", - Comment = null, - }, - new() - { - Id = "ckm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chakavian", - Comment = null, - }, - new() - { - Id = "ckn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kaang Chin", - Comment = null, - }, - new() - { - Id = "cko", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Anufo", - Comment = null, - }, - new() - { - Id = "ckq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kajakse", - Comment = null, - }, - new() - { - Id = "ckr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kairak", - Comment = null, - }, - new() - { - Id = "cks", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tayo", - Comment = null, - }, - new() - { - Id = "ckt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chukot", - Comment = null, - }, - new() - { - Id = "cku", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Koasati", - Comment = null, - }, - new() - { - Id = "ckv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kavalan", - Comment = null, - }, - new() - { - Id = "ckx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Caka", - Comment = null, - }, - new() - { - Id = "cky", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cakfem-Mushere", - Comment = null, - }, - new() - { - Id = "ckz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cakchiquel-Quiché Mixed Language", - Comment = null, - }, - new() - { - Id = "cla", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ron", - Comment = null, - }, - new() - { - Id = "clc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chilcotin", - Comment = null, - }, - new() - { - Id = "cld", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chaldean Neo-Aramaic", - Comment = null, - }, - new() - { - Id = "cle", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lealao Chinantec", - Comment = null, - }, - new() - { - Id = "clh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chilisso", - Comment = null, - }, - new() - { - Id = "cli", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chakali", - Comment = null, - }, - new() - { - Id = "clj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Laitu Chin", - Comment = null, - }, - new() - { - Id = "clk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Idu-Mishmi", - Comment = null, - }, - new() - { - Id = "cll", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chala", - Comment = null, - }, - new() - { - Id = "clm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Klallam", - Comment = null, - }, - new() - { - Id = "clo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lowland Oaxaca Chontal", - Comment = null, - }, - new() - { - Id = "cls", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Classical Sanskrit", - Comment = null, - }, - new() - { - Id = "clt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lautu Chin", - Comment = null, - }, - new() - { - Id = "clu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Caluyanun", - Comment = null, - }, - new() - { - Id = "clw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chulym", - Comment = null, - }, - new() - { - Id = "cly", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Highland Chatino", - Comment = null, - }, - new() - { - Id = "cma", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maa", - Comment = null, - }, - new() - { - Id = "cme", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cerma", - Comment = null, - }, - new() - { - Id = "cmg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Classical Mongolian", - Comment = null, - }, - new() - { - Id = "cmi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Emberá-Chamí", - Comment = null, - }, - new() - { - Id = "cml", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Campalagian", - Comment = null, - }, - new() - { - Id = "cmm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Michigamea", - Comment = null, - }, - new() - { - Id = "cmn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mandarin Chinese", - Comment = null, - }, - new() - { - Id = "cmo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Central Mnong", - Comment = null, - }, - new() - { - Id = "cmr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mro-Khimi Chin", - Comment = null, - }, - new() - { - Id = "cms", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Messapic", - Comment = null, - }, - new() - { - Id = "cmt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Camtho", - Comment = null, - }, - new() - { - Id = "cna", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Changthang", - Comment = null, - }, - new() - { - Id = "cnb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chinbon Chin", - Comment = null, - }, - new() - { - Id = "cnc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Côông", - Comment = null, - }, - new() - { - Id = "cng", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Qiang", - Comment = null, - }, - new() - { - Id = "cnh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hakha Chin", - Comment = null, - }, - new() - { - Id = "cni", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Asháninka", - Comment = null, - }, - new() - { - Id = "cnk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Khumi Chin", - Comment = null, - }, - new() - { - Id = "cnl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lalana Chinantec", - Comment = null, - }, - new() - { - Id = "cno", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Con", - Comment = null, - }, - new() - { - Id = "cnp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Ping Chinese", - Comment = null, - }, - new() - { - Id = "cnq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chung", - Comment = null, - }, - new() - { - Id = "cnr", - Part2B = "cnr", - Part2T = "cnr", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Montenegrin", - Comment = null, - }, - new() - { - Id = "cns", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Central Asmat", - Comment = null, - }, - new() - { - Id = "cnt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tepetotutla Chinantec", - Comment = null, - }, - new() - { - Id = "cnu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chenoua", - Comment = null, - }, - new() - { - Id = "cnw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngawn Chin", - Comment = null, - }, - new() - { - Id = "cnx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Middle Cornish", - Comment = null, - }, - new() - { - Id = "coa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cocos Islands Malay", - Comment = null, - }, - new() - { - Id = "cob", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Chicomuceltec", - Comment = null, - }, - new() - { - Id = "coc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cocopa", - Comment = null, - }, - new() - { - Id = "cod", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cocama-Cocamilla", - Comment = null, - }, - new() - { - Id = "coe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Koreguaje", - Comment = null, - }, - new() - { - Id = "cof", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Colorado", - Comment = null, - }, - new() - { - Id = "cog", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chong", - Comment = null, - }, - new() - { - Id = "coh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chonyi-Dzihana-Kauma", - Comment = null, - }, - new() - { - Id = "coj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Cochimi", - Comment = null, - }, - new() - { - Id = "cok", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Santa Teresa Cora", - Comment = null, - }, - new() - { - Id = "col", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Columbia-Wenatchi", - Comment = null, - }, - new() - { - Id = "com", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Comanche", - Comment = null, - }, - new() - { - Id = "con", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cofán", - Comment = null, - }, - new() - { - Id = "coo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Comox", - Comment = null, - }, - new() - { - Id = "cop", - Part2B = "cop", - Part2T = "cop", - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Coptic", - Comment = null, - }, - new() - { - Id = "coq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Coquille", - Comment = null, - }, - new() - { - Id = "cor", - Part2B = "cor", - Part2T = "cor", - Part1 = "kw", - Scope = "I", - LanguageType = "L", - RefName = "Cornish", - Comment = null, - }, - new() - { - Id = "cos", - Part2B = "cos", - Part2T = "cos", - Part1 = "co", - Scope = "I", - LanguageType = "L", - RefName = "Corsican", - Comment = null, - }, - new() - { - Id = "cot", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Caquinte", - Comment = null, - }, - new() - { - Id = "cou", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wamey", - Comment = null, - }, - new() - { - Id = "cov", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cao Miao", - Comment = null, - }, - new() - { - Id = "cow", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Cowlitz", - Comment = null, - }, - new() - { - Id = "cox", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nanti", - Comment = null, - }, - new() - { - Id = "coz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chochotec", - Comment = null, - }, - new() - { - Id = "cpa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Palantla Chinantec", - Comment = null, - }, - new() - { - Id = "cpb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ucayali-Yurúa Ashéninka", - Comment = null, - }, - new() - { - Id = "cpc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ajyíninka Apurucayali", - Comment = null, - }, - new() - { - Id = "cpg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Cappadocian Greek", - Comment = null, - }, - new() - { - Id = "cpi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chinese Pidgin English", - Comment = null, - }, - new() - { - Id = "cpn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cherepon", - Comment = null, - }, - new() - { - Id = "cpo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kpeego", - Comment = null, - }, - new() - { - Id = "cps", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Capiznon", - Comment = null, - }, - new() - { - Id = "cpu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pichis Ashéninka", - Comment = null, - }, - new() - { - Id = "cpx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pu-Xian Chinese", - Comment = null, - }, - new() - { - Id = "cpy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "South Ucayali Ashéninka", - Comment = null, - }, - new() - { - Id = "cqd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chuanqiandian Cluster Miao", - Comment = null, - }, - new() - { - Id = "cra", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chara", - Comment = null, - }, - new() - { - Id = "crb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Island Carib", - Comment = null, - }, - new() - { - Id = "crc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lonwolwol", - Comment = null, - }, - new() - { - Id = "crd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Coeur d'Alene", - Comment = null, - }, - new() - { - Id = "cre", - Part2B = "cre", - Part2T = "cre", - Part1 = "cr", - Scope = "M", - LanguageType = "L", - RefName = "Cree", - Comment = null, - }, - new() - { - Id = "crf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Caramanta", - Comment = null, - }, - new() - { - Id = "crg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Michif", - Comment = null, - }, - new() - { - Id = "crh", - Part2B = "crh", - Part2T = "crh", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Crimean Tatar", - Comment = null, - }, - new() - { - Id = "cri", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sãotomense", - Comment = null, - }, - new() - { - Id = "crj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern East Cree", - Comment = null, - }, - new() - { - Id = "crk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Plains Cree", - Comment = null, - }, - new() - { - Id = "crl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern East Cree", - Comment = null, - }, - new() - { - Id = "crm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Moose Cree", - Comment = null, - }, - new() - { - Id = "crn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "El Nayar Cora", - Comment = null, - }, - new() - { - Id = "cro", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Crow", - Comment = null, - }, - new() - { - Id = "crq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Iyo'wujwa Chorote", - Comment = null, - }, - new() - { - Id = "crr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Carolina Algonquian", - Comment = null, - }, - new() - { - Id = "crs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Seselwa Creole French", - Comment = null, - }, - new() - { - Id = "crt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Iyojwa'ja Chorote", - Comment = null, - }, - new() - { - Id = "crv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chaura", - Comment = null, - }, - new() - { - Id = "crw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chrau", - Comment = null, - }, - new() - { - Id = "crx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Carrier", - Comment = null, - }, - new() - { - Id = "cry", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cori", - Comment = null, - }, - new() - { - Id = "crz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Cruzeño", - Comment = null, - }, - new() - { - Id = "csa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chiltepec Chinantec", - Comment = null, - }, - new() - { - Id = "csb", - Part2B = "csb", - Part2T = "csb", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kashubian", - Comment = null, - }, - new() - { - Id = "csc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Catalan Sign Language", - Comment = null, - }, - new() - { - Id = "csd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chiangmai Sign Language", - Comment = null, - }, - new() - { - Id = "cse", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Czech Sign Language", - Comment = null, - }, - new() - { - Id = "csf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cuba Sign Language", - Comment = null, - }, - new() - { - Id = "csg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chilean Sign Language", - Comment = null, - }, - new() - { - Id = "csh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Asho Chin", - Comment = null, - }, - new() - { - Id = "csi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Coast Miwok", - Comment = null, - }, - new() - { - Id = "csj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Songlai Chin", - Comment = null, - }, - new() - { - Id = "csk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jola-Kasa", - Comment = null, - }, - new() - { - Id = "csl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chinese Sign Language", - Comment = null, - }, - new() - { - Id = "csm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Central Sierra Miwok", - Comment = null, - }, - new() - { - Id = "csn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Colombian Sign Language", - Comment = null, - }, - new() - { - Id = "cso", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sochiapam Chinantec", - Comment = null, - }, - new() - { - Id = "csp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Ping Chinese", - Comment = null, - }, - new() - { - Id = "csq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Croatia Sign Language", - Comment = null, - }, - new() - { - Id = "csr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Costa Rican Sign Language", - Comment = null, - }, - new() - { - Id = "css", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Southern Ohlone", - Comment = null, - }, - new() - { - Id = "cst", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Ohlone", - Comment = null, - }, - new() - { - Id = "csv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sumtu Chin", - Comment = null, - }, - new() - { - Id = "csw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Swampy Cree", - Comment = null, - }, - new() - { - Id = "csx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cambodian Sign Language", - Comment = null, - }, - new() - { - Id = "csy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Siyin Chin", - Comment = null, - }, - new() - { - Id = "csz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Coos", - Comment = null, - }, - new() - { - Id = "cta", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tataltepec Chatino", - Comment = null, - }, - new() - { - Id = "ctc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Chetco", - Comment = null, - }, - new() - { - Id = "ctd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tedim Chin", - Comment = null, - }, - new() - { - Id = "cte", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tepinapa Chinantec", - Comment = null, - }, - new() - { - Id = "ctg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chittagonian", - Comment = null, - }, - new() - { - Id = "cth", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Thaiphum Chin", - Comment = null, - }, - new() - { - Id = "ctl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tlacoatzintepec Chinantec", - Comment = null, - }, - new() - { - Id = "ctm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Chitimacha", - Comment = null, - }, - new() - { - Id = "ctn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chhintange", - Comment = null, - }, - new() - { - Id = "cto", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Emberá-Catío", - Comment = null, - }, - new() - { - Id = "ctp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Highland Chatino", - Comment = null, - }, - new() - { - Id = "cts", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Catanduanes Bikol", - Comment = null, - }, - new() - { - Id = "ctt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wayanad Chetti", - Comment = null, - }, - new() - { - Id = "ctu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chol", - Comment = null, - }, - new() - { - Id = "cty", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Moundadan Chetty", - Comment = null, - }, - new() - { - Id = "ctz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zacatepec Chatino", - Comment = null, - }, - new() - { - Id = "cua", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cua", - Comment = null, - }, - new() - { - Id = "cub", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cubeo", - Comment = null, - }, - new() - { - Id = "cuc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Usila Chinantec", - Comment = null, - }, - new() - { - Id = "cuh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chuka", - Comment = null, - }, - new() - { - Id = "cui", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cuiba", - Comment = null, - }, - new() - { - Id = "cuj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mashco Piro", - Comment = null, - }, - new() - { - Id = "cuk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "San Blas Kuna", - Comment = null, - }, - new() - { - Id = "cul", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Culina", - Comment = null, - }, - new() - { - Id = "cuo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Cumanagoto", - Comment = null, - }, - new() - { - Id = "cup", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Cupeño", - Comment = null, - }, - new() - { - Id = "cuq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cun", - Comment = null, - }, - new() - { - Id = "cur", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chhulung", - Comment = null, - }, - new() - { - Id = "cut", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Teutila Cuicatec", - Comment = null, - }, - new() - { - Id = "cuu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tai Ya", - Comment = null, - }, - new() - { - Id = "cuv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cuvok", - Comment = null, - }, - new() - { - Id = "cuw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chukwa", - Comment = null, - }, - new() - { - Id = "cux", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tepeuxila Cuicatec", - Comment = null, - }, - new() - { - Id = "cuy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cuitlatec", - Comment = null, - }, - new() - { - Id = "cvg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chug", - Comment = null, - }, - new() - { - Id = "cvn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Valle Nacional Chinantec", - Comment = null, - }, - new() - { - Id = "cwa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kabwa", - Comment = null, - }, - new() - { - Id = "cwb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maindo", - Comment = null, - }, - new() - { - Id = "cwd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Woods Cree", - Comment = null, - }, - new() - { - Id = "cwe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kwere", - Comment = null, - }, - new() - { - Id = "cwg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chewong", - Comment = null, - }, - new() - { - Id = "cwt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kuwaataay", - Comment = null, - }, - new() - { - Id = "cxh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cha'ari", - Comment = null, - }, - new() - { - Id = "cya", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nopala Chatino", - Comment = null, - }, - new() - { - Id = "cyb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Cayubaba", - Comment = null, - }, - new() - { - Id = "cym", - Part2B = "wel", - Part2T = "cym", - Part1 = "cy", - Scope = "I", - LanguageType = "L", - RefName = "Welsh", - Comment = null, - }, - new() - { - Id = "cyo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cuyonon", - Comment = null, - }, - new() - { - Id = "czh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Huizhou Chinese", - Comment = null, - }, - new() - { - Id = "czk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Knaanic", - Comment = null, - }, - new() - { - Id = "czn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zenzontepec Chatino", - Comment = null, - }, - new() - { - Id = "czo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Min Zhong Chinese", - Comment = null, - }, - new() - { - Id = "czt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zotung Chin", - Comment = null, - }, - new() - { - Id = "daa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dangaléat", - Comment = null, - }, - new() - { - Id = "dac", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dambi", - Comment = null, - }, - new() - { - Id = "dad", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Marik", - Comment = null, - }, - new() - { - Id = "dae", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Duupa", - Comment = null, - }, - new() - { - Id = "dag", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dagbani", - Comment = null, - }, - new() - { - Id = "dah", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gwahatike", - Comment = null, - }, - new() - { - Id = "dai", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Day", - Comment = null, - }, - new() - { - Id = "daj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dar Fur Daju", - Comment = null, - }, - new() - { - Id = "dak", - Part2B = "dak", - Part2T = "dak", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dakota", - Comment = null, - }, - new() - { - Id = "dal", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dahalo", - Comment = null, - }, - new() - { - Id = "dam", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Damakawa", - Comment = null, - }, - new() - { - Id = "dan", - Part2B = "dan", - Part2T = "dan", - Part1 = "da", - Scope = "I", - LanguageType = "L", - RefName = "Danish", - Comment = null, - }, - new() - { - Id = "dao", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Daai Chin", - Comment = null, - }, - new() - { - Id = "daq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dandami Maria", - Comment = null, - }, - new() - { - Id = "dar", - Part2B = "dar", - Part2T = "dar", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dargwa", - Comment = null, - }, - new() - { - Id = "das", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Daho-Doo", - Comment = null, - }, - new() - { - Id = "dau", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dar Sila Daju", - Comment = null, - }, - new() - { - Id = "dav", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Taita", - Comment = null, - }, - new() - { - Id = "daw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Davawenyo", - Comment = null, - }, - new() - { - Id = "dax", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dayi", - Comment = null, - }, - new() - { - Id = "daz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Moi-Wadea", - Comment = null, - }, - new() - { - Id = "dba", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bangime", - Comment = null, - }, - new() - { - Id = "dbb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Deno", - Comment = null, - }, - new() - { - Id = "dbd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dadiya", - Comment = null, - }, - new() - { - Id = "dbe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dabe", - Comment = null, - }, - new() - { - Id = "dbf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Edopi", - Comment = null, - }, - new() - { - Id = "dbg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dogul Dom Dogon", - Comment = null, - }, - new() - { - Id = "dbi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Doka", - Comment = null, - }, - new() - { - Id = "dbj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ida'an", - Comment = null, - }, - new() - { - Id = "dbl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dyirbal", - Comment = null, - }, - new() - { - Id = "dbm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Duguri", - Comment = null, - }, - new() - { - Id = "dbn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Duriankere", - Comment = null, - }, - new() - { - Id = "dbo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dulbu", - Comment = null, - }, - new() - { - Id = "dbp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Duwai", - Comment = null, - }, - new() - { - Id = "dbq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Daba", - Comment = null, - }, - new() - { - Id = "dbr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dabarre", - Comment = null, - }, - new() - { - Id = "dbt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ben Tey Dogon", - Comment = null, - }, - new() - { - Id = "dbu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bondum Dom Dogon", - Comment = null, - }, - new() - { - Id = "dbv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dungu", - Comment = null, - }, - new() - { - Id = "dbw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bankan Tey Dogon", - Comment = null, - }, - new() - { - Id = "dby", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dibiyaso", - Comment = null, - }, - new() - { - Id = "dcc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Deccan", - Comment = null, - }, - new() - { - Id = "dcr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Negerhollands", - Comment = null, - }, - new() - { - Id = "dda", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Dadi Dadi", - Comment = null, - }, - new() - { - Id = "ddd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dongotono", - Comment = null, - }, - new() - { - Id = "dde", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Doondo", - Comment = null, - }, - new() - { - Id = "ddg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Fataluku", - Comment = null, - }, - new() - { - Id = "ddi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "West Goodenough", - Comment = null, - }, - new() - { - Id = "ddj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jaru", - Comment = null, - }, - new() - { - Id = "ddn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dendi (Benin)", - Comment = null, - }, - new() - { - Id = "ddo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dido", - Comment = null, - }, - new() - { - Id = "ddr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Dhudhuroa", - Comment = null, - }, - new() - { - Id = "dds", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Donno So Dogon", - Comment = null, - }, - new() - { - Id = "ddw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dawera-Daweloor", - Comment = null, - }, - new() - { - Id = "dec", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dagik", - Comment = null, - }, - new() - { - Id = "ded", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dedua", - Comment = null, - }, - new() - { - Id = "dee", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dewoin", - Comment = null, - }, - new() - { - Id = "def", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dezfuli", - Comment = null, - }, - new() - { - Id = "deg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Degema", - Comment = null, - }, - new() - { - Id = "deh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dehwari", - Comment = null, - }, - new() - { - Id = "dei", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Demisa", - Comment = null, - }, - new() - { - Id = "del", - Part2B = "del", - Part2T = "del", - Part1 = null, - Scope = "M", - LanguageType = "L", - RefName = "Delaware", - Comment = null, - }, - new() - { - Id = "dem", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dem", - Comment = null, - }, - new() - { - Id = "den", - Part2B = "den", - Part2T = "den", - Part1 = null, - Scope = "M", - LanguageType = "L", - RefName = "Slavey", - Comment = null, - }, - new() - { - Id = "dep", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Pidgin Delaware", - Comment = null, - }, - new() - { - Id = "deq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dendi (Central African Republic)", - Comment = null, - }, - new() - { - Id = "der", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Deori", - Comment = null, - }, - new() - { - Id = "des", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Desano", - Comment = null, - }, - new() - { - Id = "deu", - Part2B = "ger", - Part2T = "deu", - Part1 = "de", - Scope = "I", - LanguageType = "L", - RefName = "German", - Comment = null, - }, - new() - { - Id = "dev", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Domung", - Comment = null, - }, - new() - { - Id = "dez", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dengese", - Comment = null, - }, - new() - { - Id = "dga", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Dagaare", - Comment = null, - }, - new() - { - Id = "dgb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bunoge Dogon", - Comment = null, - }, - new() - { - Id = "dgc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Casiguran Dumagat Agta", - Comment = null, - }, - new() - { - Id = "dgd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dagaari Dioula", - Comment = null, - }, - new() - { - Id = "dge", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Degenan", - Comment = null, - }, - new() - { - Id = "dgg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Doga", - Comment = null, - }, - new() - { - Id = "dgh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dghwede", - Comment = null, - }, - new() - { - Id = "dgi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Dagara", - Comment = null, - }, - new() - { - Id = "dgk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dagba", - Comment = null, - }, - new() - { - Id = "dgl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Andaandi", - Comment = null, - }, - new() - { - Id = "dgn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Dagoman", - Comment = null, - }, - new() - { - Id = "dgo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dogri (individual language)", - Comment = null, - }, - new() - { - Id = "dgr", - Part2B = "dgr", - Part2T = "dgr", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tlicho", - Comment = null, - }, - new() - { - Id = "dgs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dogoso", - Comment = null, - }, - new() - { - Id = "dgt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Ndra'ngith", - Comment = null, - }, - new() - { - Id = "dgw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Daungwurrung", - Comment = null, - }, - new() - { - Id = "dgx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Doghoro", - Comment = null, - }, - new() - { - Id = "dgz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Daga", - Comment = null, - }, - new() - { - Id = "dhd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dhundari", - Comment = null, - }, - new() - { - Id = "dhg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dhangu-Djangu", - Comment = null, - }, - new() - { - Id = "dhi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dhimal", - Comment = null, - }, - new() - { - Id = "dhl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dhalandji", - Comment = null, - }, - new() - { - Id = "dhm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zemba", - Comment = null, - }, - new() - { - Id = "dhn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dhanki", - Comment = null, - }, - new() - { - Id = "dho", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dhodia", - Comment = null, - }, - new() - { - Id = "dhr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dhargari", - Comment = null, - }, - new() - { - Id = "dhs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dhaiso", - Comment = null, - }, - new() - { - Id = "dhu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Dhurga", - Comment = null, - }, - new() - { - Id = "dhv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dehu", - Comment = null, - }, - new() - { - Id = "dhw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dhanwar (Nepal)", - Comment = null, - }, - new() - { - Id = "dhx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dhungaloo", - Comment = null, - }, - new() - { - Id = "dia", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dia", - Comment = null, - }, - new() - { - Id = "dib", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "South Central Dinka", - Comment = null, - }, - new() - { - Id = "dic", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lakota Dida", - Comment = null, - }, - new() - { - Id = "did", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Didinga", - Comment = null, - }, - new() - { - Id = "dif", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Dieri", - Comment = null, - }, - new() - { - Id = "dig", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Digo", - Comment = null, - }, - new() - { - Id = "dih", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kumiai", - Comment = null, - }, - new() - { - Id = "dii", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dimbong", - Comment = null, - }, - new() - { - Id = "dij", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dai", - Comment = null, - }, - new() - { - Id = "dik", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southwestern Dinka", - Comment = null, - }, - new() - { - Id = "dil", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dilling", - Comment = null, - }, - new() - { - Id = "dim", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dime", - Comment = null, - }, - new() - { - Id = "din", - Part2B = "din", - Part2T = "din", - Part1 = null, - Scope = "M", - LanguageType = "L", - RefName = "Dinka", - Comment = null, - }, - new() - { - Id = "dio", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dibo", - Comment = null, - }, - new() - { - Id = "dip", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northeastern Dinka", - Comment = null, - }, - new() - { - Id = "diq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dimli (individual language)", - Comment = null, - }, - new() - { - Id = "dir", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dirim", - Comment = null, - }, - new() - { - Id = "dis", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dimasa", - Comment = null, - }, - new() - { - Id = "diu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Diriku", - Comment = null, - }, - new() - { - Id = "div", - Part2B = "div", - Part2T = "div", - Part1 = "dv", - Scope = "I", - LanguageType = "L", - RefName = "Dhivehi", - Comment = null, - }, - new() - { - Id = "diw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northwestern Dinka", - Comment = null, - }, - new() - { - Id = "dix", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dixon Reef", - Comment = null, - }, - new() - { - Id = "diy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Diuwe", - Comment = null, - }, - new() - { - Id = "diz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ding", - Comment = null, - }, - new() - { - Id = "dja", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Djadjawurrung", - Comment = null, - }, - new() - { - Id = "djb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Djinba", - Comment = null, - }, - new() - { - Id = "djc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dar Daju Daju", - Comment = null, - }, - new() - { - Id = "djd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Djamindjung", - Comment = null, - }, - new() - { - Id = "dje", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zarma", - Comment = null, - }, - new() - { - Id = "djf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Djangun", - Comment = null, - }, - new() - { - Id = "dji", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Djinang", - Comment = null, - }, - new() - { - Id = "djj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Djeebbana", - Comment = null, - }, - new() - { - Id = "djk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Maroon Creole", - Comment = null, - }, - new() - { - Id = "djm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jamsay Dogon", - Comment = null, - }, - new() - { - Id = "djn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jawoyn", - Comment = null, - }, - new() - { - Id = "djo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jangkang", - Comment = null, - }, - new() - { - Id = "djr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Djambarrpuyngu", - Comment = null, - }, - new() - { - Id = "dju", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kapriman", - Comment = null, - }, - new() - { - Id = "djw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Djawi", - Comment = null, - }, - new() - { - Id = "dka", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dakpakha", - Comment = null, - }, - new() - { - Id = "dkg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kadung", - Comment = null, - }, - new() - { - Id = "dkk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dakka", - Comment = null, - }, - new() - { - Id = "dkr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kuijau", - Comment = null, - }, - new() - { - Id = "dks", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southeastern Dinka", - Comment = null, - }, - new() - { - Id = "dkx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mazagway", - Comment = null, - }, - new() - { - Id = "dlg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dolgan", - Comment = null, - }, - new() - { - Id = "dlk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dahalik", - Comment = null, - }, - new() - { - Id = "dlm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Dalmatian", - Comment = null, - }, - new() - { - Id = "dln", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Darlong", - Comment = null, - }, - new() - { - Id = "dma", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Duma", - Comment = null, - }, - new() - { - Id = "dmb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mombo Dogon", - Comment = null, - }, - new() - { - Id = "dmc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gavak", - Comment = null, - }, - new() - { - Id = "dmd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Madhi Madhi", - Comment = null, - }, - new() - { - Id = "dme", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dugwor", - Comment = null, - }, - new() - { - Id = "dmf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Medefaidrin", - Comment = null, - }, - new() - { - Id = "dmg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Upper Kinabatangan", - Comment = null, - }, - new() - { - Id = "dmk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Domaaki", - Comment = null, - }, - new() - { - Id = "dml", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dameli", - Comment = null, - }, - new() - { - Id = "dmm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dama", - Comment = null, - }, - new() - { - Id = "dmo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kemedzung", - Comment = null, - }, - new() - { - Id = "dmr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "East Damar", - Comment = null, - }, - new() - { - Id = "dms", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dampelas", - Comment = null, - }, - new() - { - Id = "dmu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dubu", - Comment = null, - }, - new() - { - Id = "dmv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dumpas", - Comment = null, - }, - new() - { - Id = "dmw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mudburra", - Comment = null, - }, - new() - { - Id = "dmx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dema", - Comment = null, - }, - new() - { - Id = "dmy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Demta", - Comment = null, - }, - new() - { - Id = "dna", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Upper Grand Valley Dani", - Comment = null, - }, - new() - { - Id = "dnd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Daonda", - Comment = null, - }, - new() - { - Id = "dne", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ndendeule", - Comment = null, - }, - new() - { - Id = "dng", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dungan", - Comment = null, - }, - new() - { - Id = "dni", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lower Grand Valley Dani", - Comment = null, - }, - new() - { - Id = "dnj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dan", - Comment = null, - }, - new() - { - Id = "dnk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dengka", - Comment = null, - }, - new() - { - Id = "dnn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dzùùngoo", - Comment = null, - }, - new() - { - Id = "dno", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ndrulo", - Comment = null, - }, - new() - { - Id = "dnr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Danaru", - Comment = null, - }, - new() - { - Id = "dnt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mid Grand Valley Dani", - Comment = null, - }, - new() - { - Id = "dnu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Danau", - Comment = null, - }, - new() - { - Id = "dnv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Danu", - Comment = null, - }, - new() - { - Id = "dnw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Dani", - Comment = null, - }, - new() - { - Id = "dny", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dení", - Comment = null, - }, - new() - { - Id = "doa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dom", - Comment = null, - }, - new() - { - Id = "dob", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dobu", - Comment = null, - }, - new() - { - Id = "doc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Dong", - Comment = null, - }, - new() - { - Id = "doe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Doe", - Comment = null, - }, - new() - { - Id = "dof", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Domu", - Comment = null, - }, - new() - { - Id = "doh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dong", - Comment = null, - }, - new() - { - Id = "doi", - Part2B = "doi", - Part2T = "doi", - Part1 = null, - Scope = "M", - LanguageType = "L", - RefName = "Dogri (macrolanguage)", - Comment = null, - }, - new() - { - Id = "dok", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dondo", - Comment = null, - }, - new() - { - Id = "dol", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Doso", - Comment = null, - }, - new() - { - Id = "don", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Toura (Papua New Guinea)", - Comment = null, - }, - new() - { - Id = "doo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dongo", - Comment = null, - }, - new() - { - Id = "dop", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lukpa", - Comment = null, - }, - new() - { - Id = "doq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dominican Sign Language", - Comment = null, - }, - new() - { - Id = "dor", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dori'o", - Comment = null, - }, - new() - { - Id = "dos", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dogosé", - Comment = null, - }, - new() - { - Id = "dot", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dass", - Comment = null, - }, - new() - { - Id = "dov", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dombe", - Comment = null, - }, - new() - { - Id = "dow", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Doyayo", - Comment = null, - }, - new() - { - Id = "dox", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bussa", - Comment = null, - }, - new() - { - Id = "doy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dompo", - Comment = null, - }, - new() - { - Id = "doz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dorze", - Comment = null, - }, - new() - { - Id = "dpp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Papar", - Comment = null, - }, - new() - { - Id = "drb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dair", - Comment = null, - }, - new() - { - Id = "drc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Minderico", - Comment = null, - }, - new() - { - Id = "drd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Darmiya", - Comment = null, - }, - new() - { - Id = "dre", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dolpo", - Comment = null, - }, - new() - { - Id = "drg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rungus", - Comment = null, - }, - new() - { - Id = "dri", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "C'Lela", - Comment = null, - }, - new() - { - Id = "drl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Paakantyi", - Comment = null, - }, - new() - { - Id = "drn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "West Damar", - Comment = null, - }, - new() - { - Id = "dro", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Daro-Matu Melanau", - Comment = null, - }, - new() - { - Id = "drq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Dura", - Comment = null, - }, - new() - { - Id = "drs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gedeo", - Comment = null, - }, - new() - { - Id = "drt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Drents", - Comment = null, - }, - new() - { - Id = "dru", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rukai", - Comment = null, - }, - new() - { - Id = "dry", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Darai", - Comment = null, - }, - new() - { - Id = "dsb", - Part2B = "dsb", - Part2T = "dsb", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lower Sorbian", - Comment = null, - }, - new() - { - Id = "dse", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dutch Sign Language", - Comment = null, - }, - new() - { - Id = "dsh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Daasanach", - Comment = null, - }, - new() - { - Id = "dsi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Disa", - Comment = null, - }, - new() - { - Id = "dsk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dokshi", - Comment = null, - }, - new() - { - Id = "dsl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Danish Sign Language", - Comment = null, - }, - new() - { - Id = "dsn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Dusner", - Comment = null, - }, - new() - { - Id = "dso", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Desiya", - Comment = null, - }, - new() - { - Id = "dsq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tadaksahak", - Comment = null, - }, - new() - { - Id = "dsz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mardin Sign Language", - Comment = null, - }, - new() - { - Id = "dta", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Daur", - Comment = null, - }, - new() - { - Id = "dtb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Labuk-Kinabatangan Kadazan", - Comment = null, - }, - new() - { - Id = "dtd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ditidaht", - Comment = null, - }, - new() - { - Id = "dth", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Adithinngithigh", - Comment = null, - }, - new() - { - Id = "dti", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ana Tinga Dogon", - Comment = null, - }, - new() - { - Id = "dtk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tene Kan Dogon", - Comment = null, - }, - new() - { - Id = "dtm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tomo Kan Dogon", - Comment = null, - }, - new() - { - Id = "dtn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Daatsʼíin", - Comment = null, - }, - new() - { - Id = "dto", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tommo So Dogon", - Comment = null, - }, - new() - { - Id = "dtp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kadazan Dusun", - Comment = null, - }, - new() - { - Id = "dtr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lotud", - Comment = null, - }, - new() - { - Id = "dts", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Toro So Dogon", - Comment = null, - }, - new() - { - Id = "dtt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Toro Tegu Dogon", - Comment = null, - }, - new() - { - Id = "dtu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tebul Ure Dogon", - Comment = null, - }, - new() - { - Id = "dty", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dotyali", - Comment = null, - }, - new() - { - Id = "dua", - Part2B = "dua", - Part2T = "dua", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Duala", - Comment = null, - }, - new() - { - Id = "dub", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dubli", - Comment = null, - }, - new() - { - Id = "duc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Duna", - Comment = null, - }, - new() - { - Id = "due", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Umiray Dumaget Agta", - Comment = null, - }, - new() - { - Id = "duf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dumbea", - Comment = null, - }, - new() - { - Id = "dug", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Duruma", - Comment = null, - }, - new() - { - Id = "duh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dungra Bhil", - Comment = null, - }, - new() - { - Id = "dui", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dumun", - Comment = null, - }, - new() - { - Id = "duk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Uyajitaya", - Comment = null, - }, - new() - { - Id = "dul", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Alabat Island Agta", - Comment = null, - }, - new() - { - Id = "dum", - Part2B = "dum", - Part2T = "dum", - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Middle Dutch (ca. 1050-1350)", - Comment = null, - }, - new() - { - Id = "dun", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dusun Deyah", - Comment = null, - }, - new() - { - Id = "duo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dupaninan Agta", - Comment = null, - }, - new() - { - Id = "dup", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Duano", - Comment = null, - }, - new() - { - Id = "duq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dusun Malang", - Comment = null, - }, - new() - { - Id = "dur", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dii", - Comment = null, - }, - new() - { - Id = "dus", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dumi", - Comment = null, - }, - new() - { - Id = "duu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Drung", - Comment = null, - }, - new() - { - Id = "duv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Duvle", - Comment = null, - }, - new() - { - Id = "duw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dusun Witu", - Comment = null, - }, - new() - { - Id = "dux", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Duungooma", - Comment = null, - }, - new() - { - Id = "duy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Dicamay Agta", - Comment = null, - }, - new() - { - Id = "duz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Duli-Gey", - Comment = null, - }, - new() - { - Id = "dva", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Duau", - Comment = null, - }, - new() - { - Id = "dwa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Diri", - Comment = null, - }, - new() - { - Id = "dwk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dawik Kui", - Comment = null, - }, - new() - { - Id = "dwr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dawro", - Comment = null, - }, - new() - { - Id = "dws", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "C", - RefName = "Dutton World Speedwords", - Comment = null, - }, - new() - { - Id = "dwu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dhuwal", - Comment = null, - }, - new() - { - Id = "dww", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dawawa", - Comment = null, - }, - new() - { - Id = "dwy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dhuwaya", - Comment = null, - }, - new() - { - Id = "dwz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dewas Rai", - Comment = null, - }, - new() - { - Id = "dya", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dyan", - Comment = null, - }, - new() - { - Id = "dyb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Dyaberdyaber", - Comment = null, - }, - new() - { - Id = "dyd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Dyugun", - Comment = null, - }, - new() - { - Id = "dyg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Villa Viciosa Agta", - Comment = null, - }, - new() - { - Id = "dyi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Djimini Senoufo", - Comment = null, - }, - new() - { - Id = "dyl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bhutanese Sign Language", - Comment = null, - }, - new() - { - Id = "dym", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yanda Dom Dogon", - Comment = null, - }, - new() - { - Id = "dyn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dyangadi", - Comment = null, - }, - new() - { - Id = "dyo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jola-Fonyi", - Comment = null, - }, - new() - { - Id = "dyr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dyarim", - Comment = null, - }, - new() - { - Id = "dyu", - Part2B = "dyu", - Part2T = "dyu", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dyula", - Comment = null, - }, - new() - { - Id = "dyy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Djabugay", - Comment = null, - }, - new() - { - Id = "dza", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tunzu", - Comment = null, - }, - new() - { - Id = "dzd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Daza", - Comment = null, - }, - new() - { - Id = "dze", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Djiwarli", - Comment = null, - }, - new() - { - Id = "dzg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dazaga", - Comment = null, - }, - new() - { - Id = "dzl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dzalakha", - Comment = null, - }, - new() - { - Id = "dzn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dzando", - Comment = null, - }, - new() - { - Id = "dzo", - Part2B = "dzo", - Part2T = "dzo", - Part1 = "dz", - Scope = "I", - LanguageType = "L", - RefName = "Dzongkha", - Comment = null, - }, - new() - { - Id = "eaa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Karenggapa", - Comment = null, - }, - new() - { - Id = "ebc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Beginci", - Comment = null, - }, - new() - { - Id = "ebg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ebughu", - Comment = null, - }, - new() - { - Id = "ebk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Bontok", - Comment = null, - }, - new() - { - Id = "ebo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Teke-Ebo", - Comment = null, - }, - new() - { - Id = "ebr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ebrié", - Comment = null, - }, - new() - { - Id = "ebu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Embu", - Comment = null, - }, - new() - { - Id = "ecr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Eteocretan", - Comment = null, - }, - new() - { - Id = "ecs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ecuadorian Sign Language", - Comment = null, - }, - new() - { - Id = "ecy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Eteocypriot", - Comment = null, - }, - new() - { - Id = "eee", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "E", - Comment = null, - }, - new() - { - Id = "efa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Efai", - Comment = null, - }, - new() - { - Id = "efe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Efe", - Comment = null, - }, - new() - { - Id = "efi", - Part2B = "efi", - Part2T = "efi", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Efik", - Comment = null, - }, - new() - { - Id = "ega", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ega", - Comment = null, - }, - new() - { - Id = "egl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Emilian", - Comment = null, - }, - new() - { - Id = "egm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Benamanga", - Comment = null, - }, - new() - { - Id = "ego", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eggon", - Comment = null, - }, - new() - { - Id = "egy", - Part2B = "egy", - Part2T = "egy", - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Egyptian (Ancient)", - Comment = null, - }, - new() - { - Id = "ehs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Miyakubo Sign Language", - Comment = null, - }, - new() - { - Id = "ehu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ehueun", - Comment = null, - }, - new() - { - Id = "eip", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eipomek", - Comment = null, - }, - new() - { - Id = "eit", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eitiep", - Comment = null, - }, - new() - { - Id = "eiv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Askopan", - Comment = null, - }, - new() - { - Id = "eja", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ejamat", - Comment = null, - }, - new() - { - Id = "eka", - Part2B = "eka", - Part2T = "eka", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ekajuk", - Comment = null, - }, - new() - { - Id = "eke", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ekit", - Comment = null, - }, - new() - { - Id = "ekg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ekari", - Comment = null, - }, - new() - { - Id = "eki", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eki", - Comment = null, - }, - new() - { - Id = "ekk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Standard Estonian", - Comment = null, - }, - new() - { - Id = "ekl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kol (Bangladesh)", - Comment = null, - }, - new() - { - Id = "ekm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Elip", - Comment = null, - }, - new() - { - Id = "eko", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Koti", - Comment = null, - }, - new() - { - Id = "ekp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ekpeye", - Comment = null, - }, - new() - { - Id = "ekr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yace", - Comment = null, - }, - new() - { - Id = "eky", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Kayah", - Comment = null, - }, - new() - { - Id = "ele", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Elepi", - Comment = null, - }, - new() - { - Id = "elh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "El Hugeirat", - Comment = null, - }, - new() - { - Id = "eli", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Nding", - Comment = null, - }, - new() - { - Id = "elk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Elkei", - Comment = null, - }, - new() - { - Id = "ell", - Part2B = "gre", - Part2T = "ell", - Part1 = "el", - Scope = "I", - LanguageType = "L", - RefName = "Modern Greek (1453-)", - Comment = null, - }, - new() - { - Id = "elm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eleme", - Comment = null, - }, - new() - { - Id = "elo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "El Molo", - Comment = null, - }, - new() - { - Id = "elu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Elu", - Comment = null, - }, - new() - { - Id = "elx", - Part2B = "elx", - Part2T = "elx", - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Elamite", - Comment = null, - }, - new() - { - Id = "ema", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Emai-Iuleha-Ora", - Comment = null, - }, - new() - { - Id = "emb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Embaloh", - Comment = null, - }, - new() - { - Id = "eme", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Emerillon", - Comment = null, - }, - new() - { - Id = "emg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Meohang", - Comment = null, - }, - new() - { - Id = "emi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mussau-Emira", - Comment = null, - }, - new() - { - Id = "emk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Maninkakan", - Comment = null, - }, - new() - { - Id = "emm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Mamulique", - Comment = null, - }, - new() - { - Id = "emn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eman", - Comment = null, - }, - new() - { - Id = "emp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Emberá", - Comment = null, - }, - new() - { - Id = "emq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Minyag", - Comment = null, - }, - new() - { - Id = "ems", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pacific Gulf Yupik", - Comment = null, - }, - new() - { - Id = "emu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Muria", - Comment = null, - }, - new() - { - Id = "emw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Emplawas", - Comment = null, - }, - new() - { - Id = "emx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Erromintxela", - Comment = null, - }, - new() - { - Id = "emy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Epigraphic Mayan", - Comment = null, - }, - new() - { - Id = "emz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mbessa", - Comment = null, - }, - new() - { - Id = "ena", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Apali", - Comment = null, - }, - new() - { - Id = "enb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Markweeta", - Comment = null, - }, - new() - { - Id = "enc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "En", - Comment = null, - }, - new() - { - Id = "end", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ende", - Comment = null, - }, - new() - { - Id = "enf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Forest Enets", - Comment = null, - }, - new() - { - Id = "eng", - Part2B = "eng", - Part2T = "eng", - Part1 = "en", - Scope = "I", - LanguageType = "L", - RefName = "English", - Comment = null, - }, - new() - { - Id = "enh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tundra Enets", - Comment = null, - }, - new() - { - Id = "enl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Enlhet", - Comment = null, - }, - new() - { - Id = "enm", - Part2B = "enm", - Part2T = "enm", - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Middle English (1100-1500)", - Comment = null, - }, - new() - { - Id = "enn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Engenni", - Comment = null, - }, - new() - { - Id = "eno", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Enggano", - Comment = null, - }, - new() - { - Id = "enq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Enga", - Comment = null, - }, - new() - { - Id = "enr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Emumu", - Comment = null, - }, - new() - { - Id = "enu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Enu", - Comment = null, - }, - new() - { - Id = "env", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Enwan (Edo State)", - Comment = null, - }, - new() - { - Id = "enw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Enwan (Akwa Ibom State)", - Comment = null, - }, - new() - { - Id = "enx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Enxet", - Comment = null, - }, - new() - { - Id = "eot", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Beti (Côte d'Ivoire)", - Comment = null, - }, - new() - { - Id = "epi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Epie", - Comment = null, - }, - new() - { - Id = "epo", - Part2B = "epo", - Part2T = "epo", - Part1 = "eo", - Scope = "I", - LanguageType = "C", - RefName = "Esperanto", - Comment = null, - }, - new() - { - Id = "era", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eravallan", - Comment = null, - }, - new() - { - Id = "erg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sie", - Comment = null, - }, - new() - { - Id = "erh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eruwa", - Comment = null, - }, - new() - { - Id = "eri", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ogea", - Comment = null, - }, - new() - { - Id = "erk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "South Efate", - Comment = null, - }, - new() - { - Id = "ero", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Horpa", - Comment = null, - }, - new() - { - Id = "err", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Erre", - Comment = null, - }, - new() - { - Id = "ers", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ersu", - Comment = null, - }, - new() - { - Id = "ert", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eritai", - Comment = null, - }, - new() - { - Id = "erw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Erokwanas", - Comment = null, - }, - new() - { - Id = "ese", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ese Ejja", - Comment = null, - }, - new() - { - Id = "esg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aheri Gondi", - Comment = null, - }, - new() - { - Id = "esh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eshtehardi", - Comment = null, - }, - new() - { - Id = "esi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "North Alaskan Inupiatun", - Comment = null, - }, - new() - { - Id = "esk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northwest Alaska Inupiatun", - Comment = null, - }, - new() - { - Id = "esl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Egypt Sign Language", - Comment = null, - }, - new() - { - Id = "esm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Esuma", - Comment = null, - }, - new() - { - Id = "esn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Salvadoran Sign Language", - Comment = null, - }, - new() - { - Id = "eso", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Estonian Sign Language", - Comment = null, - }, - new() - { - Id = "esq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Esselen", - Comment = null, - }, - new() - { - Id = "ess", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Central Siberian Yupik", - Comment = null, - }, - new() - { - Id = "est", - Part2B = "est", - Part2T = "est", - Part1 = "et", - Scope = "M", - LanguageType = "L", - RefName = "Estonian", - Comment = null, - }, - new() - { - Id = "esu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Central Yupik", - Comment = null, - }, - new() - { - Id = "esy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eskayan", - Comment = null, - }, - new() - { - Id = "etb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Etebi", - Comment = null, - }, - new() - { - Id = "etc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Etchemin", - Comment = null, - }, - new() - { - Id = "eth", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ethiopian Sign Language", - Comment = null, - }, - new() - { - Id = "etn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eton (Vanuatu)", - Comment = null, - }, - new() - { - Id = "eto", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eton (Cameroon)", - Comment = null, - }, - new() - { - Id = "etr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Edolo", - Comment = null, - }, - new() - { - Id = "ets", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yekhee", - Comment = null, - }, - new() - { - Id = "ett", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Etruscan", - Comment = null, - }, - new() - { - Id = "etu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ejagham", - Comment = null, - }, - new() - { - Id = "etx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eten", - Comment = null, - }, - new() - { - Id = "etz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Semimi", - Comment = null, - }, - new() - { - Id = "eud", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Eudeve", - Comment = null, - }, - new() - { - Id = "eus", - Part2B = "baq", - Part2T = "eus", - Part1 = "eu", - Scope = "I", - LanguageType = "L", - RefName = "Basque", - Comment = null, - }, - new() - { - Id = "eve", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Even", - Comment = null, - }, - new() - { - Id = "evh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Uvbie", - Comment = null, - }, - new() - { - Id = "evn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Evenki", - Comment = null, - }, - new() - { - Id = "ewe", - Part2B = "ewe", - Part2T = "ewe", - Part1 = "ee", - Scope = "I", - LanguageType = "L", - RefName = "Ewe", - Comment = null, - }, - new() - { - Id = "ewo", - Part2B = "ewo", - Part2T = "ewo", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ewondo", - Comment = null, - }, - new() - { - Id = "ext", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Extremaduran", - Comment = null, - }, - new() - { - Id = "eya", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Eyak", - Comment = null, - }, - new() - { - Id = "eyo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Keiyo", - Comment = null, - }, - new() - { - Id = "eza", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ezaa", - Comment = null, - }, - new() - { - Id = "eze", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Uzekwe", - Comment = null, - }, - new() - { - Id = "faa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Fasu", - Comment = null, - }, - new() - { - Id = "fab", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Fa d'Ambu", - Comment = null, - }, - new() - { - Id = "fad", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wagi", - Comment = null, - }, - new() - { - Id = "faf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Fagani", - Comment = null, - }, - new() - { - Id = "fag", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Finongan", - Comment = null, - }, - new() - { - Id = "fah", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Baissa Fali", - Comment = null, - }, - new() - { - Id = "fai", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Faiwol", - Comment = null, - }, - new() - { - Id = "faj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Faita", - Comment = null, - }, - new() - { - Id = "fak", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Fang (Cameroon)", - Comment = null, - }, - new() - { - Id = "fal", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "South Fali", - Comment = null, - }, - new() - { - Id = "fam", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Fam", - Comment = null, - }, - new() - { - Id = "fan", - Part2B = "fan", - Part2T = "fan", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Fang (Equatorial Guinea)", - Comment = null, - }, - new() - { - Id = "fao", - Part2B = "fao", - Part2T = "fao", - Part1 = "fo", - Scope = "I", - LanguageType = "L", - RefName = "Faroese", - Comment = null, - }, - new() - { - Id = "fap", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Paloor", - Comment = null, - }, - new() - { - Id = "far", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Fataleka", - Comment = null, - }, - new() - { - Id = "fas", - Part2B = "per", - Part2T = "fas", - Part1 = "fa", - Scope = "M", - LanguageType = "L", - RefName = "Persian", - Comment = null, - }, - new() - { - Id = "fat", - Part2B = "fat", - Part2T = "fat", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Fanti", - Comment = null, - }, - new() - { - Id = "fau", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Fayu", - Comment = null, - }, - new() - { - Id = "fax", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Fala", - Comment = null, - }, - new() - { - Id = "fay", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southwestern Fars", - Comment = null, - }, - new() - { - Id = "faz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northwestern Fars", - Comment = null, - }, - new() - { - Id = "fbl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "West Albay Bikol", - Comment = null, - }, - new() - { - Id = "fcs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Quebec Sign Language", - Comment = null, - }, - new() - { - Id = "fer", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Feroge", - Comment = null, - }, - new() - { - Id = "ffi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Foia Foia", - Comment = null, - }, - new() - { - Id = "ffm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maasina Fulfulde", - Comment = null, - }, - new() - { - Id = "fgr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Fongoro", - Comment = null, - }, - new() - { - Id = "fia", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nobiin", - Comment = null, - }, - new() - { - Id = "fie", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Fyer", - Comment = null, - }, - new() - { - Id = "fif", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Faifi", - Comment = null, - }, - new() - { - Id = "fij", - Part2B = "fij", - Part2T = "fij", - Part1 = "fj", - Scope = "I", - LanguageType = "L", - RefName = "Fijian", - Comment = null, - }, - new() - { - Id = "fil", - Part2B = "fil", - Part2T = "fil", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Filipino", - Comment = null, - }, - new() - { - Id = "fin", - Part2B = "fin", - Part2T = "fin", - Part1 = "fi", - Scope = "I", - LanguageType = "L", - RefName = "Finnish", - Comment = null, - }, - new() - { - Id = "fip", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Fipa", - Comment = null, - }, - new() - { - Id = "fir", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Firan", - Comment = null, - }, - new() - { - Id = "fit", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tornedalen Finnish", - Comment = null, - }, - new() - { - Id = "fiw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Fiwaga", - Comment = null, - }, - new() - { - Id = "fkk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kirya-Konzəl", - Comment = null, - }, - new() - { - Id = "fkv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kven Finnish", - Comment = null, - }, - new() - { - Id = "fla", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kalispel-Pend d'Oreille", - Comment = null, - }, - new() - { - Id = "flh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Foau", - Comment = null, - }, - new() - { - Id = "fli", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Fali", - Comment = null, - }, - new() - { - Id = "fll", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "North Fali", - Comment = null, - }, - new() - { - Id = "fln", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Flinders Island", - Comment = null, - }, - new() - { - Id = "flr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Fuliiru", - Comment = null, - }, - new() - { - Id = "fly", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Flaaitaal", - Comment = null, - }, - new() - { - Id = "fmp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Fe'fe'", - Comment = null, - }, - new() - { - Id = "fmu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Far Western Muria", - Comment = null, - }, - new() - { - Id = "fnb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Fanbak", - Comment = null, - }, - new() - { - Id = "fng", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Fanagalo", - Comment = null, - }, - new() - { - Id = "fni", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Fania", - Comment = null, - }, - new() - { - Id = "fod", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Foodo", - Comment = null, - }, - new() - { - Id = "foi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Foi", - Comment = null, - }, - new() - { - Id = "fom", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Foma", - Comment = null, - }, - new() - { - Id = "fon", - Part2B = "fon", - Part2T = "fon", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Fon", - Comment = null, - }, - new() - { - Id = "for", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Fore", - Comment = null, - }, - new() - { - Id = "fos", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Siraya", - Comment = null, - }, - new() - { - Id = "fpe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Fernando Po Creole English", - Comment = null, - }, - new() - { - Id = "fqs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Fas", - Comment = null, - }, - new() - { - Id = "fra", - Part2B = "fre", - Part2T = "fra", - Part1 = "fr", - Scope = "I", - LanguageType = "L", - RefName = "French", - Comment = null, - }, - new() - { - Id = "frc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cajun French", - Comment = null, - }, - new() - { - Id = "frd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Fordata", - Comment = null, - }, - new() - { - Id = "frk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Frankish", - Comment = null, - }, - new() - { - Id = "frm", - Part2B = "frm", - Part2T = "frm", - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Middle French (ca. 1400-1600)", - Comment = null, - }, - new() - { - Id = "fro", - Part2B = "fro", - Part2T = "fro", - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Old French (842-ca. 1400)", - Comment = null, - }, - new() - { - Id = "frp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Arpitan", - Comment = null, - }, - new() - { - Id = "frq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Forak", - Comment = null, - }, - new() - { - Id = "frr", - Part2B = "frr", - Part2T = "frr", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Frisian", - Comment = null, - }, - new() - { - Id = "frs", - Part2B = "frs", - Part2T = "frs", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Frisian", - Comment = null, - }, - new() - { - Id = "frt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Fortsenal", - Comment = null, - }, - new() - { - Id = "fry", - Part2B = "fry", - Part2T = "fry", - Part1 = "fy", - Scope = "I", - LanguageType = "L", - RefName = "Western Frisian", - Comment = null, - }, - new() - { - Id = "fse", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Finnish Sign Language", - Comment = null, - }, - new() - { - Id = "fsl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "French Sign Language", - Comment = null, - }, - new() - { - Id = "fss", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Finland-Swedish Sign Language", - Comment = null, - }, - new() - { - Id = "fub", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Adamawa Fulfulde", - Comment = null, - }, - new() - { - Id = "fuc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pulaar", - Comment = null, - }, - new() - { - Id = "fud", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "East Futuna", - Comment = null, - }, - new() - { - Id = "fue", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Borgu Fulfulde", - Comment = null, - }, - new() - { - Id = "fuf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pular", - Comment = null, - }, - new() - { - Id = "fuh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Niger Fulfulde", - Comment = null, - }, - new() - { - Id = "fui", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bagirmi Fulfulde", - Comment = null, - }, - new() - { - Id = "fuj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ko", - Comment = null, - }, - new() - { - Id = "ful", - Part2B = "ful", - Part2T = "ful", - Part1 = "ff", - Scope = "M", - LanguageType = "L", - RefName = "Fulah", - Comment = null, - }, - new() - { - Id = "fum", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Fum", - Comment = null, - }, - new() - { - Id = "fun", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Fulniô", - Comment = null, - }, - new() - { - Id = "fuq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Central-Eastern Niger Fulfulde", - Comment = null, - }, - new() - { - Id = "fur", - Part2B = "fur", - Part2T = "fur", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Friulian", - Comment = null, - }, - new() - { - Id = "fut", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Futuna-Aniwa", - Comment = null, - }, - new() - { - Id = "fuu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Furu", - Comment = null, - }, - new() - { - Id = "fuv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nigerian Fulfulde", - Comment = null, - }, - new() - { - Id = "fuy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Fuyug", - Comment = null, - }, - new() - { - Id = "fvr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Fur", - Comment = null, - }, - new() - { - Id = "fwa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Fwâi", - Comment = null, - }, - new() - { - Id = "fwe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Fwe", - Comment = null, - }, - new() - { - Id = "gaa", - Part2B = "gaa", - Part2T = "gaa", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ga", - Comment = null, - }, - new() - { - Id = "gab", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gabri", - Comment = null, - }, - new() - { - Id = "gac", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mixed Great Andamanese", - Comment = null, - }, - new() - { - Id = "gad", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gaddang", - Comment = null, - }, - new() - { - Id = "gae", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Guarequena", - Comment = null, - }, - new() - { - Id = "gaf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gende", - Comment = null, - }, - new() - { - Id = "gag", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gagauz", - Comment = null, - }, - new() - { - Id = "gah", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Alekano", - Comment = null, - }, - new() - { - Id = "gai", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Borei", - Comment = null, - }, - new() - { - Id = "gaj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gadsup", - Comment = null, - }, - new() - { - Id = "gak", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gamkonora", - Comment = null, - }, - new() - { - Id = "gal", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Galolen", - Comment = null, - }, - new() - { - Id = "gam", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kandawo", - Comment = null, - }, - new() - { - Id = "gan", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gan Chinese", - Comment = null, - }, - new() - { - Id = "gao", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gants", - Comment = null, - }, - new() - { - Id = "gap", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gal", - Comment = null, - }, - new() - { - Id = "gaq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gata'", - Comment = null, - }, - new() - { - Id = "gar", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Galeya", - Comment = null, - }, - new() - { - Id = "gas", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Adiwasi Garasia", - Comment = null, - }, - new() - { - Id = "gat", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kenati", - Comment = null, - }, - new() - { - Id = "gau", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mudhili Gadaba", - Comment = null, - }, - new() - { - Id = "gaw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nobonob", - Comment = null, - }, - new() - { - Id = "gax", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Borana-Arsi-Guji Oromo", - Comment = null, - }, - new() - { - Id = "gay", - Part2B = "gay", - Part2T = "gay", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gayo", - Comment = null, - }, - new() - { - Id = "gaz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "West Central Oromo", - Comment = null, - }, - new() - { - Id = "gba", - Part2B = "gba", - Part2T = "gba", - Part1 = null, - Scope = "M", - LanguageType = "L", - RefName = "Gbaya (Central African Republic)", - Comment = null, - }, - new() - { - Id = "gbb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kaytetye", - Comment = null, - }, - new() - { - Id = "gbd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Karajarri", - Comment = null, - }, - new() - { - Id = "gbe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Niksek", - Comment = null, - }, - new() - { - Id = "gbf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gaikundi", - Comment = null, - }, - new() - { - Id = "gbg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gbanziri", - Comment = null, - }, - new() - { - Id = "gbh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Defi Gbe", - Comment = null, - }, - new() - { - Id = "gbi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Galela", - Comment = null, - }, - new() - { - Id = "gbj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bodo Gadaba", - Comment = null, - }, - new() - { - Id = "gbk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gaddi", - Comment = null, - }, - new() - { - Id = "gbl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gamit", - Comment = null, - }, - new() - { - Id = "gbm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Garhwali", - Comment = null, - }, - new() - { - Id = "gbn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mo'da", - Comment = null, - }, - new() - { - Id = "gbo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Grebo", - Comment = null, - }, - new() - { - Id = "gbp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gbaya-Bossangoa", - Comment = null, - }, - new() - { - Id = "gbq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gbaya-Bozoum", - Comment = null, - }, - new() - { - Id = "gbr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gbagyi", - Comment = null, - }, - new() - { - Id = "gbs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gbesi Gbe", - Comment = null, - }, - new() - { - Id = "gbu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gagadu", - Comment = null, - }, - new() - { - Id = "gbv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gbanu", - Comment = null, - }, - new() - { - Id = "gbw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gabi-Gabi", - Comment = null, - }, - new() - { - Id = "gbx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Xwla Gbe", - Comment = null, - }, - new() - { - Id = "gby", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gbari", - Comment = null, - }, - new() - { - Id = "gbz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zoroastrian Dari", - Comment = null, - }, - new() - { - Id = "gcc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mali", - Comment = null, - }, - new() - { - Id = "gcd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Ganggalida", - Comment = null, - }, - new() - { - Id = "gce", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Galice", - Comment = null, - }, - new() - { - Id = "gcf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Guadeloupean Creole French", - Comment = null, - }, - new() - { - Id = "gcl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Grenadian Creole English", - Comment = null, - }, - new() - { - Id = "gcn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gaina", - Comment = null, - }, - new() - { - Id = "gcr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Guianese Creole French", - Comment = null, - }, - new() - { - Id = "gct", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Colonia Tovar German", - Comment = null, - }, - new() - { - Id = "gda", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gade Lohar", - Comment = null, - }, - new() - { - Id = "gdb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pottangi Ollar Gadaba", - Comment = null, - }, - new() - { - Id = "gdc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Gugu Badhun", - Comment = null, - }, - new() - { - Id = "gdd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gedaged", - Comment = null, - }, - new() - { - Id = "gde", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gude", - Comment = null, - }, - new() - { - Id = "gdf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Guduf-Gava", - Comment = null, - }, - new() - { - Id = "gdg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ga'dang", - Comment = null, - }, - new() - { - Id = "gdh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gadjerawang", - Comment = null, - }, - new() - { - Id = "gdi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gundi", - Comment = null, - }, - new() - { - Id = "gdj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gurdjar", - Comment = null, - }, - new() - { - Id = "gdk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gadang", - Comment = null, - }, - new() - { - Id = "gdl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dirasha", - Comment = null, - }, - new() - { - Id = "gdm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Laal", - Comment = null, - }, - new() - { - Id = "gdn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Umanakaina", - Comment = null, - }, - new() - { - Id = "gdo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ghodoberi", - Comment = null, - }, - new() - { - Id = "gdq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mehri", - Comment = null, - }, - new() - { - Id = "gdr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wipi", - Comment = null, - }, - new() - { - Id = "gds", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ghandruk Sign Language", - Comment = null, - }, - new() - { - Id = "gdt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Kungardutyi", - Comment = null, - }, - new() - { - Id = "gdu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gudu", - Comment = null, - }, - new() - { - Id = "gdx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Godwari", - Comment = null, - }, - new() - { - Id = "gea", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Geruma", - Comment = null, - }, - new() - { - Id = "geb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kire", - Comment = null, - }, - new() - { - Id = "gec", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gboloo Grebo", - Comment = null, - }, - new() - { - Id = "ged", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gade", - Comment = null, - }, - new() - { - Id = "gef", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gerai", - Comment = null, - }, - new() - { - Id = "geg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gengle", - Comment = null, - }, - new() - { - Id = "geh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hutterite German", - Comment = null, - }, - new() - { - Id = "gei", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gebe", - Comment = null, - }, - new() - { - Id = "gej", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gen", - Comment = null, - }, - new() - { - Id = "gek", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ywom", - Comment = null, - }, - new() - { - Id = "gel", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "ut-Ma'in", - Comment = null, - }, - new() - { - Id = "geq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Geme", - Comment = null, - }, - new() - { - Id = "ges", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Geser-Gorom", - Comment = null, - }, - new() - { - Id = "gev", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eviya", - Comment = null, - }, - new() - { - Id = "gew", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gera", - Comment = null, - }, - new() - { - Id = "gex", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Garre", - Comment = null, - }, - new() - { - Id = "gey", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Enya", - Comment = null, - }, - new() - { - Id = "gez", - Part2B = "gez", - Part2T = "gez", - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Geez", - Comment = null, - }, - new() - { - Id = "gfk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Patpatar", - Comment = null, - }, - new() - { - Id = "gft", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Gafat", - Comment = null, - }, - new() - { - Id = "gga", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gao", - Comment = null, - }, - new() - { - Id = "ggb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gbii", - Comment = null, - }, - new() - { - Id = "ggd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Gugadj", - Comment = null, - }, - new() - { - Id = "gge", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gurr-goni", - Comment = null, - }, - new() - { - Id = "ggg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gurgula", - Comment = null, - }, - new() - { - Id = "ggk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Kungarakany", - Comment = null, - }, - new() - { - Id = "ggl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ganglau", - Comment = null, - }, - new() - { - Id = "ggt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gitua", - Comment = null, - }, - new() - { - Id = "ggu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gagu", - Comment = null, - }, - new() - { - Id = "ggw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gogodala", - Comment = null, - }, - new() - { - Id = "gha", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ghadamès", - Comment = null, - }, - new() - { - Id = "ghc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Hiberno-Scottish Gaelic", - Comment = null, - }, - new() - { - Id = "ghe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Ghale", - Comment = null, - }, - new() - { - Id = "ghh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Ghale", - Comment = null, - }, - new() - { - Id = "ghk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Geko Karen", - Comment = null, - }, - new() - { - Id = "ghl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ghulfan", - Comment = null, - }, - new() - { - Id = "ghn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ghanongga", - Comment = null, - }, - new() - { - Id = "gho", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ghomara", - Comment = null, - }, - new() - { - Id = "ghr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ghera", - Comment = null, - }, - new() - { - Id = "ghs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Guhu-Samane", - Comment = null, - }, - new() - { - Id = "ght", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kuke", - Comment = null, - }, - new() - { - Id = "gia", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kija", - Comment = null, - }, - new() - { - Id = "gib", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gibanawa", - Comment = null, - }, - new() - { - Id = "gic", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gail", - Comment = null, - }, - new() - { - Id = "gid", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gidar", - Comment = null, - }, - new() - { - Id = "gie", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gaɓogbo", - Comment = null, - }, - new() - { - Id = "gig", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Goaria", - Comment = null, - }, - new() - { - Id = "gih", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Githabul", - Comment = null, - }, - new() - { - Id = "gii", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Girirra", - Comment = null, - }, - new() - { - Id = "gil", - Part2B = "gil", - Part2T = "gil", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gilbertese", - Comment = null, - }, - new() - { - Id = "gim", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gimi (Eastern Highlands)", - Comment = null, - }, - new() - { - Id = "gin", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hinukh", - Comment = null, - }, - new() - { - Id = "gip", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gimi (West New Britain)", - Comment = null, - }, - new() - { - Id = "giq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Green Gelao", - Comment = null, - }, - new() - { - Id = "gir", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Red Gelao", - Comment = null, - }, - new() - { - Id = "gis", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "North Giziga", - Comment = null, - }, - new() - { - Id = "git", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gitxsan", - Comment = null, - }, - new() - { - Id = "giu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mulao", - Comment = null, - }, - new() - { - Id = "giw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "White Gelao", - Comment = null, - }, - new() - { - Id = "gix", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gilima", - Comment = null, - }, - new() - { - Id = "giy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Giyug", - Comment = null, - }, - new() - { - Id = "giz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "South Giziga", - Comment = null, - }, - new() - { - Id = "gjk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kachi Koli", - Comment = null, - }, - new() - { - Id = "gjm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Gunditjmara", - Comment = null, - }, - new() - { - Id = "gjn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gonja", - Comment = null, - }, - new() - { - Id = "gjr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gurindji Kriol", - Comment = null, - }, - new() - { - Id = "gju", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gujari", - Comment = null, - }, - new() - { - Id = "gka", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Guya", - Comment = null, - }, - new() - { - Id = "gkd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Magɨ (Madang Province)", - Comment = null, - }, - new() - { - Id = "gke", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ndai", - Comment = null, - }, - new() - { - Id = "gkn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gokana", - Comment = null, - }, - new() - { - Id = "gko", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Kok-Nar", - Comment = null, - }, - new() - { - Id = "gkp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Guinea Kpelle", - Comment = null, - }, - new() - { - Id = "gku", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "ǂUngkue", - Comment = null, - }, - new() - { - Id = "gla", - Part2B = "gla", - Part2T = "gla", - Part1 = "gd", - Scope = "I", - LanguageType = "L", - RefName = "Scottish Gaelic", - Comment = null, - }, - new() - { - Id = "glb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Belning", - Comment = null, - }, - new() - { - Id = "glc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bon Gula", - Comment = null, - }, - new() - { - Id = "gld", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nanai", - Comment = null, - }, - new() - { - Id = "gle", - Part2B = "gle", - Part2T = "gle", - Part1 = "ga", - Scope = "I", - LanguageType = "L", - RefName = "Irish", - Comment = null, - }, - new() - { - Id = "glg", - Part2B = "glg", - Part2T = "glg", - Part1 = "gl", - Scope = "I", - LanguageType = "L", - RefName = "Galician", - Comment = null, - }, - new() - { - Id = "glh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northwest Pashai", - Comment = null, - }, - new() - { - Id = "glj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gula Iro", - Comment = null, - }, - new() - { - Id = "glk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gilaki", - Comment = null, - }, - new() - { - Id = "gll", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Garlali", - Comment = null, - }, - new() - { - Id = "glo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Galambu", - Comment = null, - }, - new() - { - Id = "glr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Glaro-Twabo", - Comment = null, - }, - new() - { - Id = "glu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gula (Chad)", - Comment = null, - }, - new() - { - Id = "glv", - Part2B = "glv", - Part2T = "glv", - Part1 = "gv", - Scope = "I", - LanguageType = "L", - RefName = "Manx", - Comment = null, - }, - new() - { - Id = "glw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Glavda", - Comment = null, - }, - new() - { - Id = "gly", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Gule", - Comment = null, - }, - new() - { - Id = "gma", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Gambera", - Comment = null, - }, - new() - { - Id = "gmb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gula'alaa", - Comment = null, - }, - new() - { - Id = "gmd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mághdì", - Comment = null, - }, - new() - { - Id = "gmg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Magɨyi", - Comment = null, - }, - new() - { - Id = "gmh", - Part2B = "gmh", - Part2T = "gmh", - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Middle High German (ca. 1050-1500)", - Comment = null, - }, - new() - { - Id = "gml", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Middle Low German", - Comment = null, - }, - new() - { - Id = "gmm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gbaya-Mbodomo", - Comment = null, - }, - new() - { - Id = "gmn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gimnime", - Comment = null, - }, - new() - { - Id = "gmr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mirning", - Comment = null, - }, - new() - { - Id = "gmu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gumalu", - Comment = null, - }, - new() - { - Id = "gmv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gamo", - Comment = null, - }, - new() - { - Id = "gmx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Magoma", - Comment = null, - }, - new() - { - Id = "gmy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Mycenaean Greek", - Comment = null, - }, - new() - { - Id = "gmz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mgbolizhia", - Comment = null, - }, - new() - { - Id = "gna", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kaansa", - Comment = null, - }, - new() - { - Id = "gnb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gangte", - Comment = null, - }, - new() - { - Id = "gnc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Guanche", - Comment = null, - }, - new() - { - Id = "gnd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zulgo-Gemzek", - Comment = null, - }, - new() - { - Id = "gne", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ganang", - Comment = null, - }, - new() - { - Id = "gng", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngangam", - Comment = null, - }, - new() - { - Id = "gnh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lere", - Comment = null, - }, - new() - { - Id = "gni", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gooniyandi", - Comment = null, - }, - new() - { - Id = "gnj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngen", - Comment = null, - }, - new() - { - Id = "gnk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "ǁGana", - Comment = null, - }, - new() - { - Id = "gnl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Gangulu", - Comment = null, - }, - new() - { - Id = "gnm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ginuman", - Comment = null, - }, - new() - { - Id = "gnn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gumatj", - Comment = null, - }, - new() - { - Id = "gno", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Gondi", - Comment = null, - }, - new() - { - Id = "gnq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gana", - Comment = null, - }, - new() - { - Id = "gnr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Gureng Gureng", - Comment = null, - }, - new() - { - Id = "gnt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Guntai", - Comment = null, - }, - new() - { - Id = "gnu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gnau", - Comment = null, - }, - new() - { - Id = "gnw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Bolivian Guaraní", - Comment = null, - }, - new() - { - Id = "gnz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ganzi", - Comment = null, - }, - new() - { - Id = "goa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Guro", - Comment = null, - }, - new() - { - Id = "gob", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Playero", - Comment = null, - }, - new() - { - Id = "goc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gorakor", - Comment = null, - }, - new() - { - Id = "god", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Godié", - Comment = null, - }, - new() - { - Id = "goe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gongduk", - Comment = null, - }, - new() - { - Id = "gof", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gofa", - Comment = null, - }, - new() - { - Id = "gog", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gogo", - Comment = null, - }, - new() - { - Id = "goh", - Part2B = "goh", - Part2T = "goh", - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Old High German (ca. 750-1050)", - Comment = null, - }, - new() - { - Id = "goi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gobasi", - Comment = null, - }, - new() - { - Id = "goj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gowlan", - Comment = null, - }, - new() - { - Id = "gok", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gowli", - Comment = null, - }, - new() - { - Id = "gol", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gola", - Comment = null, - }, - new() - { - Id = "gom", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Goan Konkani", - Comment = null, - }, - new() - { - Id = "gon", - Part2B = "gon", - Part2T = "gon", - Part1 = null, - Scope = "M", - LanguageType = "L", - RefName = "Gondi", - Comment = null, - }, - new() - { - Id = "goo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gone Dau", - Comment = null, - }, - new() - { - Id = "gop", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yeretuar", - Comment = null, - }, - new() - { - Id = "goq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gorap", - Comment = null, - }, - new() - { - Id = "gor", - Part2B = "gor", - Part2T = "gor", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gorontalo", - Comment = null, - }, - new() - { - Id = "gos", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gronings", - Comment = null, - }, - new() - { - Id = "got", - Part2B = "got", - Part2T = "got", - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Gothic", - Comment = null, - }, - new() - { - Id = "gou", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gavar", - Comment = null, - }, - new() - { - Id = "gov", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Goo", - Comment = null, - }, - new() - { - Id = "gow", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gorowa", - Comment = null, - }, - new() - { - Id = "gox", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gobu", - Comment = null, - }, - new() - { - Id = "goy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Goundo", - Comment = null, - }, - new() - { - Id = "goz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gozarkhani", - Comment = null, - }, - new() - { - Id = "gpa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gupa-Abawa", - Comment = null, - }, - new() - { - Id = "gpe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ghanaian Pidgin English", - Comment = null, - }, - new() - { - Id = "gpn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Taiap", - Comment = null, - }, - new() - { - Id = "gqa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ga'anda", - Comment = null, - }, - new() - { - Id = "gqi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Guiqiong", - Comment = null, - }, - new() - { - Id = "gqn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Guana (Brazil)", - Comment = null, - }, - new() - { - Id = "gqr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gor", - Comment = null, - }, - new() - { - Id = "gqu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Qau", - Comment = null, - }, - new() - { - Id = "gra", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rajput Garasia", - Comment = null, - }, - new() - { - Id = "grb", - Part2B = "grb", - Part2T = "grb", - Part1 = null, - Scope = "M", - LanguageType = "L", - RefName = "Grebo", - Comment = null, - }, - new() - { - Id = "grc", - Part2B = "grc", - Part2T = "grc", - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Ancient Greek (to 1453)", - Comment = null, - }, - new() - { - Id = "grd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Guruntum-Mbaaru", - Comment = null, - }, - new() - { - Id = "grg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Madi", - Comment = null, - }, - new() - { - Id = "grh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gbiri-Niragu", - Comment = null, - }, - new() - { - Id = "gri", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ghari", - Comment = null, - }, - new() - { - Id = "grj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Grebo", - Comment = null, - }, - new() - { - Id = "grm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kota Marudu Talantang", - Comment = null, - }, - new() - { - Id = "grn", - Part2B = "grn", - Part2T = "grn", - Part1 = "gn", - Scope = "M", - LanguageType = "L", - RefName = "Guarani", - Comment = null, - }, - new() - { - Id = "gro", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Groma", - Comment = null, - }, - new() - { - Id = "grq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gorovu", - Comment = null, - }, - new() - { - Id = "grr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Taznatit", - Comment = null, - }, - new() - { - Id = "grs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gresi", - Comment = null, - }, - new() - { - Id = "grt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Garo", - Comment = null, - }, - new() - { - Id = "gru", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kistane", - Comment = null, - }, - new() - { - Id = "grv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Central Grebo", - Comment = null, - }, - new() - { - Id = "grw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gweda", - Comment = null, - }, - new() - { - Id = "grx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Guriaso", - Comment = null, - }, - new() - { - Id = "gry", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Barclayville Grebo", - Comment = null, - }, - new() - { - Id = "grz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Guramalum", - Comment = null, - }, - new() - { - Id = "gse", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ghanaian Sign Language", - Comment = null, - }, - new() - { - Id = "gsg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "German Sign Language", - Comment = null, - }, - new() - { - Id = "gsl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gusilay", - Comment = null, - }, - new() - { - Id = "gsm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Guatemalan Sign Language", - Comment = null, - }, - new() - { - Id = "gsn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nema", - Comment = null, - }, - new() - { - Id = "gso", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southwest Gbaya", - Comment = null, - }, - new() - { - Id = "gsp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wasembo", - Comment = null, - }, - new() - { - Id = "gss", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Greek Sign Language", - Comment = null, - }, - new() - { - Id = "gsw", - Part2B = "gsw", - Part2T = "gsw", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Swiss German", - Comment = null, - }, - new() - { - Id = "gta", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Guató", - Comment = null, - }, - new() - { - Id = "gtu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Aghu-Tharnggala", - Comment = null, - }, - new() - { - Id = "gua", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Shiki", - Comment = null, - }, - new() - { - Id = "gub", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Guajajára", - Comment = null, - }, - new() - { - Id = "guc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wayuu", - Comment = null, - }, - new() - { - Id = "gud", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yocoboué Dida", - Comment = null, - }, - new() - { - Id = "gue", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gurindji", - Comment = null, - }, - new() - { - Id = "guf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gupapuyngu", - Comment = null, - }, - new() - { - Id = "gug", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Paraguayan Guaraní", - Comment = null, - }, - new() - { - Id = "guh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Guahibo", - Comment = null, - }, - new() - { - Id = "gui", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Bolivian Guaraní", - Comment = null, - }, - new() - { - Id = "guj", - Part2B = "guj", - Part2T = "guj", - Part1 = "gu", - Scope = "I", - LanguageType = "L", - RefName = "Gujarati", - Comment = null, - }, - new() - { - Id = "guk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gumuz", - Comment = null, - }, - new() - { - Id = "gul", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sea Island Creole English", - Comment = null, - }, - new() - { - Id = "gum", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Guambiano", - Comment = null, - }, - new() - { - Id = "gun", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mbyá Guaraní", - Comment = null, - }, - new() - { - Id = "guo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Guayabero", - Comment = null, - }, - new() - { - Id = "gup", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gunwinggu", - Comment = null, - }, - new() - { - Id = "guq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aché", - Comment = null, - }, - new() - { - Id = "gur", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Farefare", - Comment = null, - }, - new() - { - Id = "gus", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Guinean Sign Language", - Comment = null, - }, - new() - { - Id = "gut", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maléku Jaíka", - Comment = null, - }, - new() - { - Id = "guu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yanomamö", - Comment = null, - }, - new() - { - Id = "guw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gun", - Comment = null, - }, - new() - { - Id = "gux", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gourmanchéma", - Comment = null, - }, - new() - { - Id = "guz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gusii", - Comment = null, - }, - new() - { - Id = "gva", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Guana (Paraguay)", - Comment = null, - }, - new() - { - Id = "gvc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Guanano", - Comment = null, - }, - new() - { - Id = "gve", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Duwet", - Comment = null, - }, - new() - { - Id = "gvf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Golin", - Comment = null, - }, - new() - { - Id = "gvj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Guajá", - Comment = null, - }, - new() - { - Id = "gvl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gulay", - Comment = null, - }, - new() - { - Id = "gvm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gurmana", - Comment = null, - }, - new() - { - Id = "gvn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kuku-Yalanji", - Comment = null, - }, - new() - { - Id = "gvo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gavião Do Jiparaná", - Comment = null, - }, - new() - { - Id = "gvp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pará Gavião", - Comment = null, - }, - new() - { - Id = "gvr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gurung", - Comment = null, - }, - new() - { - Id = "gvs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gumawana", - Comment = null, - }, - new() - { - Id = "gvy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Guyani", - Comment = null, - }, - new() - { - Id = "gwa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mbato", - Comment = null, - }, - new() - { - Id = "gwb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gwa", - Comment = null, - }, - new() - { - Id = "gwc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gawri", - Comment = null, - }, - new() - { - Id = "gwd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gawwada", - Comment = null, - }, - new() - { - Id = "gwe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gweno", - Comment = null, - }, - new() - { - Id = "gwf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gowro", - Comment = null, - }, - new() - { - Id = "gwg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Moo", - Comment = null, - }, - new() - { - Id = "gwi", - Part2B = "gwi", - Part2T = "gwi", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gwichʼin", - Comment = null, - }, - new() - { - Id = "gwj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "ǀGwi", - Comment = null, - }, - new() - { - Id = "gwm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Awngthim", - Comment = null, - }, - new() - { - Id = "gwn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gwandara", - Comment = null, - }, - new() - { - Id = "gwr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gwere", - Comment = null, - }, - new() - { - Id = "gwt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gawar-Bati", - Comment = null, - }, - new() - { - Id = "gwu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Guwamu", - Comment = null, - }, - new() - { - Id = "gww", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kwini", - Comment = null, - }, - new() - { - Id = "gwx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gua", - Comment = null, - }, - new() - { - Id = "gxx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wè Southern", - Comment = null, - }, - new() - { - Id = "gya", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northwest Gbaya", - Comment = null, - }, - new() - { - Id = "gyb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Garus", - Comment = null, - }, - new() - { - Id = "gyd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kayardild", - Comment = null, - }, - new() - { - Id = "gye", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gyem", - Comment = null, - }, - new() - { - Id = "gyf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Gungabula", - Comment = null, - }, - new() - { - Id = "gyg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gbayi", - Comment = null, - }, - new() - { - Id = "gyi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gyele", - Comment = null, - }, - new() - { - Id = "gyl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gayil", - Comment = null, - }, - new() - { - Id = "gym", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngäbere", - Comment = null, - }, - new() - { - Id = "gyn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Guyanese Creole English", - Comment = null, - }, - new() - { - Id = "gyo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gyalsumdo", - Comment = null, - }, - new() - { - Id = "gyr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Guarayu", - Comment = null, - }, - new() - { - Id = "gyy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Gunya", - Comment = null, - }, - new() - { - Id = "gyz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Geji", - Comment = null, - }, - new() - { - Id = "gza", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ganza", - Comment = null, - }, - new() - { - Id = "gzi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gazi", - Comment = null, - }, - new() - { - Id = "gzn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gane", - Comment = null, - }, - new() - { - Id = "haa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hän", - Comment = null, - }, - new() - { - Id = "hab", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hanoi Sign Language", - Comment = null, - }, - new() - { - Id = "hac", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gurani", - Comment = null, - }, - new() - { - Id = "had", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hatam", - Comment = null, - }, - new() - { - Id = "hae", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Oromo", - Comment = null, - }, - new() - { - Id = "haf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Haiphong Sign Language", - Comment = null, - }, - new() - { - Id = "hag", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hanga", - Comment = null, - }, - new() - { - Id = "hah", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hahon", - Comment = null, - }, - new() - { - Id = "hai", - Part2B = "hai", - Part2T = "hai", - Part1 = null, - Scope = "M", - LanguageType = "L", - RefName = "Haida", - Comment = null, - }, - new() - { - Id = "haj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hajong", - Comment = null, - }, - new() - { - Id = "hak", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hakka Chinese", - Comment = null, - }, - new() - { - Id = "hal", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Halang", - Comment = null, - }, - new() - { - Id = "ham", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hewa", - Comment = null, - }, - new() - { - Id = "han", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hangaza", - Comment = null, - }, - new() - { - Id = "hao", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hakö", - Comment = null, - }, - new() - { - Id = "hap", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hupla", - Comment = null, - }, - new() - { - Id = "haq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ha", - Comment = null, - }, - new() - { - Id = "har", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Harari", - Comment = null, - }, - new() - { - Id = "has", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Haisla", - Comment = null, - }, - new() - { - Id = "hat", - Part2B = "hat", - Part2T = "hat", - Part1 = "ht", - Scope = "I", - LanguageType = "L", - RefName = "Haitian", - Comment = null, - }, - new() - { - Id = "hau", - Part2B = "hau", - Part2T = "hau", - Part1 = "ha", - Scope = "I", - LanguageType = "L", - RefName = "Hausa", - Comment = null, - }, - new() - { - Id = "hav", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Havu", - Comment = null, - }, - new() - { - Id = "haw", - Part2B = "haw", - Part2T = "haw", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hawaiian", - Comment = null, - }, - new() - { - Id = "hax", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Haida", - Comment = null, - }, - new() - { - Id = "hay", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Haya", - Comment = null, - }, - new() - { - Id = "haz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hazaragi", - Comment = null, - }, - new() - { - Id = "hba", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hamba", - Comment = null, - }, - new() - { - Id = "hbb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Huba", - Comment = null, - }, - new() - { - Id = "hbn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Heiban", - Comment = null, - }, - new() - { - Id = "hbo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Ancient Hebrew", - Comment = null, - }, - new() - { - Id = "hbs", - Part2B = null, - Part2T = null, - Part1 = "sh", - Scope = "M", - LanguageType = "L", - RefName = "Serbo-Croatian", - Comment = "Code element for 639-1 has been deprecated", - }, - new() - { - Id = "hbu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Habu", - Comment = null, - }, - new() - { - Id = "hca", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Andaman Creole Hindi", - Comment = null, - }, - new() - { - Id = "hch", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Huichol", - Comment = null, - }, - new() - { - Id = "hdn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Haida", - Comment = null, - }, - new() - { - Id = "hds", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Honduras Sign Language", - Comment = null, - }, - new() - { - Id = "hdy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hadiyya", - Comment = null, - }, - new() - { - Id = "hea", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Qiandong Miao", - Comment = null, - }, - new() - { - Id = "heb", - Part2B = "heb", - Part2T = "heb", - Part1 = "he", - Scope = "I", - LanguageType = "L", - RefName = "Hebrew", - Comment = null, - }, - new() - { - Id = "hed", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Herdé", - Comment = null, - }, - new() - { - Id = "heg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Helong", - Comment = null, - }, - new() - { - Id = "heh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hehe", - Comment = null, - }, - new() - { - Id = "hei", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Heiltsuk", - Comment = null, - }, - new() - { - Id = "hem", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hemba", - Comment = null, - }, - new() - { - Id = "her", - Part2B = "her", - Part2T = "her", - Part1 = "hz", - Scope = "I", - LanguageType = "L", - RefName = "Herero", - Comment = null, - }, - new() - { - Id = "hgm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Haiǁom", - Comment = null, - }, - new() - { - Id = "hgw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Haigwai", - Comment = null, - }, - new() - { - Id = "hhi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hoia Hoia", - Comment = null, - }, - new() - { - Id = "hhr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kerak", - Comment = null, - }, - new() - { - Id = "hhy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hoyahoya", - Comment = null, - }, - new() - { - Id = "hia", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lamang", - Comment = null, - }, - new() - { - Id = "hib", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Hibito", - Comment = null, - }, - new() - { - Id = "hid", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hidatsa", - Comment = null, - }, - new() - { - Id = "hif", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Fiji Hindi", - Comment = null, - }, - new() - { - Id = "hig", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kamwe", - Comment = null, - }, - new() - { - Id = "hih", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pamosu", - Comment = null, - }, - new() - { - Id = "hii", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hinduri", - Comment = null, - }, - new() - { - Id = "hij", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hijuk", - Comment = null, - }, - new() - { - Id = "hik", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Seit-Kaitetu", - Comment = null, - }, - new() - { - Id = "hil", - Part2B = "hil", - Part2T = "hil", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hiligaynon", - Comment = null, - }, - new() - { - Id = "hin", - Part2B = "hin", - Part2T = "hin", - Part1 = "hi", - Scope = "I", - LanguageType = "L", - RefName = "Hindi", - Comment = null, - }, - new() - { - Id = "hio", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tsoa", - Comment = null, - }, - new() - { - Id = "hir", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Himarimã", - Comment = null, - }, - new() - { - Id = "hit", - Part2B = "hit", - Part2T = "hit", - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Hittite", - Comment = null, - }, - new() - { - Id = "hiw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hiw", - Comment = null, - }, - new() - { - Id = "hix", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hixkaryána", - Comment = null, - }, - new() - { - Id = "hji", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Haji", - Comment = null, - }, - new() - { - Id = "hka", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kahe", - Comment = null, - }, - new() - { - Id = "hke", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hunde", - Comment = null, - }, - new() - { - Id = "hkh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Khah", - Comment = null, - }, - new() - { - Id = "hkk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hunjara-Kaina Ke", - Comment = null, - }, - new() - { - Id = "hkn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mel-Khaonh", - Comment = null, - }, - new() - { - Id = "hks", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hong Kong Sign Language", - Comment = null, - }, - new() - { - Id = "hla", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Halia", - Comment = null, - }, - new() - { - Id = "hlb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Halbi", - Comment = null, - }, - new() - { - Id = "hld", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Halang Doan", - Comment = null, - }, - new() - { - Id = "hle", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hlersu", - Comment = null, - }, - new() - { - Id = "hlt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Matu Chin", - Comment = null, - }, - new() - { - Id = "hlu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Hieroglyphic Luwian", - Comment = null, - }, - new() - { - Id = "hma", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Mashan Hmong", - Comment = null, - }, - new() - { - Id = "hmb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Humburi Senni Songhay", - Comment = null, - }, - new() - { - Id = "hmc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Central Huishui Hmong", - Comment = null, - }, - new() - { - Id = "hmd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Large Flowery Miao", - Comment = null, - }, - new() - { - Id = "hme", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Huishui Hmong", - Comment = null, - }, - new() - { - Id = "hmf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hmong Don", - Comment = null, - }, - new() - { - Id = "hmg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southwestern Guiyang Hmong", - Comment = null, - }, - new() - { - Id = "hmh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southwestern Huishui Hmong", - Comment = null, - }, - new() - { - Id = "hmi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Huishui Hmong", - Comment = null, - }, - new() - { - Id = "hmj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ge", - Comment = null, - }, - new() - { - Id = "hmk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Maek", - Comment = null, - }, - new() - { - Id = "hml", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Luopohe Hmong", - Comment = null, - }, - new() - { - Id = "hmm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Central Mashan Hmong", - Comment = null, - }, - new() - { - Id = "hmn", - Part2B = "hmn", - Part2T = "hmn", - Part1 = null, - Scope = "M", - LanguageType = "L", - RefName = "Hmong", - Comment = null, - }, - new() - { - Id = "hmo", - Part2B = "hmo", - Part2T = "hmo", - Part1 = "ho", - Scope = "I", - LanguageType = "L", - RefName = "Hiri Motu", - Comment = null, - }, - new() - { - Id = "hmp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Mashan Hmong", - Comment = null, - }, - new() - { - Id = "hmq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Qiandong Miao", - Comment = null, - }, - new() - { - Id = "hmr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hmar", - Comment = null, - }, - new() - { - Id = "hms", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Qiandong Miao", - Comment = null, - }, - new() - { - Id = "hmt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hamtai", - Comment = null, - }, - new() - { - Id = "hmu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hamap", - Comment = null, - }, - new() - { - Id = "hmv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hmong Dô", - Comment = null, - }, - new() - { - Id = "hmw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Mashan Hmong", - Comment = null, - }, - new() - { - Id = "hmy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Guiyang Hmong", - Comment = null, - }, - new() - { - Id = "hmz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hmong Shua", - Comment = null, - }, - new() - { - Id = "hna", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mina (Cameroon)", - Comment = null, - }, - new() - { - Id = "hnd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Hindko", - Comment = null, - }, - new() - { - Id = "hne", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chhattisgarhi", - Comment = null, - }, - new() - { - Id = "hng", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hungu", - Comment = null, - }, - new() - { - Id = "hnh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "ǁAni", - Comment = null, - }, - new() - { - Id = "hni", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hani", - Comment = null, - }, - new() - { - Id = "hnj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hmong Njua", - Comment = null, - }, - new() - { - Id = "hnm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hainanese", - Comment = null, - }, - new() - { - Id = "hnn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hanunoo", - Comment = null, - }, - new() - { - Id = "hno", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Hindko", - Comment = null, - }, - new() - { - Id = "hns", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Caribbean Hindustani", - Comment = null, - }, - new() - { - Id = "hnu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hung", - Comment = null, - }, - new() - { - Id = "hoa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hoava", - Comment = null, - }, - new() - { - Id = "hob", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mari (Madang Province)", - Comment = null, - }, - new() - { - Id = "hoc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ho", - Comment = null, - }, - new() - { - Id = "hod", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Holma", - Comment = null, - }, - new() - { - Id = "hoe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Horom", - Comment = null, - }, - new() - { - Id = "hoh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hobyót", - Comment = null, - }, - new() - { - Id = "hoi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Holikachuk", - Comment = null, - }, - new() - { - Id = "hoj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hadothi", - Comment = null, - }, - new() - { - Id = "hol", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Holu", - Comment = null, - }, - new() - { - Id = "hom", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Homa", - Comment = null, - }, - new() - { - Id = "hoo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Holoholo", - Comment = null, - }, - new() - { - Id = "hop", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hopi", - Comment = null, - }, - new() - { - Id = "hor", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Horo", - Comment = null, - }, - new() - { - Id = "hos", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ho Chi Minh City Sign Language", - Comment = null, - }, - new() - { - Id = "hot", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hote", - Comment = null, - }, - new() - { - Id = "hov", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hovongan", - Comment = null, - }, - new() - { - Id = "how", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Honi", - Comment = null, - }, - new() - { - Id = "hoy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Holiya", - Comment = null, - }, - new() - { - Id = "hoz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hozo", - Comment = null, - }, - new() - { - Id = "hpo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Hpon", - Comment = null, - }, - new() - { - Id = "hps", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hawai'i Sign Language (HSL)", - Comment = null, - }, - new() - { - Id = "hra", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hrangkhol", - Comment = null, - }, - new() - { - Id = "hrc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Niwer Mil", - Comment = null, - }, - new() - { - Id = "hre", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hre", - Comment = null, - }, - new() - { - Id = "hrk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Haruku", - Comment = null, - }, - new() - { - Id = "hrm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Horned Miao", - Comment = null, - }, - new() - { - Id = "hro", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Haroi", - Comment = null, - }, - new() - { - Id = "hrp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Nhirrpi", - Comment = null, - }, - new() - { - Id = "hrt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hértevin", - Comment = null, - }, - new() - { - Id = "hru", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hruso", - Comment = null, - }, - new() - { - Id = "hrv", - Part2B = "hrv", - Part2T = "hrv", - Part1 = "hr", - Scope = "I", - LanguageType = "L", - RefName = "Croatian", - Comment = null, - }, - new() - { - Id = "hrw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Warwar Feni", - Comment = null, - }, - new() - { - Id = "hrx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hunsrik", - Comment = null, - }, - new() - { - Id = "hrz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Harzani", - Comment = null, - }, - new() - { - Id = "hsb", - Part2B = "hsb", - Part2T = "hsb", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Upper Sorbian", - Comment = null, - }, - new() - { - Id = "hsh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hungarian Sign Language", - Comment = null, - }, - new() - { - Id = "hsl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hausa Sign Language", - Comment = null, - }, - new() - { - Id = "hsn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Xiang Chinese", - Comment = null, - }, - new() - { - Id = "hss", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Harsusi", - Comment = null, - }, - new() - { - Id = "hti", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Hoti", - Comment = null, - }, - new() - { - Id = "hto", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Minica Huitoto", - Comment = null, - }, - new() - { - Id = "hts", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hadza", - Comment = null, - }, - new() - { - Id = "htu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hitu", - Comment = null, - }, - new() - { - Id = "htx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Middle Hittite", - Comment = null, - }, - new() - { - Id = "hub", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Huambisa", - Comment = null, - }, - new() - { - Id = "huc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "ǂHua", - Comment = null, - }, - new() - { - Id = "hud", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Huaulu", - Comment = null, - }, - new() - { - Id = "hue", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "San Francisco Del Mar Huave", - Comment = null, - }, - new() - { - Id = "huf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Humene", - Comment = null, - }, - new() - { - Id = "hug", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Huachipaeri", - Comment = null, - }, - new() - { - Id = "huh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Huilliche", - Comment = null, - }, - new() - { - Id = "hui", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Huli", - Comment = null, - }, - new() - { - Id = "huj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Guiyang Hmong", - Comment = null, - }, - new() - { - Id = "huk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Hulung", - Comment = null, - }, - new() - { - Id = "hul", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hula", - Comment = null, - }, - new() - { - Id = "hum", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hungana", - Comment = null, - }, - new() - { - Id = "hun", - Part2B = "hun", - Part2T = "hun", - Part1 = "hu", - Scope = "I", - LanguageType = "L", - RefName = "Hungarian", - Comment = null, - }, - new() - { - Id = "huo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hu", - Comment = null, - }, - new() - { - Id = "hup", - Part2B = "hup", - Part2T = "hup", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hupa", - Comment = null, - }, - new() - { - Id = "huq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tsat", - Comment = null, - }, - new() - { - Id = "hur", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Halkomelem", - Comment = null, - }, - new() - { - Id = "hus", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Huastec", - Comment = null, - }, - new() - { - Id = "hut", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Humla", - Comment = null, - }, - new() - { - Id = "huu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Murui Huitoto", - Comment = null, - }, - new() - { - Id = "huv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "San Mateo Del Mar Huave", - Comment = null, - }, - new() - { - Id = "huw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Hukumina", - Comment = null, - }, - new() - { - Id = "hux", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nüpode Huitoto", - Comment = null, - }, - new() - { - Id = "huy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hulaulá", - Comment = null, - }, - new() - { - Id = "huz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hunzib", - Comment = null, - }, - new() - { - Id = "hvc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Haitian Vodoun Culture Language", - Comment = null, - }, - new() - { - Id = "hve", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "San Dionisio Del Mar Huave", - Comment = null, - }, - new() - { - Id = "hvk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Haveke", - Comment = null, - }, - new() - { - Id = "hvn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sabu", - Comment = null, - }, - new() - { - Id = "hvv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Santa María Del Mar Huave", - Comment = null, - }, - new() - { - Id = "hwa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wané", - Comment = null, - }, - new() - { - Id = "hwc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hawai'i Creole English", - Comment = null, - }, - new() - { - Id = "hwo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hwana", - Comment = null, - }, - new() - { - Id = "hya", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hya", - Comment = null, - }, - new() - { - Id = "hye", - Part2B = "arm", - Part2T = "hye", - Part1 = "hy", - Scope = "I", - LanguageType = "L", - RefName = "Armenian", - Comment = null, - }, - new() - { - Id = "hyw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Armenian", - Comment = null, - }, - new() - { - Id = "iai", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Iaai", - Comment = null, - }, - new() - { - Id = "ian", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Iatmul", - Comment = null, - }, - new() - { - Id = "iar", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Purari", - Comment = null, - }, - new() - { - Id = "iba", - Part2B = "iba", - Part2T = "iba", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Iban", - Comment = null, - }, - new() - { - Id = "ibb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ibibio", - Comment = null, - }, - new() - { - Id = "ibd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Iwaidja", - Comment = null, - }, - new() - { - Id = "ibe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Akpes", - Comment = null, - }, - new() - { - Id = "ibg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ibanag", - Comment = null, - }, - new() - { - Id = "ibh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bih", - Comment = null, - }, - new() - { - Id = "ibl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ibaloi", - Comment = null, - }, - new() - { - Id = "ibm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Agoi", - Comment = null, - }, - new() - { - Id = "ibn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ibino", - Comment = null, - }, - new() - { - Id = "ibo", - Part2B = "ibo", - Part2T = "ibo", - Part1 = "ig", - Scope = "I", - LanguageType = "L", - RefName = "Igbo", - Comment = null, - }, - new() - { - Id = "ibr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ibuoro", - Comment = null, - }, - new() - { - Id = "ibu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ibu", - Comment = null, - }, - new() - { - Id = "iby", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ibani", - Comment = null, - }, - new() - { - Id = "ica", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ede Ica", - Comment = null, - }, - new() - { - Id = "ich", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Etkywan", - Comment = null, - }, - new() - { - Id = "icl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Icelandic Sign Language", - Comment = null, - }, - new() - { - Id = "icr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Islander Creole English", - Comment = null, - }, - new() - { - Id = "ida", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Idakho-Isukha-Tiriki", - Comment = null, - }, - new() - { - Id = "idb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Indo-Portuguese", - Comment = null, - }, - new() - { - Id = "idc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Idon", - Comment = null, - }, - new() - { - Id = "idd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ede Idaca", - Comment = null, - }, - new() - { - Id = "ide", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Idere", - Comment = null, - }, - new() - { - Id = "idi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Idi", - Comment = null, - }, - new() - { - Id = "ido", - Part2B = "ido", - Part2T = "ido", - Part1 = "io", - Scope = "I", - LanguageType = "C", - RefName = "Ido", - Comment = null, - }, - new() - { - Id = "idr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Indri", - Comment = null, - }, - new() - { - Id = "ids", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Idesa", - Comment = null, - }, - new() - { - Id = "idt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Idaté", - Comment = null, - }, - new() - { - Id = "idu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Idoma", - Comment = null, - }, - new() - { - Id = "ifa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Amganad Ifugao", - Comment = null, - }, - new() - { - Id = "ifb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Batad Ifugao", - Comment = null, - }, - new() - { - Id = "ife", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ifè", - Comment = null, - }, - new() - { - Id = "iff", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Ifo", - Comment = null, - }, - new() - { - Id = "ifk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tuwali Ifugao", - Comment = null, - }, - new() - { - Id = "ifm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Teke-Fuumu", - Comment = null, - }, - new() - { - Id = "ifu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mayoyao Ifugao", - Comment = null, - }, - new() - { - Id = "ify", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Keley-I Kallahan", - Comment = null, - }, - new() - { - Id = "igb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ebira", - Comment = null, - }, - new() - { - Id = "ige", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Igede", - Comment = null, - }, - new() - { - Id = "igg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Igana", - Comment = null, - }, - new() - { - Id = "igl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Igala", - Comment = null, - }, - new() - { - Id = "igm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kanggape", - Comment = null, - }, - new() - { - Id = "ign", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ignaciano", - Comment = null, - }, - new() - { - Id = "igo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Isebe", - Comment = null, - }, - new() - { - Id = "igs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "C", - RefName = "Interglossa", - Comment = null, - }, - new() - { - Id = "igw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Igwe", - Comment = null, - }, - new() - { - Id = "ihb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Iha Based Pidgin", - Comment = null, - }, - new() - { - Id = "ihi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ihievbe", - Comment = null, - }, - new() - { - Id = "ihp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Iha", - Comment = null, - }, - new() - { - Id = "ihw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Bidhawal", - Comment = null, - }, - new() - { - Id = "iii", - Part2B = "iii", - Part2T = "iii", - Part1 = "ii", - Scope = "I", - LanguageType = "L", - RefName = "Sichuan Yi", - Comment = null, - }, - new() - { - Id = "iin", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Thiin", - Comment = null, - }, - new() - { - Id = "ijc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Izon", - Comment = null, - }, - new() - { - Id = "ije", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Biseni", - Comment = null, - }, - new() - { - Id = "ijj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ede Ije", - Comment = null, - }, - new() - { - Id = "ijn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kalabari", - Comment = null, - }, - new() - { - Id = "ijs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southeast Ijo", - Comment = null, - }, - new() - { - Id = "ike", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Canadian Inuktitut", - Comment = null, - }, - new() - { - Id = "ikh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ikhin-Arokho", - Comment = null, - }, - new() - { - Id = "iki", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Iko", - Comment = null, - }, - new() - { - Id = "ikk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ika", - Comment = null, - }, - new() - { - Id = "ikl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ikulu", - Comment = null, - }, - new() - { - Id = "iko", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Olulumo-Ikom", - Comment = null, - }, - new() - { - Id = "ikp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ikpeshi", - Comment = null, - }, - new() - { - Id = "ikr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Ikaranggal", - Comment = null, - }, - new() - { - Id = "iks", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Inuit Sign Language", - Comment = null, - }, - new() - { - Id = "ikt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Inuinnaqtun", - Comment = null, - }, - new() - { - Id = "iku", - Part2B = "iku", - Part2T = "iku", - Part1 = "iu", - Scope = "M", - LanguageType = "L", - RefName = "Inuktitut", - Comment = null, - }, - new() - { - Id = "ikv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Iku-Gora-Ankwa", - Comment = null, - }, - new() - { - Id = "ikw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ikwere", - Comment = null, - }, - new() - { - Id = "ikx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ik", - Comment = null, - }, - new() - { - Id = "ikz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ikizu", - Comment = null, - }, - new() - { - Id = "ila", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ile Ape", - Comment = null, - }, - new() - { - Id = "ilb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ila", - Comment = null, - }, - new() - { - Id = "ile", - Part2B = "ile", - Part2T = "ile", - Part1 = "ie", - Scope = "I", - LanguageType = "C", - RefName = "Interlingue", - Comment = null, - }, - new() - { - Id = "ilg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Garig-Ilgar", - Comment = null, - }, - new() - { - Id = "ili", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ili Turki", - Comment = null, - }, - new() - { - Id = "ilk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ilongot", - Comment = null, - }, - new() - { - Id = "ilm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Iranun (Malaysia)", - Comment = null, - }, - new() - { - Id = "ilo", - Part2B = "ilo", - Part2T = "ilo", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Iloko", - Comment = null, - }, - new() - { - Id = "ilp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Iranun (Philippines)", - Comment = null, - }, - new() - { - Id = "ils", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "International Sign", - Comment = null, - }, - new() - { - Id = "ilu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ili'uun", - Comment = null, - }, - new() - { - Id = "ilv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ilue", - Comment = null, - }, - new() - { - Id = "ima", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mala Malasar", - Comment = null, - }, - new() - { - Id = "imi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Anamgura", - Comment = null, - }, - new() - { - Id = "iml", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Miluk", - Comment = null, - }, - new() - { - Id = "imn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Imonda", - Comment = null, - }, - new() - { - Id = "imo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Imbongu", - Comment = null, - }, - new() - { - Id = "imr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Imroing", - Comment = null, - }, - new() - { - Id = "ims", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Marsian", - Comment = null, - }, - new() - { - Id = "imt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Imotong", - Comment = null, - }, - new() - { - Id = "imy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Milyan", - Comment = null, - }, - new() - { - Id = "ina", - Part2B = "ina", - Part2T = "ina", - Part1 = "ia", - Scope = "I", - LanguageType = "C", - RefName = "Interlingua (IALA)", - Comment = null, - }, - new() - { - Id = "inb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Inga", - Comment = null, - }, - new() - { - Id = "ind", - Part2B = "ind", - Part2T = "ind", - Part1 = "id", - Scope = "I", - LanguageType = "L", - RefName = "Indonesian", - Comment = null, - }, - new() - { - Id = "ing", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Degexit'an", - Comment = null, - }, - new() - { - Id = "inh", - Part2B = "inh", - Part2T = "inh", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ingush", - Comment = null, - }, - new() - { - Id = "inj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jungle Inga", - Comment = null, - }, - new() - { - Id = "inl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Indonesian Sign Language", - Comment = null, - }, - new() - { - Id = "inm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Minaean", - Comment = null, - }, - new() - { - Id = "inn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Isinai", - Comment = null, - }, - new() - { - Id = "ino", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Inoke-Yate", - Comment = null, - }, - new() - { - Id = "inp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Iñapari", - Comment = null, - }, - new() - { - Id = "ins", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Indian Sign Language", - Comment = null, - }, - new() - { - Id = "int", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Intha", - Comment = null, - }, - new() - { - Id = "inz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Ineseño", - Comment = null, - }, - new() - { - Id = "ior", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Inor", - Comment = null, - }, - new() - { - Id = "iou", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tuma-Irumu", - Comment = null, - }, - new() - { - Id = "iow", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Iowa-Oto", - Comment = null, - }, - new() - { - Id = "ipi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ipili", - Comment = null, - }, - new() - { - Id = "ipk", - Part2B = "ipk", - Part2T = "ipk", - Part1 = "ik", - Scope = "M", - LanguageType = "L", - RefName = "Inupiaq", - Comment = null, - }, - new() - { - Id = "ipo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ipiko", - Comment = null, - }, - new() - { - Id = "iqu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Iquito", - Comment = null, - }, - new() - { - Id = "iqw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ikwo", - Comment = null, - }, - new() - { - Id = "ire", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Iresim", - Comment = null, - }, - new() - { - Id = "irh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Irarutu", - Comment = null, - }, - new() - { - Id = "iri", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rigwe", - Comment = null, - }, - new() - { - Id = "irk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Iraqw", - Comment = null, - }, - new() - { - Id = "irn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Irántxe", - Comment = null, - }, - new() - { - Id = "irr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ir", - Comment = null, - }, - new() - { - Id = "iru", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Irula", - Comment = null, - }, - new() - { - Id = "irx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kamberau", - Comment = null, - }, - new() - { - Id = "iry", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Iraya", - Comment = null, - }, - new() - { - Id = "isa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Isabi", - Comment = null, - }, - new() - { - Id = "isc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Isconahua", - Comment = null, - }, - new() - { - Id = "isd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Isnag", - Comment = null, - }, - new() - { - Id = "ise", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Italian Sign Language", - Comment = null, - }, - new() - { - Id = "isg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Irish Sign Language", - Comment = null, - }, - new() - { - Id = "ish", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Esan", - Comment = null, - }, - new() - { - Id = "isi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nkem-Nkum", - Comment = null, - }, - new() - { - Id = "isk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ishkashimi", - Comment = null, - }, - new() - { - Id = "isl", - Part2B = "ice", - Part2T = "isl", - Part1 = "is", - Scope = "I", - LanguageType = "L", - RefName = "Icelandic", - Comment = null, - }, - new() - { - Id = "ism", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Masimasi", - Comment = null, - }, - new() - { - Id = "isn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Isanzu", - Comment = null, - }, - new() - { - Id = "iso", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Isoko", - Comment = null, - }, - new() - { - Id = "isr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Israeli Sign Language", - Comment = null, - }, - new() - { - Id = "ist", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Istriot", - Comment = null, - }, - new() - { - Id = "isu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Isu", - Comment = null, - }, - new() - { - Id = "isv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "C", - RefName = "Interslavic", - Comment = null, - }, - new() - { - Id = "ita", - Part2B = "ita", - Part2T = "ita", - Part1 = "it", - Scope = "I", - LanguageType = "L", - RefName = "Italian", - Comment = null, - }, - new() - { - Id = "itb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Binongan Itneg", - Comment = null, - }, - new() - { - Id = "itd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Tidung", - Comment = null, - }, - new() - { - Id = "ite", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Itene", - Comment = null, - }, - new() - { - Id = "iti", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Inlaod Itneg", - Comment = null, - }, - new() - { - Id = "itk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Judeo-Italian", - Comment = null, - }, - new() - { - Id = "itl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Itelmen", - Comment = null, - }, - new() - { - Id = "itm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Itu Mbon Uzo", - Comment = null, - }, - new() - { - Id = "ito", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Itonama", - Comment = null, - }, - new() - { - Id = "itr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Iteri", - Comment = null, - }, - new() - { - Id = "its", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Isekiri", - Comment = null, - }, - new() - { - Id = "itt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maeng Itneg", - Comment = null, - }, - new() - { - Id = "itv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Itawit", - Comment = null, - }, - new() - { - Id = "itw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ito", - Comment = null, - }, - new() - { - Id = "itx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Itik", - Comment = null, - }, - new() - { - Id = "ity", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Moyadan Itneg", - Comment = null, - }, - new() - { - Id = "itz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Itzá", - Comment = null, - }, - new() - { - Id = "ium", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Iu Mien", - Comment = null, - }, - new() - { - Id = "ivb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ibatan", - Comment = null, - }, - new() - { - Id = "ivv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ivatan", - Comment = null, - }, - new() - { - Id = "iwk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "I-Wak", - Comment = null, - }, - new() - { - Id = "iwm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Iwam", - Comment = null, - }, - new() - { - Id = "iwo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Iwur", - Comment = null, - }, - new() - { - Id = "iws", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sepik Iwam", - Comment = null, - }, - new() - { - Id = "ixc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ixcatec", - Comment = null, - }, - new() - { - Id = "ixl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ixil", - Comment = null, - }, - new() - { - Id = "iya", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Iyayu", - Comment = null, - }, - new() - { - Id = "iyo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mesaka", - Comment = null, - }, - new() - { - Id = "iyx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yaka (Congo)", - Comment = null, - }, - new() - { - Id = "izh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ingrian", - Comment = null, - }, - new() - { - Id = "izm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kizamani", - Comment = null, - }, - new() - { - Id = "izr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Izere", - Comment = null, - }, - new() - { - Id = "izz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Izii", - Comment = null, - }, - new() - { - Id = "jaa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jamamadí", - Comment = null, - }, - new() - { - Id = "jab", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hyam", - Comment = null, - }, - new() - { - Id = "jac", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Popti'", - Comment = null, - }, - new() - { - Id = "jad", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jahanka", - Comment = null, - }, - new() - { - Id = "jae", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yabem", - Comment = null, - }, - new() - { - Id = "jaf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jara", - Comment = null, - }, - new() - { - Id = "jah", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jah Hut", - Comment = null, - }, - new() - { - Id = "jaj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zazao", - Comment = null, - }, - new() - { - Id = "jak", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jakun", - Comment = null, - }, - new() - { - Id = "jal", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yalahatan", - Comment = null, - }, - new() - { - Id = "jam", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jamaican Creole English", - Comment = null, - }, - new() - { - Id = "jan", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Jandai", - Comment = null, - }, - new() - { - Id = "jao", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yanyuwa", - Comment = null, - }, - new() - { - Id = "jaq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yaqay", - Comment = null, - }, - new() - { - Id = "jas", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "New Caledonian Javanese", - Comment = null, - }, - new() - { - Id = "jat", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jakati", - Comment = null, - }, - new() - { - Id = "jau", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yaur", - Comment = null, - }, - new() - { - Id = "jav", - Part2B = "jav", - Part2T = "jav", - Part1 = "jv", - Scope = "I", - LanguageType = "L", - RefName = "Javanese", - Comment = null, - }, - new() - { - Id = "jax", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jambi Malay", - Comment = null, - }, - new() - { - Id = "jay", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yan-nhangu", - Comment = null, - }, - new() - { - Id = "jaz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jawe", - Comment = null, - }, - new() - { - Id = "jbe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Judeo-Berber", - Comment = null, - }, - new() - { - Id = "jbi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Badjiri", - Comment = null, - }, - new() - { - Id = "jbj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Arandai", - Comment = null, - }, - new() - { - Id = "jbk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Barikewa", - Comment = null, - }, - new() - { - Id = "jbm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bijim", - Comment = null, - }, - new() - { - Id = "jbn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nafusi", - Comment = null, - }, - new() - { - Id = "jbo", - Part2B = "jbo", - Part2T = "jbo", - Part1 = null, - Scope = "I", - LanguageType = "C", - RefName = "Lojban", - Comment = null, - }, - new() - { - Id = "jbr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jofotek-Bromnya", - Comment = null, - }, - new() - { - Id = "jbt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jabutí", - Comment = null, - }, - new() - { - Id = "jbu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jukun Takum", - Comment = null, - }, - new() - { - Id = "jbw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Yawijibaya", - Comment = null, - }, - new() - { - Id = "jcs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jamaican Country Sign Language", - Comment = null, - }, - new() - { - Id = "jct", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Krymchak", - Comment = null, - }, - new() - { - Id = "jda", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jad", - Comment = null, - }, - new() - { - Id = "jdg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jadgali", - Comment = null, - }, - new() - { - Id = "jdt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Judeo-Tat", - Comment = null, - }, - new() - { - Id = "jeb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jebero", - Comment = null, - }, - new() - { - Id = "jee", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jerung", - Comment = null, - }, - new() - { - Id = "jeh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jeh", - Comment = null, - }, - new() - { - Id = "jei", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yei", - Comment = null, - }, - new() - { - Id = "jek", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jeri Kuo", - Comment = null, - }, - new() - { - Id = "jel", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yelmek", - Comment = null, - }, - new() - { - Id = "jen", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dza", - Comment = null, - }, - new() - { - Id = "jer", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jere", - Comment = null, - }, - new() - { - Id = "jet", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Manem", - Comment = null, - }, - new() - { - Id = "jeu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jonkor Bourmataguil", - Comment = null, - }, - new() - { - Id = "jgb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Ngbee", - Comment = null, - }, - new() - { - Id = "jge", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Judeo-Georgian", - Comment = null, - }, - new() - { - Id = "jgk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gwak", - Comment = null, - }, - new() - { - Id = "jgo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngomba", - Comment = null, - }, - new() - { - Id = "jhi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jehai", - Comment = null, - }, - new() - { - Id = "jhs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jhankot Sign Language", - Comment = null, - }, - new() - { - Id = "jia", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jina", - Comment = null, - }, - new() - { - Id = "jib", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jibu", - Comment = null, - }, - new() - { - Id = "jic", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tol", - Comment = null, - }, - new() - { - Id = "jid", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bu (Kaduna State)", - Comment = null, - }, - new() - { - Id = "jie", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jilbe", - Comment = null, - }, - new() - { - Id = "jig", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jingulu", - Comment = null, - }, - new() - { - Id = "jih", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "sTodsde", - Comment = null, - }, - new() - { - Id = "jii", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jiiddu", - Comment = null, - }, - new() - { - Id = "jil", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jilim", - Comment = null, - }, - new() - { - Id = "jim", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jimi (Cameroon)", - Comment = null, - }, - new() - { - Id = "jio", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jiamao", - Comment = null, - }, - new() - { - Id = "jiq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Guanyinqiao", - Comment = null, - }, - new() - { - Id = "jit", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jita", - Comment = null, - }, - new() - { - Id = "jiu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Youle Jinuo", - Comment = null, - }, - new() - { - Id = "jiv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Shuar", - Comment = null, - }, - new() - { - Id = "jiy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Buyuan Jinuo", - Comment = null, - }, - new() - { - Id = "jje", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jejueo", - Comment = null, - }, - new() - { - Id = "jjr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bankal", - Comment = null, - }, - new() - { - Id = "jka", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kaera", - Comment = null, - }, - new() - { - Id = "jkm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mobwa Karen", - Comment = null, - }, - new() - { - Id = "jko", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kubo", - Comment = null, - }, - new() - { - Id = "jkp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Paku Karen", - Comment = null, - }, - new() - { - Id = "jkr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Koro (India)", - Comment = null, - }, - new() - { - Id = "jks", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Amami Koniya Sign Language", - Comment = null, - }, - new() - { - Id = "jku", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Labir", - Comment = null, - }, - new() - { - Id = "jle", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngile", - Comment = null, - }, - new() - { - Id = "jls", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jamaican Sign Language", - Comment = null, - }, - new() - { - Id = "jma", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dima", - Comment = null, - }, - new() - { - Id = "jmb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zumbun", - Comment = null, - }, - new() - { - Id = "jmc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Machame", - Comment = null, - }, - new() - { - Id = "jmd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yamdena", - Comment = null, - }, - new() - { - Id = "jmi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jimi (Nigeria)", - Comment = null, - }, - new() - { - Id = "jml", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jumli", - Comment = null, - }, - new() - { - Id = "jmn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Makuri Naga", - Comment = null, - }, - new() - { - Id = "jmr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kamara", - Comment = null, - }, - new() - { - Id = "jms", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mashi (Nigeria)", - Comment = null, - }, - new() - { - Id = "jmw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mouwase", - Comment = null, - }, - new() - { - Id = "jmx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Juxtlahuaca Mixtec", - Comment = null, - }, - new() - { - Id = "jna", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jangshung", - Comment = null, - }, - new() - { - Id = "jnd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jandavra", - Comment = null, - }, - new() - { - Id = "jng", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Yangman", - Comment = null, - }, - new() - { - Id = "jni", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Janji", - Comment = null, - }, - new() - { - Id = "jnj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yemsa", - Comment = null, - }, - new() - { - Id = "jnl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rawat", - Comment = null, - }, - new() - { - Id = "jns", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jaunsari", - Comment = null, - }, - new() - { - Id = "job", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Joba", - Comment = null, - }, - new() - { - Id = "jod", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wojenaka", - Comment = null, - }, - new() - { - Id = "jog", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jogi", - Comment = null, - }, - new() - { - Id = "jor", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Jorá", - Comment = null, - }, - new() - { - Id = "jos", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jordanian Sign Language", - Comment = null, - }, - new() - { - Id = "jow", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jowulu", - Comment = null, - }, - new() - { - Id = "jpa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Jewish Palestinian Aramaic", - Comment = null, - }, - new() - { - Id = "jpn", - Part2B = "jpn", - Part2T = "jpn", - Part1 = "ja", - Scope = "I", - LanguageType = "L", - RefName = "Japanese", - Comment = null, - }, - new() - { - Id = "jpr", - Part2B = "jpr", - Part2T = "jpr", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Judeo-Persian", - Comment = null, - }, - new() - { - Id = "jqr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jaqaru", - Comment = null, - }, - new() - { - Id = "jra", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jarai", - Comment = null, - }, - new() - { - Id = "jrb", - Part2B = "jrb", - Part2T = "jrb", - Part1 = null, - Scope = "M", - LanguageType = "L", - RefName = "Judeo-Arabic", - Comment = null, - }, - new() - { - Id = "jrr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jiru", - Comment = null, - }, - new() - { - Id = "jrt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jakattoe", - Comment = null, - }, - new() - { - Id = "jru", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Japrería", - Comment = null, - }, - new() - { - Id = "jsl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Japanese Sign Language", - Comment = null, - }, - new() - { - Id = "jua", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Júma", - Comment = null, - }, - new() - { - Id = "jub", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wannu", - Comment = null, - }, - new() - { - Id = "juc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Jurchen", - Comment = null, - }, - new() - { - Id = "jud", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Worodougou", - Comment = null, - }, - new() - { - Id = "juh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hõne", - Comment = null, - }, - new() - { - Id = "jui", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Ngadjuri", - Comment = null, - }, - new() - { - Id = "juk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wapan", - Comment = null, - }, - new() - { - Id = "jul", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jirel", - Comment = null, - }, - new() - { - Id = "jum", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jumjum", - Comment = null, - }, - new() - { - Id = "jun", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Juang", - Comment = null, - }, - new() - { - Id = "juo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jiba", - Comment = null, - }, - new() - { - Id = "jup", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hupdë", - Comment = null, - }, - new() - { - Id = "jur", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jurúna", - Comment = null, - }, - new() - { - Id = "jus", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jumla Sign Language", - Comment = null, - }, - new() - { - Id = "jut", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Jutish", - Comment = null, - }, - new() - { - Id = "juu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ju", - Comment = null, - }, - new() - { - Id = "juw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wãpha", - Comment = null, - }, - new() - { - Id = "juy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Juray", - Comment = null, - }, - new() - { - Id = "jvd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Javindo", - Comment = null, - }, - new() - { - Id = "jvn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Caribbean Javanese", - Comment = null, - }, - new() - { - Id = "jwi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jwira-Pepesa", - Comment = null, - }, - new() - { - Id = "jya", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jiarong", - Comment = null, - }, - new() - { - Id = "jye", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Judeo-Yemeni Arabic", - Comment = null, - }, - new() - { - Id = "jyy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jaya", - Comment = null, - }, - new() - { - Id = "kaa", - Part2B = "kaa", - Part2T = "kaa", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kara-Kalpak", - Comment = null, - }, - new() - { - Id = "kab", - Part2B = "kab", - Part2T = "kab", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kabyle", - Comment = null, - }, - new() - { - Id = "kac", - Part2B = "kac", - Part2T = "kac", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kachin", - Comment = null, - }, - new() - { - Id = "kad", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Adara", - Comment = null, - }, - new() - { - Id = "kae", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Ketangalan", - Comment = null, - }, - new() - { - Id = "kaf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Katso", - Comment = null, - }, - new() - { - Id = "kag", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kajaman", - Comment = null, - }, - new() - { - Id = "kah", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kara (Central African Republic)", - Comment = null, - }, - new() - { - Id = "kai", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Karekare", - Comment = null, - }, - new() - { - Id = "kaj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jju", - Comment = null, - }, - new() - { - Id = "kak", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kalanguya", - Comment = null, - }, - new() - { - Id = "kal", - Part2B = "kal", - Part2T = "kal", - Part1 = "kl", - Scope = "I", - LanguageType = "L", - RefName = "Kalaallisut", - Comment = null, - }, - new() - { - Id = "kam", - Part2B = "kam", - Part2T = "kam", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kamba (Kenya)", - Comment = null, - }, - new() - { - Id = "kan", - Part2B = "kan", - Part2T = "kan", - Part1 = "kn", - Scope = "I", - LanguageType = "L", - RefName = "Kannada", - Comment = null, - }, - new() - { - Id = "kao", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Xaasongaxango", - Comment = null, - }, - new() - { - Id = "kap", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bezhta", - Comment = null, - }, - new() - { - Id = "kaq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Capanahua", - Comment = null, - }, - new() - { - Id = "kas", - Part2B = "kas", - Part2T = "kas", - Part1 = "ks", - Scope = "I", - LanguageType = "L", - RefName = "Kashmiri", - Comment = null, - }, - new() - { - Id = "kat", - Part2B = "geo", - Part2T = "kat", - Part1 = "ka", - Scope = "I", - LanguageType = "L", - RefName = "Georgian", - Comment = null, - }, - new() - { - Id = "kau", - Part2B = "kau", - Part2T = "kau", - Part1 = "kr", - Scope = "M", - LanguageType = "L", - RefName = "Kanuri", - Comment = null, - }, - new() - { - Id = "kav", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Katukína", - Comment = null, - }, - new() - { - Id = "kaw", - Part2B = "kaw", - Part2T = "kaw", - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Kawi", - Comment = null, - }, - new() - { - Id = "kax", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kao", - Comment = null, - }, - new() - { - Id = "kay", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kamayurá", - Comment = null, - }, - new() - { - Id = "kaz", - Part2B = "kaz", - Part2T = "kaz", - Part1 = "kk", - Scope = "I", - LanguageType = "L", - RefName = "Kazakh", - Comment = null, - }, - new() - { - Id = "kba", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Kalarko", - Comment = null, - }, - new() - { - Id = "kbb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Kaxuiâna", - Comment = null, - }, - new() - { - Id = "kbc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kadiwéu", - Comment = null, - }, - new() - { - Id = "kbd", - Part2B = "kbd", - Part2T = "kbd", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kabardian", - Comment = null, - }, - new() - { - Id = "kbe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kanju", - Comment = null, - }, - new() - { - Id = "kbg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Khamba", - Comment = null, - }, - new() - { - Id = "kbh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Camsá", - Comment = null, - }, - new() - { - Id = "kbi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kaptiau", - Comment = null, - }, - new() - { - Id = "kbj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kari", - Comment = null, - }, - new() - { - Id = "kbk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Grass Koiari", - Comment = null, - }, - new() - { - Id = "kbl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kanembu", - Comment = null, - }, - new() - { - Id = "kbm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Iwal", - Comment = null, - }, - new() - { - Id = "kbn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kare (Central African Republic)", - Comment = null, - }, - new() - { - Id = "kbo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Keliko", - Comment = null, - }, - new() - { - Id = "kbp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kabiyè", - Comment = null, - }, - new() - { - Id = "kbq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kamano", - Comment = null, - }, - new() - { - Id = "kbr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kafa", - Comment = null, - }, - new() - { - Id = "kbs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kande", - Comment = null, - }, - new() - { - Id = "kbt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Abadi", - Comment = null, - }, - new() - { - Id = "kbu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kabutra", - Comment = null, - }, - new() - { - Id = "kbv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dera (Indonesia)", - Comment = null, - }, - new() - { - Id = "kbw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kaiep", - Comment = null, - }, - new() - { - Id = "kbx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ap Ma", - Comment = null, - }, - new() - { - Id = "kby", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Manga Kanuri", - Comment = null, - }, - new() - { - Id = "kbz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Duhwa", - Comment = null, - }, - new() - { - Id = "kca", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Khanty", - Comment = null, - }, - new() - { - Id = "kcb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kawacha", - Comment = null, - }, - new() - { - Id = "kcc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lubila", - Comment = null, - }, - new() - { - Id = "kcd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngkâlmpw Kanum", - Comment = null, - }, - new() - { - Id = "kce", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kaivi", - Comment = null, - }, - new() - { - Id = "kcf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ukaan", - Comment = null, - }, - new() - { - Id = "kcg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tyap", - Comment = null, - }, - new() - { - Id = "kch", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Vono", - Comment = null, - }, - new() - { - Id = "kci", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngyian", - Comment = null, - }, - new() - { - Id = "kcj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kobiana", - Comment = null, - }, - new() - { - Id = "kck", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kalanga", - Comment = null, - }, - new() - { - Id = "kcl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kela (Papua New Guinea)", - Comment = null, - }, - new() - { - Id = "kcm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gula (Central African Republic)", - Comment = null, - }, - new() - { - Id = "kcn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nubi", - Comment = null, - }, - new() - { - Id = "kco", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kinalakna", - Comment = null, - }, - new() - { - Id = "kcp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kanga", - Comment = null, - }, - new() - { - Id = "kcq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kamo", - Comment = null, - }, - new() - { - Id = "kcr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Katla", - Comment = null, - }, - new() - { - Id = "kcs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Koenoem", - Comment = null, - }, - new() - { - Id = "kct", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kaian", - Comment = null, - }, - new() - { - Id = "kcu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kami (Tanzania)", - Comment = null, - }, - new() - { - Id = "kcv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kete", - Comment = null, - }, - new() - { - Id = "kcw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kabwari", - Comment = null, - }, - new() - { - Id = "kcx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kachama-Ganjule", - Comment = null, - }, - new() - { - Id = "kcy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Korandje", - Comment = null, - }, - new() - { - Id = "kcz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Konongo", - Comment = null, - }, - new() - { - Id = "kda", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Worimi", - Comment = null, - }, - new() - { - Id = "kdc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kutu", - Comment = null, - }, - new() - { - Id = "kdd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yankunytjatjara", - Comment = null, - }, - new() - { - Id = "kde", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Makonde", - Comment = null, - }, - new() - { - Id = "kdf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mamusi", - Comment = null, - }, - new() - { - Id = "kdg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Seba", - Comment = null, - }, - new() - { - Id = "kdh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tem", - Comment = null, - }, - new() - { - Id = "kdi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kumam", - Comment = null, - }, - new() - { - Id = "kdj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Karamojong", - Comment = null, - }, - new() - { - Id = "kdk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Numèè", - Comment = null, - }, - new() - { - Id = "kdl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tsikimba", - Comment = null, - }, - new() - { - Id = "kdm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kagoma", - Comment = null, - }, - new() - { - Id = "kdn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kunda", - Comment = null, - }, - new() - { - Id = "kdp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kaningdon-Nindem", - Comment = null, - }, - new() - { - Id = "kdq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Koch", - Comment = null, - }, - new() - { - Id = "kdr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Karaim", - Comment = null, - }, - new() - { - Id = "kdt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kuy", - Comment = null, - }, - new() - { - Id = "kdu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kadaru", - Comment = null, - }, - new() - { - Id = "kdw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Koneraw", - Comment = null, - }, - new() - { - Id = "kdx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kam", - Comment = null, - }, - new() - { - Id = "kdy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Keder", - Comment = null, - }, - new() - { - Id = "kdz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kwaja", - Comment = null, - }, - new() - { - Id = "kea", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kabuverdianu", - Comment = null, - }, - new() - { - Id = "keb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kélé", - Comment = null, - }, - new() - { - Id = "kec", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Keiga", - Comment = null, - }, - new() - { - Id = "ked", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kerewe", - Comment = null, - }, - new() - { - Id = "kee", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Keres", - Comment = null, - }, - new() - { - Id = "kef", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kpessi", - Comment = null, - }, - new() - { - Id = "keg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tese", - Comment = null, - }, - new() - { - Id = "keh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Keak", - Comment = null, - }, - new() - { - Id = "kei", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kei", - Comment = null, - }, - new() - { - Id = "kej", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kadar", - Comment = null, - }, - new() - { - Id = "kek", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kekchí", - Comment = null, - }, - new() - { - Id = "kel", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kela (Democratic Republic of Congo)", - Comment = null, - }, - new() - { - Id = "kem", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kemak", - Comment = null, - }, - new() - { - Id = "ken", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kenyang", - Comment = null, - }, - new() - { - Id = "keo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kakwa", - Comment = null, - }, - new() - { - Id = "kep", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kaikadi", - Comment = null, - }, - new() - { - Id = "keq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kamar", - Comment = null, - }, - new() - { - Id = "ker", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kera", - Comment = null, - }, - new() - { - Id = "kes", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kugbo", - Comment = null, - }, - new() - { - Id = "ket", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ket", - Comment = null, - }, - new() - { - Id = "keu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Akebu", - Comment = null, - }, - new() - { - Id = "kev", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kanikkaran", - Comment = null, - }, - new() - { - Id = "kew", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "West Kewa", - Comment = null, - }, - new() - { - Id = "kex", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kukna", - Comment = null, - }, - new() - { - Id = "key", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kupia", - Comment = null, - }, - new() - { - Id = "kez", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kukele", - Comment = null, - }, - new() - { - Id = "kfa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kodava", - Comment = null, - }, - new() - { - Id = "kfb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northwestern Kolami", - Comment = null, - }, - new() - { - Id = "kfc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Konda-Dora", - Comment = null, - }, - new() - { - Id = "kfd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Korra Koraga", - Comment = null, - }, - new() - { - Id = "kfe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kota (India)", - Comment = null, - }, - new() - { - Id = "kff", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Koya", - Comment = null, - }, - new() - { - Id = "kfg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kudiya", - Comment = null, - }, - new() - { - Id = "kfh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kurichiya", - Comment = null, - }, - new() - { - Id = "kfi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kannada Kurumba", - Comment = null, - }, - new() - { - Id = "kfj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kemiehua", - Comment = null, - }, - new() - { - Id = "kfk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kinnauri", - Comment = null, - }, - new() - { - Id = "kfl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kung", - Comment = null, - }, - new() - { - Id = "kfm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Khunsari", - Comment = null, - }, - new() - { - Id = "kfn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kuk", - Comment = null, - }, - new() - { - Id = "kfo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Koro (Côte d'Ivoire)", - Comment = null, - }, - new() - { - Id = "kfp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Korwa", - Comment = null, - }, - new() - { - Id = "kfq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Korku", - Comment = null, - }, - new() - { - Id = "kfr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kachhi", - Comment = null, - }, - new() - { - Id = "kfs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bilaspuri", - Comment = null, - }, - new() - { - Id = "kft", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kanjari", - Comment = null, - }, - new() - { - Id = "kfu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Katkari", - Comment = null, - }, - new() - { - Id = "kfv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kurmukar", - Comment = null, - }, - new() - { - Id = "kfw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kharam Naga", - Comment = null, - }, - new() - { - Id = "kfx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kullu Pahari", - Comment = null, - }, - new() - { - Id = "kfy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kumaoni", - Comment = null, - }, - new() - { - Id = "kfz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Koromfé", - Comment = null, - }, - new() - { - Id = "kga", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Koyaga", - Comment = null, - }, - new() - { - Id = "kgb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kawe", - Comment = null, - }, - new() - { - Id = "kge", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Komering", - Comment = null, - }, - new() - { - Id = "kgf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kube", - Comment = null, - }, - new() - { - Id = "kgg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kusunda", - Comment = null, - }, - new() - { - Id = "kgi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Selangor Sign Language", - Comment = null, - }, - new() - { - Id = "kgj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gamale Kham", - Comment = null, - }, - new() - { - Id = "kgk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kaiwá", - Comment = null, - }, - new() - { - Id = "kgl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Kunggari", - Comment = null, - }, - new() - { - Id = "kgn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Karingani", - Comment = null, - }, - new() - { - Id = "kgo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Krongo", - Comment = null, - }, - new() - { - Id = "kgp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kaingang", - Comment = null, - }, - new() - { - Id = "kgq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kamoro", - Comment = null, - }, - new() - { - Id = "kgr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Abun", - Comment = null, - }, - new() - { - Id = "kgs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kumbainggar", - Comment = null, - }, - new() - { - Id = "kgt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Somyev", - Comment = null, - }, - new() - { - Id = "kgu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kobol", - Comment = null, - }, - new() - { - Id = "kgv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Karas", - Comment = null, - }, - new() - { - Id = "kgw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Karon Dori", - Comment = null, - }, - new() - { - Id = "kgx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kamaru", - Comment = null, - }, - new() - { - Id = "kgy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kyerung", - Comment = null, - }, - new() - { - Id = "kha", - Part2B = "kha", - Part2T = "kha", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Khasi", - Comment = null, - }, - new() - { - Id = "khb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lü", - Comment = null, - }, - new() - { - Id = "khc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tukang Besi North", - Comment = null, - }, - new() - { - Id = "khd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bädi Kanum", - Comment = null, - }, - new() - { - Id = "khe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Korowai", - Comment = null, - }, - new() - { - Id = "khf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Khuen", - Comment = null, - }, - new() - { - Id = "khg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Khams Tibetan", - Comment = null, - }, - new() - { - Id = "khh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kehu", - Comment = null, - }, - new() - { - Id = "khj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kuturmi", - Comment = null, - }, - new() - { - Id = "khk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Halh Mongolian", - Comment = null, - }, - new() - { - Id = "khl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lusi", - Comment = null, - }, - new() - { - Id = "khm", - Part2B = "khm", - Part2T = "khm", - Part1 = "km", - Scope = "I", - LanguageType = "L", - RefName = "Khmer", - Comment = null, - }, - new() - { - Id = "khn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Khandesi", - Comment = null, - }, - new() - { - Id = "kho", - Part2B = "kho", - Part2T = "kho", - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Khotanese", - Comment = null, - }, - new() - { - Id = "khp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kapori", - Comment = null, - }, - new() - { - Id = "khq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Koyra Chiini Songhay", - Comment = null, - }, - new() - { - Id = "khr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kharia", - Comment = null, - }, - new() - { - Id = "khs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kasua", - Comment = null, - }, - new() - { - Id = "kht", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Khamti", - Comment = null, - }, - new() - { - Id = "khu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nkhumbi", - Comment = null, - }, - new() - { - Id = "khv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Khvarshi", - Comment = null, - }, - new() - { - Id = "khw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Khowar", - Comment = null, - }, - new() - { - Id = "khx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kanu", - Comment = null, - }, - new() - { - Id = "khy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kele (Democratic Republic of Congo)", - Comment = null, - }, - new() - { - Id = "khz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Keapara", - Comment = null, - }, - new() - { - Id = "kia", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kim", - Comment = null, - }, - new() - { - Id = "kib", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Koalib", - Comment = null, - }, - new() - { - Id = "kic", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kickapoo", - Comment = null, - }, - new() - { - Id = "kid", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Koshin", - Comment = null, - }, - new() - { - Id = "kie", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kibet", - Comment = null, - }, - new() - { - Id = "kif", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Parbate Kham", - Comment = null, - }, - new() - { - Id = "kig", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kimaama", - Comment = null, - }, - new() - { - Id = "kih", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kilmeri", - Comment = null, - }, - new() - { - Id = "kii", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Kitsai", - Comment = null, - }, - new() - { - Id = "kij", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kilivila", - Comment = null, - }, - new() - { - Id = "kik", - Part2B = "kik", - Part2T = "kik", - Part1 = "ki", - Scope = "I", - LanguageType = "L", - RefName = "Kikuyu", - Comment = null, - }, - new() - { - Id = "kil", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kariya", - Comment = null, - }, - new() - { - Id = "kim", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Karagas", - Comment = null, - }, - new() - { - Id = "kin", - Part2B = "kin", - Part2T = "kin", - Part1 = "rw", - Scope = "I", - LanguageType = "L", - RefName = "Kinyarwanda", - Comment = null, - }, - new() - { - Id = "kio", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kiowa", - Comment = null, - }, - new() - { - Id = "kip", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sheshi Kham", - Comment = null, - }, - new() - { - Id = "kiq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kosadle", - Comment = null, - }, - new() - { - Id = "kir", - Part2B = "kir", - Part2T = "kir", - Part1 = "ky", - Scope = "I", - LanguageType = "L", - RefName = "Kirghiz", - Comment = null, - }, - new() - { - Id = "kis", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kis", - Comment = null, - }, - new() - { - Id = "kit", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Agob", - Comment = null, - }, - new() - { - Id = "kiu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kirmanjki (individual language)", - Comment = null, - }, - new() - { - Id = "kiv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kimbu", - Comment = null, - }, - new() - { - Id = "kiw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northeast Kiwai", - Comment = null, - }, - new() - { - Id = "kix", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Khiamniungan Naga", - Comment = null, - }, - new() - { - Id = "kiy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kirikiri", - Comment = null, - }, - new() - { - Id = "kiz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kisi", - Comment = null, - }, - new() - { - Id = "kja", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mlap", - Comment = null, - }, - new() - { - Id = "kjb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Q'anjob'al", - Comment = null, - }, - new() - { - Id = "kjc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Coastal Konjo", - Comment = null, - }, - new() - { - Id = "kjd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Kiwai", - Comment = null, - }, - new() - { - Id = "kje", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kisar", - Comment = null, - }, - new() - { - Id = "kjg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Khmu", - Comment = null, - }, - new() - { - Id = "kjh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Khakas", - Comment = null, - }, - new() - { - Id = "kji", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zabana", - Comment = null, - }, - new() - { - Id = "kjj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Khinalugh", - Comment = null, - }, - new() - { - Id = "kjk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Highland Konjo", - Comment = null, - }, - new() - { - Id = "kjl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Parbate Kham", - Comment = null, - }, - new() - { - Id = "kjm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kháng", - Comment = null, - }, - new() - { - Id = "kjn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kunjen", - Comment = null, - }, - new() - { - Id = "kjo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kinnauri Pahari", - Comment = null, - }, - new() - { - Id = "kjp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pwo Eastern Karen", - Comment = null, - }, - new() - { - Id = "kjq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Keres", - Comment = null, - }, - new() - { - Id = "kjr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kurudu", - Comment = null, - }, - new() - { - Id = "kjs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "East Kewa", - Comment = null, - }, - new() - { - Id = "kjt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Phrae Pwo Karen", - Comment = null, - }, - new() - { - Id = "kju", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kashaya", - Comment = null, - }, - new() - { - Id = "kjv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Kaikavian Literary Language", - Comment = null, - }, - new() - { - Id = "kjx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ramopa", - Comment = null, - }, - new() - { - Id = "kjy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Erave", - Comment = null, - }, - new() - { - Id = "kjz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bumthangkha", - Comment = null, - }, - new() - { - Id = "kka", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kakanda", - Comment = null, - }, - new() - { - Id = "kkb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kwerisa", - Comment = null, - }, - new() - { - Id = "kkc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Odoodee", - Comment = null, - }, - new() - { - Id = "kkd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kinuku", - Comment = null, - }, - new() - { - Id = "kke", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kakabe", - Comment = null, - }, - new() - { - Id = "kkf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kalaktang Monpa", - Comment = null, - }, - new() - { - Id = "kkg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mabaka Valley Kalinga", - Comment = null, - }, - new() - { - Id = "kkh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Khün", - Comment = null, - }, - new() - { - Id = "kki", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kagulu", - Comment = null, - }, - new() - { - Id = "kkj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kako", - Comment = null, - }, - new() - { - Id = "kkk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kokota", - Comment = null, - }, - new() - { - Id = "kkl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kosarek Yale", - Comment = null, - }, - new() - { - Id = "kkm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kiong", - Comment = null, - }, - new() - { - Id = "kkn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kon Keu", - Comment = null, - }, - new() - { - Id = "kko", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Karko", - Comment = null, - }, - new() - { - Id = "kkp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gugubera", - Comment = null, - }, - new() - { - Id = "kkq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kaeku", - Comment = null, - }, - new() - { - Id = "kkr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kir-Balar", - Comment = null, - }, - new() - { - Id = "kks", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Giiwo", - Comment = null, - }, - new() - { - Id = "kkt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Koi", - Comment = null, - }, - new() - { - Id = "kku", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tumi", - Comment = null, - }, - new() - { - Id = "kkv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kangean", - Comment = null, - }, - new() - { - Id = "kkw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Teke-Kukuya", - Comment = null, - }, - new() - { - Id = "kkx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kohin", - Comment = null, - }, - new() - { - Id = "kky", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Guugu Yimidhirr", - Comment = null, - }, - new() - { - Id = "kkz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kaska", - Comment = null, - }, - new() - { - Id = "kla", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Klamath-Modoc", - Comment = null, - }, - new() - { - Id = "klb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kiliwa", - Comment = null, - }, - new() - { - Id = "klc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kolbila", - Comment = null, - }, - new() - { - Id = "kld", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gamilaraay", - Comment = null, - }, - new() - { - Id = "kle", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kulung (Nepal)", - Comment = null, - }, - new() - { - Id = "klf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kendeje", - Comment = null, - }, - new() - { - Id = "klg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tagakaulo", - Comment = null, - }, - new() - { - Id = "klh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Weliki", - Comment = null, - }, - new() - { - Id = "kli", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kalumpang", - Comment = null, - }, - new() - { - Id = "klj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Khalaj", - Comment = null, - }, - new() - { - Id = "klk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kono (Nigeria)", - Comment = null, - }, - new() - { - Id = "kll", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kagan Kalagan", - Comment = null, - }, - new() - { - Id = "klm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Migum", - Comment = null, - }, - new() - { - Id = "kln", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "M", - LanguageType = "L", - RefName = "Kalenjin", - Comment = null, - }, - new() - { - Id = "klo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kapya", - Comment = null, - }, - new() - { - Id = "klp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kamasa", - Comment = null, - }, - new() - { - Id = "klq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rumu", - Comment = null, - }, - new() - { - Id = "klr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Khaling", - Comment = null, - }, - new() - { - Id = "kls", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kalasha", - Comment = null, - }, - new() - { - Id = "klt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nukna", - Comment = null, - }, - new() - { - Id = "klu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Klao", - Comment = null, - }, - new() - { - Id = "klv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maskelynes", - Comment = null, - }, - new() - { - Id = "klw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tado", - Comment = null, - }, - new() - { - Id = "klx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Koluwawa", - Comment = null, - }, - new() - { - Id = "kly", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kalao", - Comment = null, - }, - new() - { - Id = "klz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kabola", - Comment = null, - }, - new() - { - Id = "kma", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Konni", - Comment = null, - }, - new() - { - Id = "kmb", - Part2B = "kmb", - Part2T = "kmb", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kimbundu", - Comment = null, - }, - new() - { - Id = "kmc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Dong", - Comment = null, - }, - new() - { - Id = "kmd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Majukayang Kalinga", - Comment = null, - }, - new() - { - Id = "kme", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bakole", - Comment = null, - }, - new() - { - Id = "kmf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kare (Papua New Guinea)", - Comment = null, - }, - new() - { - Id = "kmg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kâte", - Comment = null, - }, - new() - { - Id = "kmh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kalam", - Comment = null, - }, - new() - { - Id = "kmi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kami (Nigeria)", - Comment = null, - }, - new() - { - Id = "kmj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kumarbhag Paharia", - Comment = null, - }, - new() - { - Id = "kmk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Limos Kalinga", - Comment = null, - }, - new() - { - Id = "kml", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tanudan Kalinga", - Comment = null, - }, - new() - { - Id = "kmm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kom (India)", - Comment = null, - }, - new() - { - Id = "kmn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Awtuw", - Comment = null, - }, - new() - { - Id = "kmo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kwoma", - Comment = null, - }, - new() - { - Id = "kmp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gimme", - Comment = null, - }, - new() - { - Id = "kmq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kwama", - Comment = null, - }, - new() - { - Id = "kmr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Kurdish", - Comment = null, - }, - new() - { - Id = "kms", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kamasau", - Comment = null, - }, - new() - { - Id = "kmt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kemtuik", - Comment = null, - }, - new() - { - Id = "kmu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kanite", - Comment = null, - }, - new() - { - Id = "kmv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Karipúna Creole French", - Comment = null, - }, - new() - { - Id = "kmw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Komo (Democratic Republic of Congo)", - Comment = null, - }, - new() - { - Id = "kmx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Waboda", - Comment = null, - }, - new() - { - Id = "kmy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Koma", - Comment = null, - }, - new() - { - Id = "kmz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Khorasani Turkish", - Comment = null, - }, - new() - { - Id = "kna", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dera (Nigeria)", - Comment = null, - }, - new() - { - Id = "knb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lubuagan Kalinga", - Comment = null, - }, - new() - { - Id = "knc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Central Kanuri", - Comment = null, - }, - new() - { - Id = "knd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Konda", - Comment = null, - }, - new() - { - Id = "kne", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kankanaey", - Comment = null, - }, - new() - { - Id = "knf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mankanya", - Comment = null, - }, - new() - { - Id = "kng", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Koongo", - Comment = null, - }, - new() - { - Id = "kni", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kanufi", - Comment = null, - }, - new() - { - Id = "knj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Kanjobal", - Comment = null, - }, - new() - { - Id = "knk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kuranko", - Comment = null, - }, - new() - { - Id = "knl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Keninjal", - Comment = null, - }, - new() - { - Id = "knm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kanamarí", - Comment = null, - }, - new() - { - Id = "knn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Konkani (individual language)", - Comment = null, - }, - new() - { - Id = "kno", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kono (Sierra Leone)", - Comment = null, - }, - new() - { - Id = "knp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kwanja", - Comment = null, - }, - new() - { - Id = "knq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kintaq", - Comment = null, - }, - new() - { - Id = "knr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kaningra", - Comment = null, - }, - new() - { - Id = "kns", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kensiu", - Comment = null, - }, - new() - { - Id = "knt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Panoan Katukína", - Comment = null, - }, - new() - { - Id = "knu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kono (Guinea)", - Comment = null, - }, - new() - { - Id = "knv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tabo", - Comment = null, - }, - new() - { - Id = "knw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kung-Ekoka", - Comment = null, - }, - new() - { - Id = "knx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kendayan", - Comment = null, - }, - new() - { - Id = "kny", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kanyok", - Comment = null, - }, - new() - { - Id = "knz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kalamsé", - Comment = null, - }, - new() - { - Id = "koa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Konomala", - Comment = null, - }, - new() - { - Id = "koc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Kpati", - Comment = null, - }, - new() - { - Id = "kod", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kodi", - Comment = null, - }, - new() - { - Id = "koe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kacipo-Bale Suri", - Comment = null, - }, - new() - { - Id = "kof", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Kubi", - Comment = null, - }, - new() - { - Id = "kog", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cogui", - Comment = null, - }, - new() - { - Id = "koh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Koyo", - Comment = null, - }, - new() - { - Id = "koi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Komi-Permyak", - Comment = null, - }, - new() - { - Id = "kok", - Part2B = "kok", - Part2T = "kok", - Part1 = null, - Scope = "M", - LanguageType = "L", - RefName = "Konkani (macrolanguage)", - Comment = null, - }, - new() - { - Id = "kol", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kol (Papua New Guinea)", - Comment = null, - }, - new() - { - Id = "kom", - Part2B = "kom", - Part2T = "kom", - Part1 = "kv", - Scope = "M", - LanguageType = "L", - RefName = "Komi", - Comment = null, - }, - new() - { - Id = "kon", - Part2B = "kon", - Part2T = "kon", - Part1 = "kg", - Scope = "M", - LanguageType = "L", - RefName = "Kongo", - Comment = null, - }, - new() - { - Id = "koo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Konzo", - Comment = null, - }, - new() - { - Id = "kop", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Waube", - Comment = null, - }, - new() - { - Id = "koq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kota (Gabon)", - Comment = null, - }, - new() - { - Id = "kor", - Part2B = "kor", - Part2T = "kor", - Part1 = "ko", - Scope = "I", - LanguageType = "L", - RefName = "Korean", - Comment = null, - }, - new() - { - Id = "kos", - Part2B = "kos", - Part2T = "kos", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kosraean", - Comment = null, - }, - new() - { - Id = "kot", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lagwan", - Comment = null, - }, - new() - { - Id = "kou", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Koke", - Comment = null, - }, - new() - { - Id = "kov", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kudu-Camo", - Comment = null, - }, - new() - { - Id = "kow", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kugama", - Comment = null, - }, - new() - { - Id = "koy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Koyukon", - Comment = null, - }, - new() - { - Id = "koz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Korak", - Comment = null, - }, - new() - { - Id = "kpa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kutto", - Comment = null, - }, - new() - { - Id = "kpb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mullu Kurumba", - Comment = null, - }, - new() - { - Id = "kpc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Curripaco", - Comment = null, - }, - new() - { - Id = "kpd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Koba", - Comment = null, - }, - new() - { - Id = "kpe", - Part2B = "kpe", - Part2T = "kpe", - Part1 = null, - Scope = "M", - LanguageType = "L", - RefName = "Kpelle", - Comment = null, - }, - new() - { - Id = "kpf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Komba", - Comment = null, - }, - new() - { - Id = "kpg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kapingamarangi", - Comment = null, - }, - new() - { - Id = "kph", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kplang", - Comment = null, - }, - new() - { - Id = "kpi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kofei", - Comment = null, - }, - new() - { - Id = "kpj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Karajá", - Comment = null, - }, - new() - { - Id = "kpk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kpan", - Comment = null, - }, - new() - { - Id = "kpl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kpala", - Comment = null, - }, - new() - { - Id = "kpm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Koho", - Comment = null, - }, - new() - { - Id = "kpn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Kepkiriwát", - Comment = null, - }, - new() - { - Id = "kpo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ikposo", - Comment = null, - }, - new() - { - Id = "kpq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Korupun-Sela", - Comment = null, - }, - new() - { - Id = "kpr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Korafe-Yegha", - Comment = null, - }, - new() - { - Id = "kps", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tehit", - Comment = null, - }, - new() - { - Id = "kpt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Karata", - Comment = null, - }, - new() - { - Id = "kpu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kafoa", - Comment = null, - }, - new() - { - Id = "kpv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Komi-Zyrian", - Comment = null, - }, - new() - { - Id = "kpw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kobon", - Comment = null, - }, - new() - { - Id = "kpx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mountain Koiali", - Comment = null, - }, - new() - { - Id = "kpy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Koryak", - Comment = null, - }, - new() - { - Id = "kpz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kupsabiny", - Comment = null, - }, - new() - { - Id = "kqa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mum", - Comment = null, - }, - new() - { - Id = "kqb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kovai", - Comment = null, - }, - new() - { - Id = "kqc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Doromu-Koki", - Comment = null, - }, - new() - { - Id = "kqd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Koy Sanjaq Surat", - Comment = null, - }, - new() - { - Id = "kqe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kalagan", - Comment = null, - }, - new() - { - Id = "kqf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kakabai", - Comment = null, - }, - new() - { - Id = "kqg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Khe", - Comment = null, - }, - new() - { - Id = "kqh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kisankasa", - Comment = null, - }, - new() - { - Id = "kqi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Koitabu", - Comment = null, - }, - new() - { - Id = "kqj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Koromira", - Comment = null, - }, - new() - { - Id = "kqk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kotafon Gbe", - Comment = null, - }, - new() - { - Id = "kql", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kyenele", - Comment = null, - }, - new() - { - Id = "kqm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Khisa", - Comment = null, - }, - new() - { - Id = "kqn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kaonde", - Comment = null, - }, - new() - { - Id = "kqo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Krahn", - Comment = null, - }, - new() - { - Id = "kqp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kimré", - Comment = null, - }, - new() - { - Id = "kqq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Krenak", - Comment = null, - }, - new() - { - Id = "kqr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kimaragang", - Comment = null, - }, - new() - { - Id = "kqs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Kissi", - Comment = null, - }, - new() - { - Id = "kqt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Klias River Kadazan", - Comment = null, - }, - new() - { - Id = "kqu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Seroa", - Comment = null, - }, - new() - { - Id = "kqv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Okolod", - Comment = null, - }, - new() - { - Id = "kqw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kandas", - Comment = null, - }, - new() - { - Id = "kqx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mser", - Comment = null, - }, - new() - { - Id = "kqy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Koorete", - Comment = null, - }, - new() - { - Id = "kqz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Korana", - Comment = null, - }, - new() - { - Id = "kra", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kumhali", - Comment = null, - }, - new() - { - Id = "krb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Karkin", - Comment = null, - }, - new() - { - Id = "krc", - Part2B = "krc", - Part2T = "krc", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Karachay-Balkar", - Comment = null, - }, - new() - { - Id = "krd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kairui-Midiki", - Comment = null, - }, - new() - { - Id = "kre", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Panará", - Comment = null, - }, - new() - { - Id = "krf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Koro (Vanuatu)", - Comment = null, - }, - new() - { - Id = "krh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kurama", - Comment = null, - }, - new() - { - Id = "kri", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Krio", - Comment = null, - }, - new() - { - Id = "krj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kinaray-A", - Comment = null, - }, - new() - { - Id = "krk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Kerek", - Comment = null, - }, - new() - { - Id = "krl", - Part2B = "krl", - Part2T = "krl", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Karelian", - Comment = null, - }, - new() - { - Id = "krn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sapo", - Comment = null, - }, - new() - { - Id = "krp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Durop", - Comment = null, - }, - new() - { - Id = "krr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Krung", - Comment = null, - }, - new() - { - Id = "krs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gbaya (Sudan)", - Comment = null, - }, - new() - { - Id = "krt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tumari Kanuri", - Comment = null, - }, - new() - { - Id = "kru", - Part2B = "kru", - Part2T = "kru", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kurukh", - Comment = null, - }, - new() - { - Id = "krv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kavet", - Comment = null, - }, - new() - { - Id = "krw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Krahn", - Comment = null, - }, - new() - { - Id = "krx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Karon", - Comment = null, - }, - new() - { - Id = "kry", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kryts", - Comment = null, - }, - new() - { - Id = "krz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sota Kanum", - Comment = null, - }, - new() - { - Id = "ksb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Shambala", - Comment = null, - }, - new() - { - Id = "ksc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Kalinga", - Comment = null, - }, - new() - { - Id = "ksd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kuanua", - Comment = null, - }, - new() - { - Id = "kse", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kuni", - Comment = null, - }, - new() - { - Id = "ksf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bafia", - Comment = null, - }, - new() - { - Id = "ksg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kusaghe", - Comment = null, - }, - new() - { - Id = "ksh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kölsch", - Comment = null, - }, - new() - { - Id = "ksi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Krisa", - Comment = null, - }, - new() - { - Id = "ksj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Uare", - Comment = null, - }, - new() - { - Id = "ksk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kansa", - Comment = null, - }, - new() - { - Id = "ksl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kumalu", - Comment = null, - }, - new() - { - Id = "ksm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kumba", - Comment = null, - }, - new() - { - Id = "ksn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kasiguranin", - Comment = null, - }, - new() - { - Id = "kso", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kofa", - Comment = null, - }, - new() - { - Id = "ksp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kaba", - Comment = null, - }, - new() - { - Id = "ksq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kwaami", - Comment = null, - }, - new() - { - Id = "ksr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Borong", - Comment = null, - }, - new() - { - Id = "kss", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Kisi", - Comment = null, - }, - new() - { - Id = "kst", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Winyé", - Comment = null, - }, - new() - { - Id = "ksu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Khamyang", - Comment = null, - }, - new() - { - Id = "ksv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kusu", - Comment = null, - }, - new() - { - Id = "ksw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "S'gaw Karen", - Comment = null, - }, - new() - { - Id = "ksx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kedang", - Comment = null, - }, - new() - { - Id = "ksy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kharia Thar", - Comment = null, - }, - new() - { - Id = "ksz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kodaku", - Comment = null, - }, - new() - { - Id = "kta", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Katua", - Comment = null, - }, - new() - { - Id = "ktb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kambaata", - Comment = null, - }, - new() - { - Id = "ktc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kholok", - Comment = null, - }, - new() - { - Id = "ktd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kokata", - Comment = null, - }, - new() - { - Id = "kte", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nubri", - Comment = null, - }, - new() - { - Id = "ktf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kwami", - Comment = null, - }, - new() - { - Id = "ktg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Kalkutung", - Comment = null, - }, - new() - { - Id = "kth", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Karanga", - Comment = null, - }, - new() - { - Id = "kti", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "North Muyu", - Comment = null, - }, - new() - { - Id = "ktj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Plapo Krumen", - Comment = null, - }, - new() - { - Id = "ktk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Kaniet", - Comment = null, - }, - new() - { - Id = "ktl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Koroshi", - Comment = null, - }, - new() - { - Id = "ktm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kurti", - Comment = null, - }, - new() - { - Id = "ktn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Karitiâna", - Comment = null, - }, - new() - { - Id = "kto", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kuot", - Comment = null, - }, - new() - { - Id = "ktp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kaduo", - Comment = null, - }, - new() - { - Id = "ktq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Katabaga", - Comment = null, - }, - new() - { - Id = "kts", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "South Muyu", - Comment = null, - }, - new() - { - Id = "ktt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ketum", - Comment = null, - }, - new() - { - Id = "ktu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kituba (Democratic Republic of Congo)", - Comment = null, - }, - new() - { - Id = "ktv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Katu", - Comment = null, - }, - new() - { - Id = "ktw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Kato", - Comment = null, - }, - new() - { - Id = "ktx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kaxararí", - Comment = null, - }, - new() - { - Id = "kty", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kango (Bas-Uélé District)", - Comment = null, - }, - new() - { - Id = "ktz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Juǀʼhoan", - Comment = null, - }, - new() - { - Id = "kua", - Part2B = "kua", - Part2T = "kua", - Part1 = "kj", - Scope = "I", - LanguageType = "L", - RefName = "Kuanyama", - Comment = null, - }, - new() - { - Id = "kub", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kutep", - Comment = null, - }, - new() - { - Id = "kuc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kwinsu", - Comment = null, - }, - new() - { - Id = "kud", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "'Auhelawa", - Comment = null, - }, - new() - { - Id = "kue", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kuman (Papua New Guinea)", - Comment = null, - }, - new() - { - Id = "kuf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Katu", - Comment = null, - }, - new() - { - Id = "kug", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kupa", - Comment = null, - }, - new() - { - Id = "kuh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kushi", - Comment = null, - }, - new() - { - Id = "kui", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kuikúro-Kalapálo", - Comment = null, - }, - new() - { - Id = "kuj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kuria", - Comment = null, - }, - new() - { - Id = "kuk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kepo'", - Comment = null, - }, - new() - { - Id = "kul", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kulere", - Comment = null, - }, - new() - { - Id = "kum", - Part2B = "kum", - Part2T = "kum", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kumyk", - Comment = null, - }, - new() - { - Id = "kun", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kunama", - Comment = null, - }, - new() - { - Id = "kuo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kumukio", - Comment = null, - }, - new() - { - Id = "kup", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kunimaipa", - Comment = null, - }, - new() - { - Id = "kuq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Karipuna", - Comment = null, - }, - new() - { - Id = "kur", - Part2B = "kur", - Part2T = "kur", - Part1 = "ku", - Scope = "M", - LanguageType = "L", - RefName = "Kurdish", - Comment = null, - }, - new() - { - Id = "kus", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kusaal", - Comment = null, - }, - new() - { - Id = "kut", - Part2B = "kut", - Part2T = "kut", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ktunaxa", - Comment = null, - }, - new() - { - Id = "kuu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Upper Kuskokwim", - Comment = null, - }, - new() - { - Id = "kuv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kur", - Comment = null, - }, - new() - { - Id = "kuw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kpagua", - Comment = null, - }, - new() - { - Id = "kux", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kukatja", - Comment = null, - }, - new() - { - Id = "kuy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kuuku-Ya'u", - Comment = null, - }, - new() - { - Id = "kuz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Kunza", - Comment = null, - }, - new() - { - Id = "kva", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bagvalal", - Comment = null, - }, - new() - { - Id = "kvb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kubu", - Comment = null, - }, - new() - { - Id = "kvc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kove", - Comment = null, - }, - new() - { - Id = "kvd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kui (Indonesia)", - Comment = null, - }, - new() - { - Id = "kve", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kalabakan", - Comment = null, - }, - new() - { - Id = "kvf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kabalai", - Comment = null, - }, - new() - { - Id = "kvg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kuni-Boazi", - Comment = null, - }, - new() - { - Id = "kvh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Komodo", - Comment = null, - }, - new() - { - Id = "kvi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kwang", - Comment = null, - }, - new() - { - Id = "kvj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Psikye", - Comment = null, - }, - new() - { - Id = "kvk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Korean Sign Language", - Comment = null, - }, - new() - { - Id = "kvl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kayaw", - Comment = null, - }, - new() - { - Id = "kvm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kendem", - Comment = null, - }, - new() - { - Id = "kvn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Border Kuna", - Comment = null, - }, - new() - { - Id = "kvo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dobel", - Comment = null, - }, - new() - { - Id = "kvp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kompane", - Comment = null, - }, - new() - { - Id = "kvq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Geba Karen", - Comment = null, - }, - new() - { - Id = "kvr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kerinci", - Comment = null, - }, - new() - { - Id = "kvt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lahta Karen", - Comment = null, - }, - new() - { - Id = "kvu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yinbaw Karen", - Comment = null, - }, - new() - { - Id = "kvv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kola", - Comment = null, - }, - new() - { - Id = "kvw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wersing", - Comment = null, - }, - new() - { - Id = "kvx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Parkari Koli", - Comment = null, - }, - new() - { - Id = "kvy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yintale Karen", - Comment = null, - }, - new() - { - Id = "kvz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tsakwambo", - Comment = null, - }, - new() - { - Id = "kwa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dâw", - Comment = null, - }, - new() - { - Id = "kwb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kwa", - Comment = null, - }, - new() - { - Id = "kwc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Likwala", - Comment = null, - }, - new() - { - Id = "kwd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kwaio", - Comment = null, - }, - new() - { - Id = "kwe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kwerba", - Comment = null, - }, - new() - { - Id = "kwf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kwara'ae", - Comment = null, - }, - new() - { - Id = "kwg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sara Kaba Deme", - Comment = null, - }, - new() - { - Id = "kwh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kowiai", - Comment = null, - }, - new() - { - Id = "kwi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Awa-Cuaiquer", - Comment = null, - }, - new() - { - Id = "kwj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kwanga", - Comment = null, - }, - new() - { - Id = "kwk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kwak'wala", - Comment = null, - }, - new() - { - Id = "kwl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kofyar", - Comment = null, - }, - new() - { - Id = "kwm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kwambi", - Comment = null, - }, - new() - { - Id = "kwn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kwangali", - Comment = null, - }, - new() - { - Id = "kwo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kwomtari", - Comment = null, - }, - new() - { - Id = "kwp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kodia", - Comment = null, - }, - new() - { - Id = "kwr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kwer", - Comment = null, - }, - new() - { - Id = "kws", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kwese", - Comment = null, - }, - new() - { - Id = "kwt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kwesten", - Comment = null, - }, - new() - { - Id = "kwu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kwakum", - Comment = null, - }, - new() - { - Id = "kwv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sara Kaba Náà", - Comment = null, - }, - new() - { - Id = "kww", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kwinti", - Comment = null, - }, - new() - { - Id = "kwx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Khirwar", - Comment = null, - }, - new() - { - Id = "kwy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "San Salvador Kongo", - Comment = null, - }, - new() - { - Id = "kwz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Kwadi", - Comment = null, - }, - new() - { - Id = "kxa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kairiru", - Comment = null, - }, - new() - { - Id = "kxb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Krobu", - Comment = null, - }, - new() - { - Id = "kxc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Konso", - Comment = null, - }, - new() - { - Id = "kxd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Brunei", - Comment = null, - }, - new() - { - Id = "kxf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Manumanaw Karen", - Comment = null, - }, - new() - { - Id = "kxh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Karo (Ethiopia)", - Comment = null, - }, - new() - { - Id = "kxi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Keningau Murut", - Comment = null, - }, - new() - { - Id = "kxj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kulfa", - Comment = null, - }, - new() - { - Id = "kxk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zayein Karen", - Comment = null, - }, - new() - { - Id = "kxm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Khmer", - Comment = null, - }, - new() - { - Id = "kxn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kanowit-Tanjong Melanau", - Comment = null, - }, - new() - { - Id = "kxo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Kanoé", - Comment = null, - }, - new() - { - Id = "kxp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wadiyara Koli", - Comment = null, - }, - new() - { - Id = "kxq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Smärky Kanum", - Comment = null, - }, - new() - { - Id = "kxr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Koro (Papua New Guinea)", - Comment = null, - }, - new() - { - Id = "kxs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kangjia", - Comment = null, - }, - new() - { - Id = "kxt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Koiwat", - Comment = null, - }, - new() - { - Id = "kxv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kuvi", - Comment = null, - }, - new() - { - Id = "kxw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Konai", - Comment = null, - }, - new() - { - Id = "kxx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Likuba", - Comment = null, - }, - new() - { - Id = "kxy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kayong", - Comment = null, - }, - new() - { - Id = "kxz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kerewo", - Comment = null, - }, - new() - { - Id = "kya", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kwaya", - Comment = null, - }, - new() - { - Id = "kyb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Butbut Kalinga", - Comment = null, - }, - new() - { - Id = "kyc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kyaka", - Comment = null, - }, - new() - { - Id = "kyd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Karey", - Comment = null, - }, - new() - { - Id = "kye", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Krache", - Comment = null, - }, - new() - { - Id = "kyf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kouya", - Comment = null, - }, - new() - { - Id = "kyg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Keyagana", - Comment = null, - }, - new() - { - Id = "kyh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Karok", - Comment = null, - }, - new() - { - Id = "kyi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kiput", - Comment = null, - }, - new() - { - Id = "kyj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Karao", - Comment = null, - }, - new() - { - Id = "kyk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kamayo", - Comment = null, - }, - new() - { - Id = "kyl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kalapuya", - Comment = null, - }, - new() - { - Id = "kym", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kpatili", - Comment = null, - }, - new() - { - Id = "kyn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Binukidnon", - Comment = null, - }, - new() - { - Id = "kyo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kelon", - Comment = null, - }, - new() - { - Id = "kyp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kang", - Comment = null, - }, - new() - { - Id = "kyq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kenga", - Comment = null, - }, - new() - { - Id = "kyr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kuruáya", - Comment = null, - }, - new() - { - Id = "kys", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Baram Kayan", - Comment = null, - }, - new() - { - Id = "kyt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kayagar", - Comment = null, - }, - new() - { - Id = "kyu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Kayah", - Comment = null, - }, - new() - { - Id = "kyv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kayort", - Comment = null, - }, - new() - { - Id = "kyw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kudmali", - Comment = null, - }, - new() - { - Id = "kyx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rapoisi", - Comment = null, - }, - new() - { - Id = "kyy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kambaira", - Comment = null, - }, - new() - { - Id = "kyz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kayabí", - Comment = null, - }, - new() - { - Id = "kza", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Karaboro", - Comment = null, - }, - new() - { - Id = "kzb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kaibobo", - Comment = null, - }, - new() - { - Id = "kzc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bondoukou Kulango", - Comment = null, - }, - new() - { - Id = "kzd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kadai", - Comment = null, - }, - new() - { - Id = "kze", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kosena", - Comment = null, - }, - new() - { - Id = "kzf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Da'a Kaili", - Comment = null, - }, - new() - { - Id = "kzg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kikai", - Comment = null, - }, - new() - { - Id = "kzi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kelabit", - Comment = null, - }, - new() - { - Id = "kzk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Kazukuru", - Comment = null, - }, - new() - { - Id = "kzl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kayeli", - Comment = null, - }, - new() - { - Id = "kzm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kais", - Comment = null, - }, - new() - { - Id = "kzn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kokola", - Comment = null, - }, - new() - { - Id = "kzo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kaningi", - Comment = null, - }, - new() - { - Id = "kzp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kaidipang", - Comment = null, - }, - new() - { - Id = "kzq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kaike", - Comment = null, - }, - new() - { - Id = "kzr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Karang", - Comment = null, - }, - new() - { - Id = "kzs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sugut Dusun", - Comment = null, - }, - new() - { - Id = "kzu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kayupulau", - Comment = null, - }, - new() - { - Id = "kzv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Komyandaret", - Comment = null, - }, - new() - { - Id = "kzw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Karirí-Xocó", - Comment = null, - }, - new() - { - Id = "kzx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Kamarian", - Comment = null, - }, - new() - { - Id = "kzy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kango (Tshopo District)", - Comment = null, - }, - new() - { - Id = "kzz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kalabra", - Comment = null, - }, - new() - { - Id = "laa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Subanen", - Comment = null, - }, - new() - { - Id = "lab", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Linear A", - Comment = null, - }, - new() - { - Id = "lac", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lacandon", - Comment = null, - }, - new() - { - Id = "lad", - Part2B = "lad", - Part2T = "lad", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ladino", - Comment = null, - }, - new() - { - Id = "lae", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pattani", - Comment = null, - }, - new() - { - Id = "laf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lafofa", - Comment = null, - }, - new() - { - Id = "lag", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rangi", - Comment = null, - }, - new() - { - Id = "lah", - Part2B = "lah", - Part2T = "lah", - Part1 = null, - Scope = "M", - LanguageType = "L", - RefName = "Lahnda", - Comment = null, - }, - new() - { - Id = "lai", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lambya", - Comment = null, - }, - new() - { - Id = "laj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lango (Uganda)", - Comment = null, - }, - new() - { - Id = "lal", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lalia", - Comment = null, - }, - new() - { - Id = "lam", - Part2B = "lam", - Part2T = "lam", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lamba", - Comment = null, - }, - new() - { - Id = "lan", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Laru", - Comment = null, - }, - new() - { - Id = "lao", - Part2B = "lao", - Part2T = "lao", - Part1 = "lo", - Scope = "I", - LanguageType = "L", - RefName = "Lao", - Comment = null, - }, - new() - { - Id = "lap", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Laka (Chad)", - Comment = null, - }, - new() - { - Id = "laq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Qabiao", - Comment = null, - }, - new() - { - Id = "lar", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Larteh", - Comment = null, - }, - new() - { - Id = "las", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lama (Togo)", - Comment = null, - }, - new() - { - Id = "lat", - Part2B = "lat", - Part2T = "lat", - Part1 = "la", - Scope = "I", - LanguageType = "H", - RefName = "Latin", - Comment = null, - }, - new() - { - Id = "lau", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Laba", - Comment = null, - }, - new() - { - Id = "lav", - Part2B = "lav", - Part2T = "lav", - Part1 = "lv", - Scope = "M", - LanguageType = "L", - RefName = "Latvian", - Comment = null, - }, - new() - { - Id = "law", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lauje", - Comment = null, - }, - new() - { - Id = "lax", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tiwa", - Comment = null, - }, - new() - { - Id = "lay", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lama Bai", - Comment = null, - }, - new() - { - Id = "laz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Aribwatsa", - Comment = null, - }, - new() - { - Id = "lbb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Label", - Comment = null, - }, - new() - { - Id = "lbc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lakkia", - Comment = null, - }, - new() - { - Id = "lbe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lak", - Comment = null, - }, - new() - { - Id = "lbf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tinani", - Comment = null, - }, - new() - { - Id = "lbg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Laopang", - Comment = null, - }, - new() - { - Id = "lbi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "La'bi", - Comment = null, - }, - new() - { - Id = "lbj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ladakhi", - Comment = null, - }, - new() - { - Id = "lbk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Central Bontok", - Comment = null, - }, - new() - { - Id = "lbl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Libon Bikol", - Comment = null, - }, - new() - { - Id = "lbm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lodhi", - Comment = null, - }, - new() - { - Id = "lbn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rmeet", - Comment = null, - }, - new() - { - Id = "lbo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Laven", - Comment = null, - }, - new() - { - Id = "lbq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wampar", - Comment = null, - }, - new() - { - Id = "lbr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lohorung", - Comment = null, - }, - new() - { - Id = "lbs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Libyan Sign Language", - Comment = null, - }, - new() - { - Id = "lbt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lachi", - Comment = null, - }, - new() - { - Id = "lbu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Labu", - Comment = null, - }, - new() - { - Id = "lbv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lavatbura-Lamusong", - Comment = null, - }, - new() - { - Id = "lbw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tolaki", - Comment = null, - }, - new() - { - Id = "lbx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lawangan", - Comment = null, - }, - new() - { - Id = "lby", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Lamalama", - Comment = null, - }, - new() - { - Id = "lbz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lardil", - Comment = null, - }, - new() - { - Id = "lcc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Legenyem", - Comment = null, - }, - new() - { - Id = "lcd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lola", - Comment = null, - }, - new() - { - Id = "lce", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Loncong", - Comment = null, - }, - new() - { - Id = "lcf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lubu", - Comment = null, - }, - new() - { - Id = "lch", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Luchazi", - Comment = null, - }, - new() - { - Id = "lcl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lisela", - Comment = null, - }, - new() - { - Id = "lcm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tungag", - Comment = null, - }, - new() - { - Id = "lcp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Lawa", - Comment = null, - }, - new() - { - Id = "lcq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Luhu", - Comment = null, - }, - new() - { - Id = "lcs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lisabata-Nuniali", - Comment = null, - }, - new() - { - Id = "lda", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kla-Dan", - Comment = null, - }, - new() - { - Id = "ldb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dũya", - Comment = null, - }, - new() - { - Id = "ldd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Luri", - Comment = null, - }, - new() - { - Id = "ldg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lenyima", - Comment = null, - }, - new() - { - Id = "ldh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lamja-Dengsa-Tola", - Comment = null, - }, - new() - { - Id = "ldi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Laari", - Comment = null, - }, - new() - { - Id = "ldj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lemoro", - Comment = null, - }, - new() - { - Id = "ldk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Leelau", - Comment = null, - }, - new() - { - Id = "ldl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kaan", - Comment = null, - }, - new() - { - Id = "ldm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Landoma", - Comment = null, - }, - new() - { - Id = "ldn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "C", - RefName = "Láadan", - Comment = null, - }, - new() - { - Id = "ldo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Loo", - Comment = null, - }, - new() - { - Id = "ldp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tso", - Comment = null, - }, - new() - { - Id = "ldq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lufu", - Comment = null, - }, - new() - { - Id = "lea", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lega-Shabunda", - Comment = null, - }, - new() - { - Id = "leb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lala-Bisa", - Comment = null, - }, - new() - { - Id = "lec", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Leco", - Comment = null, - }, - new() - { - Id = "led", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lendu", - Comment = null, - }, - new() - { - Id = "lee", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lyélé", - Comment = null, - }, - new() - { - Id = "lef", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lelemi", - Comment = null, - }, - new() - { - Id = "leh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lenje", - Comment = null, - }, - new() - { - Id = "lei", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lemio", - Comment = null, - }, - new() - { - Id = "lej", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lengola", - Comment = null, - }, - new() - { - Id = "lek", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Leipon", - Comment = null, - }, - new() - { - Id = "lel", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lele (Democratic Republic of Congo)", - Comment = null, - }, - new() - { - Id = "lem", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nomaande", - Comment = null, - }, - new() - { - Id = "len", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Lenca", - Comment = null, - }, - new() - { - Id = "leo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Leti (Cameroon)", - Comment = null, - }, - new() - { - Id = "lep", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lepcha", - Comment = null, - }, - new() - { - Id = "leq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lembena", - Comment = null, - }, - new() - { - Id = "ler", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lenkau", - Comment = null, - }, - new() - { - Id = "les", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lese", - Comment = null, - }, - new() - { - Id = "let", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lesing-Gelimi", - Comment = null, - }, - new() - { - Id = "leu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kara (Papua New Guinea)", - Comment = null, - }, - new() - { - Id = "lev", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lamma", - Comment = null, - }, - new() - { - Id = "lew", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ledo Kaili", - Comment = null, - }, - new() - { - Id = "lex", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Luang", - Comment = null, - }, - new() - { - Id = "ley", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lemolang", - Comment = null, - }, - new() - { - Id = "lez", - Part2B = "lez", - Part2T = "lez", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lezghian", - Comment = null, - }, - new() - { - Id = "lfa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lefa", - Comment = null, - }, - new() - { - Id = "lfb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Buu (Cameroon)", - Comment = null, - }, - new() - { - Id = "lfn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "C", - RefName = "Lingua Franca Nova", - Comment = null, - }, - new() - { - Id = "lga", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lungga", - Comment = null, - }, - new() - { - Id = "lgb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Laghu", - Comment = null, - }, - new() - { - Id = "lgg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lugbara", - Comment = null, - }, - new() - { - Id = "lgh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Laghuu", - Comment = null, - }, - new() - { - Id = "lgi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lengilu", - Comment = null, - }, - new() - { - Id = "lgk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lingarak", - Comment = null, - }, - new() - { - Id = "lgl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wala", - Comment = null, - }, - new() - { - Id = "lgm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lega-Mwenga", - Comment = null, - }, - new() - { - Id = "lgn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "T'apo", - Comment = null, - }, - new() - { - Id = "lgo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lango (South Sudan)", - Comment = null, - }, - new() - { - Id = "lgq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Logba", - Comment = null, - }, - new() - { - Id = "lgr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lengo", - Comment = null, - }, - new() - { - Id = "lgs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Guinea-Bissau Sign Language", - Comment = null, - }, - new() - { - Id = "lgt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pahi", - Comment = null, - }, - new() - { - Id = "lgu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Longgu", - Comment = null, - }, - new() - { - Id = "lgz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ligenza", - Comment = null, - }, - new() - { - Id = "lha", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Laha (Viet Nam)", - Comment = null, - }, - new() - { - Id = "lhh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Laha (Indonesia)", - Comment = null, - }, - new() - { - Id = "lhi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lahu Shi", - Comment = null, - }, - new() - { - Id = "lhl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lahul Lohar", - Comment = null, - }, - new() - { - Id = "lhm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lhomi", - Comment = null, - }, - new() - { - Id = "lhn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lahanan", - Comment = null, - }, - new() - { - Id = "lhp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lhokpu", - Comment = null, - }, - new() - { - Id = "lhs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Mlahsö", - Comment = null, - }, - new() - { - Id = "lht", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lo-Toga", - Comment = null, - }, - new() - { - Id = "lhu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lahu", - Comment = null, - }, - new() - { - Id = "lia", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "West-Central Limba", - Comment = null, - }, - new() - { - Id = "lib", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Likum", - Comment = null, - }, - new() - { - Id = "lic", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hlai", - Comment = null, - }, - new() - { - Id = "lid", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nyindrou", - Comment = null, - }, - new() - { - Id = "lie", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Likila", - Comment = null, - }, - new() - { - Id = "lif", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Limbu", - Comment = null, - }, - new() - { - Id = "lig", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ligbi", - Comment = null, - }, - new() - { - Id = "lih", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lihir", - Comment = null, - }, - new() - { - Id = "lij", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ligurian", - Comment = null, - }, - new() - { - Id = "lik", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lika", - Comment = null, - }, - new() - { - Id = "lil", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lillooet", - Comment = null, - }, - new() - { - Id = "lim", - Part2B = "lim", - Part2T = "lim", - Part1 = "li", - Scope = "I", - LanguageType = "L", - RefName = "Limburgan", - Comment = null, - }, - new() - { - Id = "lin", - Part2B = "lin", - Part2T = "lin", - Part1 = "ln", - Scope = "I", - LanguageType = "L", - RefName = "Lingala", - Comment = null, - }, - new() - { - Id = "lio", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Liki", - Comment = null, - }, - new() - { - Id = "lip", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sekpele", - Comment = null, - }, - new() - { - Id = "liq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Libido", - Comment = null, - }, - new() - { - Id = "lir", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Liberian English", - Comment = null, - }, - new() - { - Id = "lis", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lisu", - Comment = null, - }, - new() - { - Id = "lit", - Part2B = "lit", - Part2T = "lit", - Part1 = "lt", - Scope = "I", - LanguageType = "L", - RefName = "Lithuanian", - Comment = null, - }, - new() - { - Id = "liu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Logorik", - Comment = null, - }, - new() - { - Id = "liv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Liv", - Comment = null, - }, - new() - { - Id = "liw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Col", - Comment = null, - }, - new() - { - Id = "lix", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Liabuku", - Comment = null, - }, - new() - { - Id = "liy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Banda-Bambari", - Comment = null, - }, - new() - { - Id = "liz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Libinza", - Comment = null, - }, - new() - { - Id = "lja", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Golpa", - Comment = null, - }, - new() - { - Id = "lje", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rampi", - Comment = null, - }, - new() - { - Id = "lji", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Laiyolo", - Comment = null, - }, - new() - { - Id = "ljl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Li'o", - Comment = null, - }, - new() - { - Id = "ljp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lampung Api", - Comment = null, - }, - new() - { - Id = "ljw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yirandali", - Comment = null, - }, - new() - { - Id = "ljx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Yuru", - Comment = null, - }, - new() - { - Id = "lka", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lakalei", - Comment = null, - }, - new() - { - Id = "lkb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kabras", - Comment = null, - }, - new() - { - Id = "lkc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kucong", - Comment = null, - }, - new() - { - Id = "lkd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lakondê", - Comment = null, - }, - new() - { - Id = "lke", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kenyi", - Comment = null, - }, - new() - { - Id = "lkh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lakha", - Comment = null, - }, - new() - { - Id = "lki", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Laki", - Comment = null, - }, - new() - { - Id = "lkj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Remun", - Comment = null, - }, - new() - { - Id = "lkl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Laeko-Libuat", - Comment = null, - }, - new() - { - Id = "lkm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Kalaamaya", - Comment = null, - }, - new() - { - Id = "lkn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lakon", - Comment = null, - }, - new() - { - Id = "lko", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Khayo", - Comment = null, - }, - new() - { - Id = "lkr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Päri", - Comment = null, - }, - new() - { - Id = "lks", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kisa", - Comment = null, - }, - new() - { - Id = "lkt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lakota", - Comment = null, - }, - new() - { - Id = "lku", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Kungkari", - Comment = null, - }, - new() - { - Id = "lky", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lokoya", - Comment = null, - }, - new() - { - Id = "lla", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lala-Roba", - Comment = null, - }, - new() - { - Id = "llb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lolo", - Comment = null, - }, - new() - { - Id = "llc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lele (Guinea)", - Comment = null, - }, - new() - { - Id = "lld", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ladin", - Comment = null, - }, - new() - { - Id = "lle", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lele (Papua New Guinea)", - Comment = null, - }, - new() - { - Id = "llf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Hermit", - Comment = null, - }, - new() - { - Id = "llg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lole", - Comment = null, - }, - new() - { - Id = "llh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lamu", - Comment = null, - }, - new() - { - Id = "lli", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Teke-Laali", - Comment = null, - }, - new() - { - Id = "llj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Ladji Ladji", - Comment = null, - }, - new() - { - Id = "llk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Lelak", - Comment = null, - }, - new() - { - Id = "lll", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lilau", - Comment = null, - }, - new() - { - Id = "llm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lasalimu", - Comment = null, - }, - new() - { - Id = "lln", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lele (Chad)", - Comment = null, - }, - new() - { - Id = "llp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "North Efate", - Comment = null, - }, - new() - { - Id = "llq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lolak", - Comment = null, - }, - new() - { - Id = "lls", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lithuanian Sign Language", - Comment = null, - }, - new() - { - Id = "llu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lau", - Comment = null, - }, - new() - { - Id = "llx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lauan", - Comment = null, - }, - new() - { - Id = "lma", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "East Limba", - Comment = null, - }, - new() - { - Id = "lmb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Merei", - Comment = null, - }, - new() - { - Id = "lmc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Limilngan", - Comment = null, - }, - new() - { - Id = "lmd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lumun", - Comment = null, - }, - new() - { - Id = "lme", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pévé", - Comment = null, - }, - new() - { - Id = "lmf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "South Lembata", - Comment = null, - }, - new() - { - Id = "lmg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lamogai", - Comment = null, - }, - new() - { - Id = "lmh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lambichhong", - Comment = null, - }, - new() - { - Id = "lmi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lombi", - Comment = null, - }, - new() - { - Id = "lmj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "West Lembata", - Comment = null, - }, - new() - { - Id = "lmk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lamkang", - Comment = null, - }, - new() - { - Id = "lml", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hano", - Comment = null, - }, - new() - { - Id = "lmn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lambadi", - Comment = null, - }, - new() - { - Id = "lmo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lombard", - Comment = null, - }, - new() - { - Id = "lmp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Limbum", - Comment = null, - }, - new() - { - Id = "lmq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lamatuka", - Comment = null, - }, - new() - { - Id = "lmr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lamalera", - Comment = null, - }, - new() - { - Id = "lmu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lamenu", - Comment = null, - }, - new() - { - Id = "lmv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lomaiviti", - Comment = null, - }, - new() - { - Id = "lmw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lake Miwok", - Comment = null, - }, - new() - { - Id = "lmx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Laimbue", - Comment = null, - }, - new() - { - Id = "lmy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lamboya", - Comment = null, - }, - new() - { - Id = "lna", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Langbashe", - Comment = null, - }, - new() - { - Id = "lnb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mbalanhu", - Comment = null, - }, - new() - { - Id = "lnd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lundayeh", - Comment = null, - }, - new() - { - Id = "lng", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Langobardic", - Comment = null, - }, - new() - { - Id = "lnh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lanoh", - Comment = null, - }, - new() - { - Id = "lni", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Daantanai'", - Comment = null, - }, - new() - { - Id = "lnj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Leningitij", - Comment = null, - }, - new() - { - Id = "lnl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "South Central Banda", - Comment = null, - }, - new() - { - Id = "lnm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Langam", - Comment = null, - }, - new() - { - Id = "lnn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lorediakarkar", - Comment = null, - }, - new() - { - Id = "lns", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lamnso'", - Comment = null, - }, - new() - { - Id = "lnu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Longuda", - Comment = null, - }, - new() - { - Id = "lnw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Lanima", - Comment = null, - }, - new() - { - Id = "lnz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lonzo", - Comment = null, - }, - new() - { - Id = "loa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Loloda", - Comment = null, - }, - new() - { - Id = "lob", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lobi", - Comment = null, - }, - new() - { - Id = "loc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Inonhan", - Comment = null, - }, - new() - { - Id = "loe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Saluan", - Comment = null, - }, - new() - { - Id = "lof", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Logol", - Comment = null, - }, - new() - { - Id = "log", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Logo", - Comment = null, - }, - new() - { - Id = "loh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Laarim", - Comment = null, - }, - new() - { - Id = "loi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Loma (Côte d'Ivoire)", - Comment = null, - }, - new() - { - Id = "loj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lou", - Comment = null, - }, - new() - { - Id = "lok", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Loko", - Comment = null, - }, - new() - { - Id = "lol", - Part2B = "lol", - Part2T = "lol", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mongo", - Comment = null, - }, - new() - { - Id = "lom", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Loma (Liberia)", - Comment = null, - }, - new() - { - Id = "lon", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Malawi Lomwe", - Comment = null, - }, - new() - { - Id = "loo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lombo", - Comment = null, - }, - new() - { - Id = "lop", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lopa", - Comment = null, - }, - new() - { - Id = "loq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lobala", - Comment = null, - }, - new() - { - Id = "lor", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Téén", - Comment = null, - }, - new() - { - Id = "los", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Loniu", - Comment = null, - }, - new() - { - Id = "lot", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Otuho", - Comment = null, - }, - new() - { - Id = "lou", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Louisiana Creole", - Comment = null, - }, - new() - { - Id = "lov", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lopi", - Comment = null, - }, - new() - { - Id = "low", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tampias Lobu", - Comment = null, - }, - new() - { - Id = "lox", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Loun", - Comment = null, - }, - new() - { - Id = "loy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Loke", - Comment = null, - }, - new() - { - Id = "loz", - Part2B = "loz", - Part2T = "loz", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lozi", - Comment = null, - }, - new() - { - Id = "lpa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lelepa", - Comment = null, - }, - new() - { - Id = "lpe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lepki", - Comment = null, - }, - new() - { - Id = "lpn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Long Phuri Naga", - Comment = null, - }, - new() - { - Id = "lpo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lipo", - Comment = null, - }, - new() - { - Id = "lpx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lopit", - Comment = null, - }, - new() - { - Id = "lqr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Logir", - Comment = null, - }, - new() - { - Id = "lra", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rara Bakati'", - Comment = null, - }, - new() - { - Id = "lrc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Luri", - Comment = null, - }, - new() - { - Id = "lre", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Laurentian", - Comment = null, - }, - new() - { - Id = "lrg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Laragia", - Comment = null, - }, - new() - { - Id = "lri", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Marachi", - Comment = null, - }, - new() - { - Id = "lrk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Loarki", - Comment = null, - }, - new() - { - Id = "lrl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lari", - Comment = null, - }, - new() - { - Id = "lrm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Marama", - Comment = null, - }, - new() - { - Id = "lrn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lorang", - Comment = null, - }, - new() - { - Id = "lro", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Laro", - Comment = null, - }, - new() - { - Id = "lrr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Yamphu", - Comment = null, - }, - new() - { - Id = "lrt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Larantuka Malay", - Comment = null, - }, - new() - { - Id = "lrv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Larevat", - Comment = null, - }, - new() - { - Id = "lrz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lemerig", - Comment = null, - }, - new() - { - Id = "lsa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lasgerdi", - Comment = null, - }, - new() - { - Id = "lsb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Burundian Sign Language", - Comment = null, - }, - new() - { - Id = "lsc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Albarradas Sign Language", - Comment = null, - }, - new() - { - Id = "lsd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lishana Deni", - Comment = null, - }, - new() - { - Id = "lse", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lusengo", - Comment = null, - }, - new() - { - Id = "lsh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lish", - Comment = null, - }, - new() - { - Id = "lsi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lashi", - Comment = null, - }, - new() - { - Id = "lsl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Latvian Sign Language", - Comment = null, - }, - new() - { - Id = "lsm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Saamia", - Comment = null, - }, - new() - { - Id = "lsn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tibetan Sign Language", - Comment = null, - }, - new() - { - Id = "lso", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Laos Sign Language", - Comment = null, - }, - new() - { - Id = "lsp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Panamanian Sign Language", - Comment = null, - }, - new() - { - Id = "lsr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aruop", - Comment = null, - }, - new() - { - Id = "lss", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lasi", - Comment = null, - }, - new() - { - Id = "lst", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Trinidad and Tobago Sign Language", - Comment = null, - }, - new() - { - Id = "lsv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sivia Sign Language", - Comment = null, - }, - new() - { - Id = "lsw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Seychelles Sign Language", - Comment = null, - }, - new() - { - Id = "lsy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mauritian Sign Language", - Comment = null, - }, - new() - { - Id = "ltc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Late Middle Chinese", - Comment = null, - }, - new() - { - Id = "ltg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Latgalian", - Comment = null, - }, - new() - { - Id = "lth", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Thur", - Comment = null, - }, - new() - { - Id = "lti", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Leti (Indonesia)", - Comment = null, - }, - new() - { - Id = "ltn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Latundê", - Comment = null, - }, - new() - { - Id = "lto", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tsotso", - Comment = null, - }, - new() - { - Id = "lts", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tachoni", - Comment = null, - }, - new() - { - Id = "ltu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Latu", - Comment = null, - }, - new() - { - Id = "ltz", - Part2B = "ltz", - Part2T = "ltz", - Part1 = "lb", - Scope = "I", - LanguageType = "L", - RefName = "Luxembourgish", - Comment = null, - }, - new() - { - Id = "lua", - Part2B = "lua", - Part2T = "lua", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Luba-Lulua", - Comment = null, - }, - new() - { - Id = "lub", - Part2B = "lub", - Part2T = "lub", - Part1 = "lu", - Scope = "I", - LanguageType = "L", - RefName = "Luba-Katanga", - Comment = null, - }, - new() - { - Id = "luc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aringa", - Comment = null, - }, - new() - { - Id = "lud", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ludian", - Comment = null, - }, - new() - { - Id = "lue", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Luvale", - Comment = null, - }, - new() - { - Id = "luf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Laua", - Comment = null, - }, - new() - { - Id = "lug", - Part2B = "lug", - Part2T = "lug", - Part1 = "lg", - Scope = "I", - LanguageType = "L", - RefName = "Ganda", - Comment = null, - }, - new() - { - Id = "luh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Leizhou Chinese", - Comment = null, - }, - new() - { - Id = "lui", - Part2B = "lui", - Part2T = "lui", - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Luiseño", - Comment = null, - }, - new() - { - Id = "luj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Luna", - Comment = null, - }, - new() - { - Id = "luk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lunanakha", - Comment = null, - }, - new() - { - Id = "lul", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Olu'bo", - Comment = null, - }, - new() - { - Id = "lum", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Luimbi", - Comment = null, - }, - new() - { - Id = "lun", - Part2B = "lun", - Part2T = "lun", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lunda", - Comment = null, - }, - new() - { - Id = "luo", - Part2B = "luo", - Part2T = "luo", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Luo (Kenya and Tanzania)", - Comment = null, - }, - new() - { - Id = "lup", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lumbu", - Comment = null, - }, - new() - { - Id = "luq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lucumi", - Comment = null, - }, - new() - { - Id = "lur", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Laura", - Comment = null, - }, - new() - { - Id = "lus", - Part2B = "lus", - Part2T = "lus", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lushai", - Comment = null, - }, - new() - { - Id = "lut", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Lushootseed", - Comment = null, - }, - new() - { - Id = "luu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lumba-Yakkha", - Comment = null, - }, - new() - { - Id = "luv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Luwati", - Comment = null, - }, - new() - { - Id = "luw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Luo (Cameroon)", - Comment = null, - }, - new() - { - Id = "luy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "M", - LanguageType = "L", - RefName = "Luyia", - Comment = null, - }, - new() - { - Id = "luz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Luri", - Comment = null, - }, - new() - { - Id = "lva", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maku'a", - Comment = null, - }, - new() - { - Id = "lvi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lavi", - Comment = null, - }, - new() - { - Id = "lvk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lavukaleve", - Comment = null, - }, - new() - { - Id = "lvl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lwel", - Comment = null, - }, - new() - { - Id = "lvs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Standard Latvian", - Comment = null, - }, - new() - { - Id = "lvu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Levuka", - Comment = null, - }, - new() - { - Id = "lwa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lwalu", - Comment = null, - }, - new() - { - Id = "lwe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lewo Eleng", - Comment = null, - }, - new() - { - Id = "lwg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wanga", - Comment = null, - }, - new() - { - Id = "lwh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "White Lachi", - Comment = null, - }, - new() - { - Id = "lwl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Lawa", - Comment = null, - }, - new() - { - Id = "lwm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Laomian", - Comment = null, - }, - new() - { - Id = "lwo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Luwo", - Comment = null, - }, - new() - { - Id = "lws", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Malawian Sign Language", - Comment = null, - }, - new() - { - Id = "lwt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lewotobi", - Comment = null, - }, - new() - { - Id = "lwu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lawu", - Comment = null, - }, - new() - { - Id = "lww", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lewo", - Comment = null, - }, - new() - { - Id = "lxm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lakurumau", - Comment = null, - }, - new() - { - Id = "lya", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Layakha", - Comment = null, - }, - new() - { - Id = "lyg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lyngngam", - Comment = null, - }, - new() - { - Id = "lyn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Luyana", - Comment = null, - }, - new() - { - Id = "lzh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Literary Chinese", - Comment = null, - }, - new() - { - Id = "lzl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Litzlitz", - Comment = null, - }, - new() - { - Id = "lzn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Leinong Naga", - Comment = null, - }, - new() - { - Id = "lzz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Laz", - Comment = null, - }, - new() - { - Id = "maa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "San Jerónimo Tecóatl Mazatec", - Comment = null, - }, - new() - { - Id = "mab", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yutanduchi Mixtec", - Comment = null, - }, - new() - { - Id = "mad", - Part2B = "mad", - Part2T = "mad", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Madurese", - Comment = null, - }, - new() - { - Id = "mae", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bo-Rukul", - Comment = null, - }, - new() - { - Id = "maf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mafa", - Comment = null, - }, - new() - { - Id = "mag", - Part2B = "mag", - Part2T = "mag", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Magahi", - Comment = null, - }, - new() - { - Id = "mah", - Part2B = "mah", - Part2T = "mah", - Part1 = "mh", - Scope = "I", - LanguageType = "L", - RefName = "Marshallese", - Comment = null, - }, - new() - { - Id = "mai", - Part2B = "mai", - Part2T = "mai", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maithili", - Comment = null, - }, - new() - { - Id = "maj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jalapa De Díaz Mazatec", - Comment = null, - }, - new() - { - Id = "mak", - Part2B = "mak", - Part2T = "mak", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Makasar", - Comment = null, - }, - new() - { - Id = "mal", - Part2B = "mal", - Part2T = "mal", - Part1 = "ml", - Scope = "I", - LanguageType = "L", - RefName = "Malayalam", - Comment = null, - }, - new() - { - Id = "mam", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mam", - Comment = null, - }, - new() - { - Id = "man", - Part2B = "man", - Part2T = "man", - Part1 = null, - Scope = "M", - LanguageType = "L", - RefName = "Mandingo", - Comment = null, - }, - new() - { - Id = "maq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chiquihuitlán Mazatec", - Comment = null, - }, - new() - { - Id = "mar", - Part2B = "mar", - Part2T = "mar", - Part1 = "mr", - Scope = "I", - LanguageType = "L", - RefName = "Marathi", - Comment = null, - }, - new() - { - Id = "mas", - Part2B = "mas", - Part2T = "mas", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Masai", - Comment = null, - }, - new() - { - Id = "mat", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "San Francisco Matlatzinca", - Comment = null, - }, - new() - { - Id = "mau", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Huautla Mazatec", - Comment = null, - }, - new() - { - Id = "mav", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sateré-Mawé", - Comment = null, - }, - new() - { - Id = "maw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mampruli", - Comment = null, - }, - new() - { - Id = "max", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "North Moluccan Malay", - Comment = null, - }, - new() - { - Id = "maz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Central Mazahua", - Comment = null, - }, - new() - { - Id = "mba", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Higaonon", - Comment = null, - }, - new() - { - Id = "mbb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Bukidnon Manobo", - Comment = null, - }, - new() - { - Id = "mbc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Macushi", - Comment = null, - }, - new() - { - Id = "mbd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dibabawon Manobo", - Comment = null, - }, - new() - { - Id = "mbe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Molale", - Comment = null, - }, - new() - { - Id = "mbf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Baba Malay", - Comment = null, - }, - new() - { - Id = "mbh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mangseng", - Comment = null, - }, - new() - { - Id = "mbi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ilianen Manobo", - Comment = null, - }, - new() - { - Id = "mbj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nadëb", - Comment = null, - }, - new() - { - Id = "mbk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Malol", - Comment = null, - }, - new() - { - Id = "mbl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maxakalí", - Comment = null, - }, - new() - { - Id = "mbm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ombamba", - Comment = null, - }, - new() - { - Id = "mbn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Macaguán", - Comment = null, - }, - new() - { - Id = "mbo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mbo (Cameroon)", - Comment = null, - }, - new() - { - Id = "mbp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Malayo", - Comment = null, - }, - new() - { - Id = "mbq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maisin", - Comment = null, - }, - new() - { - Id = "mbr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nukak Makú", - Comment = null, - }, - new() - { - Id = "mbs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sarangani Manobo", - Comment = null, - }, - new() - { - Id = "mbt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Matigsalug Manobo", - Comment = null, - }, - new() - { - Id = "mbu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mbula-Bwazza", - Comment = null, - }, - new() - { - Id = "mbv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mbulungish", - Comment = null, - }, - new() - { - Id = "mbw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maring", - Comment = null, - }, - new() - { - Id = "mbx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mari (East Sepik Province)", - Comment = null, - }, - new() - { - Id = "mby", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Memoni", - Comment = null, - }, - new() - { - Id = "mbz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Amoltepec Mixtec", - Comment = null, - }, - new() - { - Id = "mca", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maca", - Comment = null, - }, - new() - { - Id = "mcb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Machiguenga", - Comment = null, - }, - new() - { - Id = "mcc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bitur", - Comment = null, - }, - new() - { - Id = "mcd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sharanahua", - Comment = null, - }, - new() - { - Id = "mce", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Itundujia Mixtec", - Comment = null, - }, - new() - { - Id = "mcf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Matsés", - Comment = null, - }, - new() - { - Id = "mcg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mapoyo", - Comment = null, - }, - new() - { - Id = "mch", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maquiritari", - Comment = null, - }, - new() - { - Id = "mci", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mese", - Comment = null, - }, - new() - { - Id = "mcj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mvanip", - Comment = null, - }, - new() - { - Id = "mck", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mbunda", - Comment = null, - }, - new() - { - Id = "mcl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Macaguaje", - Comment = null, - }, - new() - { - Id = "mcm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Malaccan Creole Portuguese", - Comment = null, - }, - new() - { - Id = "mcn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Masana", - Comment = null, - }, - new() - { - Id = "mco", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Coatlán Mixe", - Comment = null, - }, - new() - { - Id = "mcp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Makaa", - Comment = null, - }, - new() - { - Id = "mcq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ese", - Comment = null, - }, - new() - { - Id = "mcr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Menya", - Comment = null, - }, - new() - { - Id = "mcs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mambai", - Comment = null, - }, - new() - { - Id = "mct", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mengisa", - Comment = null, - }, - new() - { - Id = "mcu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cameroon Mambila", - Comment = null, - }, - new() - { - Id = "mcv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Minanibai", - Comment = null, - }, - new() - { - Id = "mcw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mawa (Chad)", - Comment = null, - }, - new() - { - Id = "mcx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mpiemo", - Comment = null, - }, - new() - { - Id = "mcy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "South Watut", - Comment = null, - }, - new() - { - Id = "mcz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mawan", - Comment = null, - }, - new() - { - Id = "mda", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mada (Nigeria)", - Comment = null, - }, - new() - { - Id = "mdb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Morigi", - Comment = null, - }, - new() - { - Id = "mdc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Soq", - Comment = null, - }, - new() - { - Id = "mdd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mbum", - Comment = null, - }, - new() - { - Id = "mde", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maba (Chad)", - Comment = null, - }, - new() - { - Id = "mdf", - Part2B = "mdf", - Part2T = "mdf", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Moksha", - Comment = null, - }, - new() - { - Id = "mdg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Massalat", - Comment = null, - }, - new() - { - Id = "mdh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maguindanaon", - Comment = null, - }, - new() - { - Id = "mdi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mamvu", - Comment = null, - }, - new() - { - Id = "mdj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mangbetu", - Comment = null, - }, - new() - { - Id = "mdk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mangbutu", - Comment = null, - }, - new() - { - Id = "mdl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maltese Sign Language", - Comment = null, - }, - new() - { - Id = "mdm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mayogo", - Comment = null, - }, - new() - { - Id = "mdn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mbati", - Comment = null, - }, - new() - { - Id = "mdp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mbala", - Comment = null, - }, - new() - { - Id = "mdq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mbole", - Comment = null, - }, - new() - { - Id = "mdr", - Part2B = "mdr", - Part2T = "mdr", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mandar", - Comment = null, - }, - new() - { - Id = "mds", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maria (Papua New Guinea)", - Comment = null, - }, - new() - { - Id = "mdt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mbere", - Comment = null, - }, - new() - { - Id = "mdu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mboko", - Comment = null, - }, - new() - { - Id = "mdv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Santa Lucía Monteverde Mixtec", - Comment = null, - }, - new() - { - Id = "mdw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mbosi", - Comment = null, - }, - new() - { - Id = "mdx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dizin", - Comment = null, - }, - new() - { - Id = "mdy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Male", - Comment = null, - }, - new() - { - Id = "mdz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Suruí Do Pará", - Comment = null, - }, - new() - { - Id = "mea", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Menka", - Comment = null, - }, - new() - { - Id = "meb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ikobi", - Comment = null, - }, - new() - { - Id = "mec", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Marra", - Comment = null, - }, - new() - { - Id = "med", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Melpa", - Comment = null, - }, - new() - { - Id = "mee", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mengen", - Comment = null, - }, - new() - { - Id = "mef", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Megam", - Comment = null, - }, - new() - { - Id = "meh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southwestern Tlaxiaco Mixtec", - Comment = null, - }, - new() - { - Id = "mei", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Midob", - Comment = null, - }, - new() - { - Id = "mej", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Meyah", - Comment = null, - }, - new() - { - Id = "mek", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mekeo", - Comment = null, - }, - new() - { - Id = "mel", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Central Melanau", - Comment = null, - }, - new() - { - Id = "mem", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Mangala", - Comment = null, - }, - new() - { - Id = "men", - Part2B = "men", - Part2T = "men", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mende (Sierra Leone)", - Comment = null, - }, - new() - { - Id = "meo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kedah Malay", - Comment = null, - }, - new() - { - Id = "mep", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Miriwoong", - Comment = null, - }, - new() - { - Id = "meq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Merey", - Comment = null, - }, - new() - { - Id = "mer", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Meru", - Comment = null, - }, - new() - { - Id = "mes", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Masmaje", - Comment = null, - }, - new() - { - Id = "met", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mato", - Comment = null, - }, - new() - { - Id = "meu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Motu", - Comment = null, - }, - new() - { - Id = "mev", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mano", - Comment = null, - }, - new() - { - Id = "mew", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maaka", - Comment = null, - }, - new() - { - Id = "mey", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hassaniyya", - Comment = null, - }, - new() - { - Id = "mez", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Menominee", - Comment = null, - }, - new() - { - Id = "mfa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pattani Malay", - Comment = null, - }, - new() - { - Id = "mfb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bangka", - Comment = null, - }, - new() - { - Id = "mfc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mba", - Comment = null, - }, - new() - { - Id = "mfd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mendankwe-Nkwen", - Comment = null, - }, - new() - { - Id = "mfe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Morisyen", - Comment = null, - }, - new() - { - Id = "mff", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Naki", - Comment = null, - }, - new() - { - Id = "mfg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mogofin", - Comment = null, - }, - new() - { - Id = "mfh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Matal", - Comment = null, - }, - new() - { - Id = "mfi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wandala", - Comment = null, - }, - new() - { - Id = "mfj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mefele", - Comment = null, - }, - new() - { - Id = "mfk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "North Mofu", - Comment = null, - }, - new() - { - Id = "mfl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Putai", - Comment = null, - }, - new() - { - Id = "mfm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Marghi South", - Comment = null, - }, - new() - { - Id = "mfn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cross River Mbembe", - Comment = null, - }, - new() - { - Id = "mfo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mbe", - Comment = null, - }, - new() - { - Id = "mfp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Makassar Malay", - Comment = null, - }, - new() - { - Id = "mfq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Moba", - Comment = null, - }, - new() - { - Id = "mfr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Marrithiyel", - Comment = null, - }, - new() - { - Id = "mfs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mexican Sign Language", - Comment = null, - }, - new() - { - Id = "mft", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mokerang", - Comment = null, - }, - new() - { - Id = "mfu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mbwela", - Comment = null, - }, - new() - { - Id = "mfv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mandjak", - Comment = null, - }, - new() - { - Id = "mfw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Mulaha", - Comment = null, - }, - new() - { - Id = "mfx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Melo", - Comment = null, - }, - new() - { - Id = "mfy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mayo", - Comment = null, - }, - new() - { - Id = "mfz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mabaan", - Comment = null, - }, - new() - { - Id = "mga", - Part2B = "mga", - Part2T = "mga", - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Middle Irish (900-1200)", - Comment = null, - }, - new() - { - Id = "mgb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mararit", - Comment = null, - }, - new() - { - Id = "mgc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Morokodo", - Comment = null, - }, - new() - { - Id = "mgd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Moru", - Comment = null, - }, - new() - { - Id = "mge", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mango", - Comment = null, - }, - new() - { - Id = "mgf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maklew", - Comment = null, - }, - new() - { - Id = "mgg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mpumpong", - Comment = null, - }, - new() - { - Id = "mgh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Makhuwa-Meetto", - Comment = null, - }, - new() - { - Id = "mgi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lijili", - Comment = null, - }, - new() - { - Id = "mgj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Abureni", - Comment = null, - }, - new() - { - Id = "mgk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mawes", - Comment = null, - }, - new() - { - Id = "mgl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maleu-Kilenge", - Comment = null, - }, - new() - { - Id = "mgm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mambae", - Comment = null, - }, - new() - { - Id = "mgn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mbangi", - Comment = null, - }, - new() - { - Id = "mgo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Meta'", - Comment = null, - }, - new() - { - Id = "mgp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Magar", - Comment = null, - }, - new() - { - Id = "mgq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Malila", - Comment = null, - }, - new() - { - Id = "mgr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mambwe-Lungu", - Comment = null, - }, - new() - { - Id = "mgs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Manda (Tanzania)", - Comment = null, - }, - new() - { - Id = "mgt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mongol", - Comment = null, - }, - new() - { - Id = "mgu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mailu", - Comment = null, - }, - new() - { - Id = "mgv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Matengo", - Comment = null, - }, - new() - { - Id = "mgw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Matumbi", - Comment = null, - }, - new() - { - Id = "mgy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mbunga", - Comment = null, - }, - new() - { - Id = "mgz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mbugwe", - Comment = null, - }, - new() - { - Id = "mha", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Manda (India)", - Comment = null, - }, - new() - { - Id = "mhb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mahongwe", - Comment = null, - }, - new() - { - Id = "mhc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mocho", - Comment = null, - }, - new() - { - Id = "mhd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mbugu", - Comment = null, - }, - new() - { - Id = "mhe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Besisi", - Comment = null, - }, - new() - { - Id = "mhf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mamaa", - Comment = null, - }, - new() - { - Id = "mhg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Margu", - Comment = null, - }, - new() - { - Id = "mhi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ma'di", - Comment = null, - }, - new() - { - Id = "mhj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mogholi", - Comment = null, - }, - new() - { - Id = "mhk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mungaka", - Comment = null, - }, - new() - { - Id = "mhl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mauwake", - Comment = null, - }, - new() - { - Id = "mhm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Makhuwa-Moniga", - Comment = null, - }, - new() - { - Id = "mhn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mòcheno", - Comment = null, - }, - new() - { - Id = "mho", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mashi (Zambia)", - Comment = null, - }, - new() - { - Id = "mhp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Balinese Malay", - Comment = null, - }, - new() - { - Id = "mhq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mandan", - Comment = null, - }, - new() - { - Id = "mhr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Mari", - Comment = null, - }, - new() - { - Id = "mhs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Buru (Indonesia)", - Comment = null, - }, - new() - { - Id = "mht", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mandahuaca", - Comment = null, - }, - new() - { - Id = "mhu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Digaro-Mishmi", - Comment = null, - }, - new() - { - Id = "mhw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mbukushu", - Comment = null, - }, - new() - { - Id = "mhx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maru", - Comment = null, - }, - new() - { - Id = "mhy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ma'anyan", - Comment = null, - }, - new() - { - Id = "mhz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mor (Mor Islands)", - Comment = null, - }, - new() - { - Id = "mia", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Miami", - Comment = null, - }, - new() - { - Id = "mib", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Atatláhuca Mixtec", - Comment = null, - }, - new() - { - Id = "mic", - Part2B = "mic", - Part2T = "mic", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mi'kmaq", - Comment = null, - }, - new() - { - Id = "mid", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mandaic", - Comment = null, - }, - new() - { - Id = "mie", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ocotepec Mixtec", - Comment = null, - }, - new() - { - Id = "mif", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mofu-Gudur", - Comment = null, - }, - new() - { - Id = "mig", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "San Miguel El Grande Mixtec", - Comment = null, - }, - new() - { - Id = "mih", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chayuco Mixtec", - Comment = null, - }, - new() - { - Id = "mii", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chigmecatitlán Mixtec", - Comment = null, - }, - new() - { - Id = "mij", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Abar", - Comment = null, - }, - new() - { - Id = "mik", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mikasuki", - Comment = null, - }, - new() - { - Id = "mil", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Peñoles Mixtec", - Comment = null, - }, - new() - { - Id = "mim", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Alacatlatzala Mixtec", - Comment = null, - }, - new() - { - Id = "min", - Part2B = "min", - Part2T = "min", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Minangkabau", - Comment = null, - }, - new() - { - Id = "mio", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pinotepa Nacional Mixtec", - Comment = null, - }, - new() - { - Id = "mip", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Apasco-Apoala Mixtec", - Comment = null, - }, - new() - { - Id = "miq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mískito", - Comment = null, - }, - new() - { - Id = "mir", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Isthmus Mixe", - Comment = null, - }, - new() - { - Id = "mis", - Part2B = "mis", - Part2T = "mis", - Part1 = null, - Scope = "S", - LanguageType = "S", - RefName = "Uncoded languages", - Comment = null, - }, - new() - { - Id = "mit", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Puebla Mixtec", - Comment = null, - }, - new() - { - Id = "miu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cacaloxtepec Mixtec", - Comment = null, - }, - new() - { - Id = "miw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Akoye", - Comment = null, - }, - new() - { - Id = "mix", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mixtepec Mixtec", - Comment = null, - }, - new() - { - Id = "miy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ayutla Mixtec", - Comment = null, - }, - new() - { - Id = "miz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Coatzospan Mixtec", - Comment = null, - }, - new() - { - Id = "mjb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Makalero", - Comment = null, - }, - new() - { - Id = "mjc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "San Juan Colorado Mixtec", - Comment = null, - }, - new() - { - Id = "mjd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northwest Maidu", - Comment = null, - }, - new() - { - Id = "mje", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Muskum", - Comment = null, - }, - new() - { - Id = "mjg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tu", - Comment = null, - }, - new() - { - Id = "mjh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mwera (Nyasa)", - Comment = null, - }, - new() - { - Id = "mji", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kim Mun", - Comment = null, - }, - new() - { - Id = "mjj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mawak", - Comment = null, - }, - new() - { - Id = "mjk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Matukar", - Comment = null, - }, - new() - { - Id = "mjl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mandeali", - Comment = null, - }, - new() - { - Id = "mjm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Medebur", - Comment = null, - }, - new() - { - Id = "mjn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ma (Papua New Guinea)", - Comment = null, - }, - new() - { - Id = "mjo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Malankuravan", - Comment = null, - }, - new() - { - Id = "mjp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Malapandaram", - Comment = null, - }, - new() - { - Id = "mjq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Malaryan", - Comment = null, - }, - new() - { - Id = "mjr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Malavedan", - Comment = null, - }, - new() - { - Id = "mjs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Miship", - Comment = null, - }, - new() - { - Id = "mjt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sauria Paharia", - Comment = null, - }, - new() - { - Id = "mju", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Manna-Dora", - Comment = null, - }, - new() - { - Id = "mjv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mannan", - Comment = null, - }, - new() - { - Id = "mjw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Karbi", - Comment = null, - }, - new() - { - Id = "mjx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mahali", - Comment = null, - }, - new() - { - Id = "mjy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Mahican", - Comment = null, - }, - new() - { - Id = "mjz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Majhi", - Comment = null, - }, - new() - { - Id = "mka", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mbre", - Comment = null, - }, - new() - { - Id = "mkb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mal Paharia", - Comment = null, - }, - new() - { - Id = "mkc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Siliput", - Comment = null, - }, - new() - { - Id = "mkd", - Part2B = "mac", - Part2T = "mkd", - Part1 = "mk", - Scope = "I", - LanguageType = "L", - RefName = "Macedonian", - Comment = null, - }, - new() - { - Id = "mke", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mawchi", - Comment = null, - }, - new() - { - Id = "mkf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Miya", - Comment = null, - }, - new() - { - Id = "mkg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mak (China)", - Comment = null, - }, - new() - { - Id = "mki", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dhatki", - Comment = null, - }, - new() - { - Id = "mkj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mokilese", - Comment = null, - }, - new() - { - Id = "mkk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Byep", - Comment = null, - }, - new() - { - Id = "mkl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mokole", - Comment = null, - }, - new() - { - Id = "mkm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Moklen", - Comment = null, - }, - new() - { - Id = "mkn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kupang Malay", - Comment = null, - }, - new() - { - Id = "mko", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mingang Doso", - Comment = null, - }, - new() - { - Id = "mkp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Moikodi", - Comment = null, - }, - new() - { - Id = "mkq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Bay Miwok", - Comment = null, - }, - new() - { - Id = "mkr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Malas", - Comment = null, - }, - new() - { - Id = "mks", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Silacayoapan Mixtec", - Comment = null, - }, - new() - { - Id = "mkt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Vamale", - Comment = null, - }, - new() - { - Id = "mku", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Konyanka Maninka", - Comment = null, - }, - new() - { - Id = "mkv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mafea", - Comment = null, - }, - new() - { - Id = "mkw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kituba (Congo)", - Comment = null, - }, - new() - { - Id = "mkx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kinamiging Manobo", - Comment = null, - }, - new() - { - Id = "mky", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "East Makian", - Comment = null, - }, - new() - { - Id = "mkz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Makasae", - Comment = null, - }, - new() - { - Id = "mla", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Malo", - Comment = null, - }, - new() - { - Id = "mlb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mbule", - Comment = null, - }, - new() - { - Id = "mlc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cao Lan", - Comment = null, - }, - new() - { - Id = "mle", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Manambu", - Comment = null, - }, - new() - { - Id = "mlf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mal", - Comment = null, - }, - new() - { - Id = "mlg", - Part2B = "mlg", - Part2T = "mlg", - Part1 = "mg", - Scope = "M", - LanguageType = "L", - RefName = "Malagasy", - Comment = null, - }, - new() - { - Id = "mlh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mape", - Comment = null, - }, - new() - { - Id = "mli", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Malimpung", - Comment = null, - }, - new() - { - Id = "mlj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Miltu", - Comment = null, - }, - new() - { - Id = "mlk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ilwana", - Comment = null, - }, - new() - { - Id = "mll", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Malua Bay", - Comment = null, - }, - new() - { - Id = "mlm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mulam", - Comment = null, - }, - new() - { - Id = "mln", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Malango", - Comment = null, - }, - new() - { - Id = "mlo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mlomp", - Comment = null, - }, - new() - { - Id = "mlp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bargam", - Comment = null, - }, - new() - { - Id = "mlq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Maninkakan", - Comment = null, - }, - new() - { - Id = "mlr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Vame", - Comment = null, - }, - new() - { - Id = "mls", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Masalit", - Comment = null, - }, - new() - { - Id = "mlt", - Part2B = "mlt", - Part2T = "mlt", - Part1 = "mt", - Scope = "I", - LanguageType = "L", - RefName = "Maltese", - Comment = null, - }, - new() - { - Id = "mlu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "To'abaita", - Comment = null, - }, - new() - { - Id = "mlv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Motlav", - Comment = null, - }, - new() - { - Id = "mlw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Moloko", - Comment = null, - }, - new() - { - Id = "mlx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Malfaxal", - Comment = null, - }, - new() - { - Id = "mlz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Malaynon", - Comment = null, - }, - new() - { - Id = "mma", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mama", - Comment = null, - }, - new() - { - Id = "mmb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Momina", - Comment = null, - }, - new() - { - Id = "mmc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Michoacán Mazahua", - Comment = null, - }, - new() - { - Id = "mmd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maonan", - Comment = null, - }, - new() - { - Id = "mme", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mae", - Comment = null, - }, - new() - { - Id = "mmf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mundat", - Comment = null, - }, - new() - { - Id = "mmg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "North Ambrym", - Comment = null, - }, - new() - { - Id = "mmh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mehináku", - Comment = null, - }, - new() - { - Id = "mmi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hember Avu", - Comment = null, - }, - new() - { - Id = "mmj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Majhwar", - Comment = null, - }, - new() - { - Id = "mmk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mukha-Dora", - Comment = null, - }, - new() - { - Id = "mml", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Man Met", - Comment = null, - }, - new() - { - Id = "mmm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maii", - Comment = null, - }, - new() - { - Id = "mmn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mamanwa", - Comment = null, - }, - new() - { - Id = "mmo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mangga Buang", - Comment = null, - }, - new() - { - Id = "mmp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Siawi", - Comment = null, - }, - new() - { - Id = "mmq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Musak", - Comment = null, - }, - new() - { - Id = "mmr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Xiangxi Miao", - Comment = null, - }, - new() - { - Id = "mmt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Malalamai", - Comment = null, - }, - new() - { - Id = "mmu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mmaala", - Comment = null, - }, - new() - { - Id = "mmv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Miriti", - Comment = null, - }, - new() - { - Id = "mmw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Emae", - Comment = null, - }, - new() - { - Id = "mmx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Madak", - Comment = null, - }, - new() - { - Id = "mmy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Migaama", - Comment = null, - }, - new() - { - Id = "mmz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mabaale", - Comment = null, - }, - new() - { - Id = "mna", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mbula", - Comment = null, - }, - new() - { - Id = "mnb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Muna", - Comment = null, - }, - new() - { - Id = "mnc", - Part2B = "mnc", - Part2T = "mnc", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Manchu", - Comment = null, - }, - new() - { - Id = "mnd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mondé", - Comment = null, - }, - new() - { - Id = "mne", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Naba", - Comment = null, - }, - new() - { - Id = "mnf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mundani", - Comment = null, - }, - new() - { - Id = "mng", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Mnong", - Comment = null, - }, - new() - { - Id = "mnh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mono (Democratic Republic of Congo)", - Comment = null, - }, - new() - { - Id = "mni", - Part2B = "mni", - Part2T = "mni", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Manipuri", - Comment = null, - }, - new() - { - Id = "mnj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Munji", - Comment = null, - }, - new() - { - Id = "mnk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mandinka", - Comment = null, - }, - new() - { - Id = "mnl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tiale", - Comment = null, - }, - new() - { - Id = "mnm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mapena", - Comment = null, - }, - new() - { - Id = "mnn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Mnong", - Comment = null, - }, - new() - { - Id = "mnp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Min Bei Chinese", - Comment = null, - }, - new() - { - Id = "mnq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Minriq", - Comment = null, - }, - new() - { - Id = "mnr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mono (USA)", - Comment = null, - }, - new() - { - Id = "mns", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mansi", - Comment = null, - }, - new() - { - Id = "mnu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mer", - Comment = null, - }, - new() - { - Id = "mnv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rennell-Bellona", - Comment = null, - }, - new() - { - Id = "mnw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mon", - Comment = null, - }, - new() - { - Id = "mnx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Manikion", - Comment = null, - }, - new() - { - Id = "mny", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Manyawa", - Comment = null, - }, - new() - { - Id = "mnz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Moni", - Comment = null, - }, - new() - { - Id = "moa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mwan", - Comment = null, - }, - new() - { - Id = "moc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mocoví", - Comment = null, - }, - new() - { - Id = "mod", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Mobilian", - Comment = null, - }, - new() - { - Id = "moe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Innu", - Comment = null, - }, - new() - { - Id = "mog", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mongondow", - Comment = null, - }, - new() - { - Id = "moh", - Part2B = "moh", - Part2T = "moh", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mohawk", - Comment = null, - }, - new() - { - Id = "moi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mboi", - Comment = null, - }, - new() - { - Id = "moj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Monzombo", - Comment = null, - }, - new() - { - Id = "mok", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Morori", - Comment = null, - }, - new() - { - Id = "mom", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Mangue", - Comment = null, - }, - new() - { - Id = "mon", - Part2B = "mon", - Part2T = "mon", - Part1 = "mn", - Scope = "M", - LanguageType = "L", - RefName = "Mongolian", - Comment = null, - }, - new() - { - Id = "moo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Monom", - Comment = null, - }, - new() - { - Id = "mop", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mopán Maya", - Comment = null, - }, - new() - { - Id = "moq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mor (Bomberai Peninsula)", - Comment = null, - }, - new() - { - Id = "mor", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Moro", - Comment = null, - }, - new() - { - Id = "mos", - Part2B = "mos", - Part2T = "mos", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mossi", - Comment = null, - }, - new() - { - Id = "mot", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Barí", - Comment = null, - }, - new() - { - Id = "mou", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mogum", - Comment = null, - }, - new() - { - Id = "mov", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mohave", - Comment = null, - }, - new() - { - Id = "mow", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Moi (Congo)", - Comment = null, - }, - new() - { - Id = "mox", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Molima", - Comment = null, - }, - new() - { - Id = "moy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Shekkacho", - Comment = null, - }, - new() - { - Id = "moz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mukulu", - Comment = null, - }, - new() - { - Id = "mpa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mpoto", - Comment = null, - }, - new() - { - Id = "mpb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Malak Malak", - Comment = null, - }, - new() - { - Id = "mpc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mangarrayi", - Comment = null, - }, - new() - { - Id = "mpd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Machinere", - Comment = null, - }, - new() - { - Id = "mpe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Majang", - Comment = null, - }, - new() - { - Id = "mpg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Marba", - Comment = null, - }, - new() - { - Id = "mph", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maung", - Comment = null, - }, - new() - { - Id = "mpi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mpade", - Comment = null, - }, - new() - { - Id = "mpj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Martu Wangka", - Comment = null, - }, - new() - { - Id = "mpk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mbara (Chad)", - Comment = null, - }, - new() - { - Id = "mpl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Middle Watut", - Comment = null, - }, - new() - { - Id = "mpm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yosondúa Mixtec", - Comment = null, - }, - new() - { - Id = "mpn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mindiri", - Comment = null, - }, - new() - { - Id = "mpo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Miu", - Comment = null, - }, - new() - { - Id = "mpp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Migabac", - Comment = null, - }, - new() - { - Id = "mpq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Matís", - Comment = null, - }, - new() - { - Id = "mpr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Vangunu", - Comment = null, - }, - new() - { - Id = "mps", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dadibi", - Comment = null, - }, - new() - { - Id = "mpt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mian", - Comment = null, - }, - new() - { - Id = "mpu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Makuráp", - Comment = null, - }, - new() - { - Id = "mpv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mungkip", - Comment = null, - }, - new() - { - Id = "mpw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mapidian", - Comment = null, - }, - new() - { - Id = "mpx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Misima-Panaeati", - Comment = null, - }, - new() - { - Id = "mpy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mapia", - Comment = null, - }, - new() - { - Id = "mpz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mpi", - Comment = null, - }, - new() - { - Id = "mqa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maba (Indonesia)", - Comment = null, - }, - new() - { - Id = "mqb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mbuko", - Comment = null, - }, - new() - { - Id = "mqc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mangole", - Comment = null, - }, - new() - { - Id = "mqe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Matepi", - Comment = null, - }, - new() - { - Id = "mqf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Momuna", - Comment = null, - }, - new() - { - Id = "mqg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kota Bangun Kutai Malay", - Comment = null, - }, - new() - { - Id = "mqh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tlazoyaltepec Mixtec", - Comment = null, - }, - new() - { - Id = "mqi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mariri", - Comment = null, - }, - new() - { - Id = "mqj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mamasa", - Comment = null, - }, - new() - { - Id = "mqk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rajah Kabunsuwan Manobo", - Comment = null, - }, - new() - { - Id = "mql", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mbelime", - Comment = null, - }, - new() - { - Id = "mqm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "South Marquesan", - Comment = null, - }, - new() - { - Id = "mqn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Moronene", - Comment = null, - }, - new() - { - Id = "mqo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Modole", - Comment = null, - }, - new() - { - Id = "mqp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Manipa", - Comment = null, - }, - new() - { - Id = "mqq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Minokok", - Comment = null, - }, - new() - { - Id = "mqr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mander", - Comment = null, - }, - new() - { - Id = "mqs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "West Makian", - Comment = null, - }, - new() - { - Id = "mqt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mok", - Comment = null, - }, - new() - { - Id = "mqu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mandari", - Comment = null, - }, - new() - { - Id = "mqv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mosimo", - Comment = null, - }, - new() - { - Id = "mqw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Murupi", - Comment = null, - }, - new() - { - Id = "mqx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mamuju", - Comment = null, - }, - new() - { - Id = "mqy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Manggarai", - Comment = null, - }, - new() - { - Id = "mqz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pano", - Comment = null, - }, - new() - { - Id = "mra", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mlabri", - Comment = null, - }, - new() - { - Id = "mrb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Marino", - Comment = null, - }, - new() - { - Id = "mrc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maricopa", - Comment = null, - }, - new() - { - Id = "mrd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Magar", - Comment = null, - }, - new() - { - Id = "mre", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Martha's Vineyard Sign Language", - Comment = null, - }, - new() - { - Id = "mrf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Elseng", - Comment = null, - }, - new() - { - Id = "mrg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mising", - Comment = null, - }, - new() - { - Id = "mrh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mara Chin", - Comment = null, - }, - new() - { - Id = "mri", - Part2B = "mao", - Part2T = "mri", - Part1 = "mi", - Scope = "I", - LanguageType = "L", - RefName = "Maori", - Comment = null, - }, - new() - { - Id = "mrj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Mari", - Comment = null, - }, - new() - { - Id = "mrk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hmwaveke", - Comment = null, - }, - new() - { - Id = "mrl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mortlockese", - Comment = null, - }, - new() - { - Id = "mrm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Merlav", - Comment = null, - }, - new() - { - Id = "mrn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cheke Holo", - Comment = null, - }, - new() - { - Id = "mro", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mru", - Comment = null, - }, - new() - { - Id = "mrp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Morouas", - Comment = null, - }, - new() - { - Id = "mrq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "North Marquesan", - Comment = null, - }, - new() - { - Id = "mrr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maria (India)", - Comment = null, - }, - new() - { - Id = "mrs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maragus", - Comment = null, - }, - new() - { - Id = "mrt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Marghi Central", - Comment = null, - }, - new() - { - Id = "mru", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mono (Cameroon)", - Comment = null, - }, - new() - { - Id = "mrv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mangareva", - Comment = null, - }, - new() - { - Id = "mrw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maranao", - Comment = null, - }, - new() - { - Id = "mrx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maremgi", - Comment = null, - }, - new() - { - Id = "mry", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mandaya", - Comment = null, - }, - new() - { - Id = "mrz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Marind", - Comment = null, - }, - new() - { - Id = "msa", - Part2B = "may", - Part2T = "msa", - Part1 = "ms", - Scope = "M", - LanguageType = "L", - RefName = "Malay (macrolanguage)", - Comment = null, - }, - new() - { - Id = "msb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Masbatenyo", - Comment = null, - }, - new() - { - Id = "msc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sankaran Maninka", - Comment = null, - }, - new() - { - Id = "msd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yucatec Maya Sign Language", - Comment = null, - }, - new() - { - Id = "mse", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Musey", - Comment = null, - }, - new() - { - Id = "msf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mekwei", - Comment = null, - }, - new() - { - Id = "msg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Moraid", - Comment = null, - }, - new() - { - Id = "msh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Masikoro Malagasy", - Comment = null, - }, - new() - { - Id = "msi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sabah Malay", - Comment = null, - }, - new() - { - Id = "msj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ma (Democratic Republic of Congo)", - Comment = null, - }, - new() - { - Id = "msk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mansaka", - Comment = null, - }, - new() - { - Id = "msl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Molof", - Comment = null, - }, - new() - { - Id = "msm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Agusan Manobo", - Comment = null, - }, - new() - { - Id = "msn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Vurës", - Comment = null, - }, - new() - { - Id = "mso", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mombum", - Comment = null, - }, - new() - { - Id = "msp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Maritsauá", - Comment = null, - }, - new() - { - Id = "msq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Caac", - Comment = null, - }, - new() - { - Id = "msr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mongolian Sign Language", - Comment = null, - }, - new() - { - Id = "mss", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "West Masela", - Comment = null, - }, - new() - { - Id = "msu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Musom", - Comment = null, - }, - new() - { - Id = "msv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maslam", - Comment = null, - }, - new() - { - Id = "msw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mansoanka", - Comment = null, - }, - new() - { - Id = "msx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Moresada", - Comment = null, - }, - new() - { - Id = "msy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aruamu", - Comment = null, - }, - new() - { - Id = "msz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Momare", - Comment = null, - }, - new() - { - Id = "mta", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cotabato Manobo", - Comment = null, - }, - new() - { - Id = "mtb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Anyin Morofo", - Comment = null, - }, - new() - { - Id = "mtc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Munit", - Comment = null, - }, - new() - { - Id = "mtd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mualang", - Comment = null, - }, - new() - { - Id = "mte", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mono (Solomon Islands)", - Comment = null, - }, - new() - { - Id = "mtf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Murik (Papua New Guinea)", - Comment = null, - }, - new() - { - Id = "mtg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Una", - Comment = null, - }, - new() - { - Id = "mth", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Munggui", - Comment = null, - }, - new() - { - Id = "mti", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maiwa (Papua New Guinea)", - Comment = null, - }, - new() - { - Id = "mtj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Moskona", - Comment = null, - }, - new() - { - Id = "mtk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mbe'", - Comment = null, - }, - new() - { - Id = "mtl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Montol", - Comment = null, - }, - new() - { - Id = "mtm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Mator", - Comment = null, - }, - new() - { - Id = "mtn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Matagalpa", - Comment = null, - }, - new() - { - Id = "mto", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Totontepec Mixe", - Comment = null, - }, - new() - { - Id = "mtp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wichí Lhamtés Nocten", - Comment = null, - }, - new() - { - Id = "mtq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Muong", - Comment = null, - }, - new() - { - Id = "mtr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mewari", - Comment = null, - }, - new() - { - Id = "mts", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yora", - Comment = null, - }, - new() - { - Id = "mtt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mota", - Comment = null, - }, - new() - { - Id = "mtu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tututepec Mixtec", - Comment = null, - }, - new() - { - Id = "mtv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Asaro'o", - Comment = null, - }, - new() - { - Id = "mtw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Binukidnon", - Comment = null, - }, - new() - { - Id = "mtx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tidaá Mixtec", - Comment = null, - }, - new() - { - Id = "mty", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nabi", - Comment = null, - }, - new() - { - Id = "mua", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mundang", - Comment = null, - }, - new() - { - Id = "mub", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mubi", - Comment = null, - }, - new() - { - Id = "muc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ajumbu", - Comment = null, - }, - new() - { - Id = "mud", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mednyj Aleut", - Comment = null, - }, - new() - { - Id = "mue", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Media Lengua", - Comment = null, - }, - new() - { - Id = "mug", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Musgu", - Comment = null, - }, - new() - { - Id = "muh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mündü", - Comment = null, - }, - new() - { - Id = "mui", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Musi", - Comment = null, - }, - new() - { - Id = "muj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mabire", - Comment = null, - }, - new() - { - Id = "muk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mugom", - Comment = null, - }, - new() - { - Id = "mul", - Part2B = "mul", - Part2T = "mul", - Part1 = null, - Scope = "S", - LanguageType = "S", - RefName = "Multiple languages", - Comment = null, - }, - new() - { - Id = "mum", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maiwala", - Comment = null, - }, - new() - { - Id = "muo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nyong", - Comment = null, - }, - new() - { - Id = "mup", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Malvi", - Comment = null, - }, - new() - { - Id = "muq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Xiangxi Miao", - Comment = null, - }, - new() - { - Id = "mur", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Murle", - Comment = null, - }, - new() - { - Id = "mus", - Part2B = "mus", - Part2T = "mus", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Creek", - Comment = null, - }, - new() - { - Id = "mut", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Muria", - Comment = null, - }, - new() - { - Id = "muu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yaaku", - Comment = null, - }, - new() - { - Id = "muv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Muthuvan", - Comment = null, - }, - new() - { - Id = "mux", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bo-Ung", - Comment = null, - }, - new() - { - Id = "muy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Muyang", - Comment = null, - }, - new() - { - Id = "muz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mursi", - Comment = null, - }, - new() - { - Id = "mva", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Manam", - Comment = null, - }, - new() - { - Id = "mvb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Mattole", - Comment = null, - }, - new() - { - Id = "mvd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mamboru", - Comment = null, - }, - new() - { - Id = "mve", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Marwari (Pakistan)", - Comment = null, - }, - new() - { - Id = "mvf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Peripheral Mongolian", - Comment = null, - }, - new() - { - Id = "mvg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yucuañe Mixtec", - Comment = null, - }, - new() - { - Id = "mvh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mulgi", - Comment = null, - }, - new() - { - Id = "mvi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Miyako", - Comment = null, - }, - new() - { - Id = "mvk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mekmek", - Comment = null, - }, - new() - { - Id = "mvl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Mbara (Australia)", - Comment = null, - }, - new() - { - Id = "mvn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Minaveha", - Comment = null, - }, - new() - { - Id = "mvo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Marovo", - Comment = null, - }, - new() - { - Id = "mvp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Duri", - Comment = null, - }, - new() - { - Id = "mvq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Moere", - Comment = null, - }, - new() - { - Id = "mvr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Marau", - Comment = null, - }, - new() - { - Id = "mvs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Massep", - Comment = null, - }, - new() - { - Id = "mvt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mpotovoro", - Comment = null, - }, - new() - { - Id = "mvu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Marfa", - Comment = null, - }, - new() - { - Id = "mvv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tagal Murut", - Comment = null, - }, - new() - { - Id = "mvw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Machinga", - Comment = null, - }, - new() - { - Id = "mvx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Meoswar", - Comment = null, - }, - new() - { - Id = "mvy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Indus Kohistani", - Comment = null, - }, - new() - { - Id = "mvz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mesqan", - Comment = null, - }, - new() - { - Id = "mwa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mwatebu", - Comment = null, - }, - new() - { - Id = "mwb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Juwal", - Comment = null, - }, - new() - { - Id = "mwc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Are", - Comment = null, - }, - new() - { - Id = "mwe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mwera (Chimwera)", - Comment = null, - }, - new() - { - Id = "mwf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Murrinh-Patha", - Comment = null, - }, - new() - { - Id = "mwg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aiklep", - Comment = null, - }, - new() - { - Id = "mwh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mouk-Aria", - Comment = null, - }, - new() - { - Id = "mwi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Labo", - Comment = null, - }, - new() - { - Id = "mwk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kita Maninkakan", - Comment = null, - }, - new() - { - Id = "mwl", - Part2B = "mwl", - Part2T = "mwl", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mirandese", - Comment = null, - }, - new() - { - Id = "mwm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sar", - Comment = null, - }, - new() - { - Id = "mwn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nyamwanga", - Comment = null, - }, - new() - { - Id = "mwo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Central Maewo", - Comment = null, - }, - new() - { - Id = "mwp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kala Lagaw Ya", - Comment = null, - }, - new() - { - Id = "mwq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mün Chin", - Comment = null, - }, - new() - { - Id = "mwr", - Part2B = "mwr", - Part2T = "mwr", - Part1 = null, - Scope = "M", - LanguageType = "L", - RefName = "Marwari", - Comment = null, - }, - new() - { - Id = "mws", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mwimbi-Muthambi", - Comment = null, - }, - new() - { - Id = "mwt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Moken", - Comment = null, - }, - new() - { - Id = "mwu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Mittu", - Comment = null, - }, - new() - { - Id = "mwv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mentawai", - Comment = null, - }, - new() - { - Id = "mww", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hmong Daw", - Comment = null, - }, - new() - { - Id = "mwz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Moingi", - Comment = null, - }, - new() - { - Id = "mxa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northwest Oaxaca Mixtec", - Comment = null, - }, - new() - { - Id = "mxb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tezoatlán Mixtec", - Comment = null, - }, - new() - { - Id = "mxc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Manyika", - Comment = null, - }, - new() - { - Id = "mxd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Modang", - Comment = null, - }, - new() - { - Id = "mxe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mele-Fila", - Comment = null, - }, - new() - { - Id = "mxf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Malgbe", - Comment = null, - }, - new() - { - Id = "mxg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mbangala", - Comment = null, - }, - new() - { - Id = "mxh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mvuba", - Comment = null, - }, - new() - { - Id = "mxi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Mozarabic", - Comment = null, - }, - new() - { - Id = "mxj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Miju-Mishmi", - Comment = null, - }, - new() - { - Id = "mxk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Monumbo", - Comment = null, - }, - new() - { - Id = "mxl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maxi Gbe", - Comment = null, - }, - new() - { - Id = "mxm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Meramera", - Comment = null, - }, - new() - { - Id = "mxn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Moi (Indonesia)", - Comment = null, - }, - new() - { - Id = "mxo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mbowe", - Comment = null, - }, - new() - { - Id = "mxp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tlahuitoltepec Mixe", - Comment = null, - }, - new() - { - Id = "mxq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Juquila Mixe", - Comment = null, - }, - new() - { - Id = "mxr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Murik (Malaysia)", - Comment = null, - }, - new() - { - Id = "mxs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Huitepec Mixtec", - Comment = null, - }, - new() - { - Id = "mxt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jamiltepec Mixtec", - Comment = null, - }, - new() - { - Id = "mxu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mada (Cameroon)", - Comment = null, - }, - new() - { - Id = "mxv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Metlatónoc Mixtec", - Comment = null, - }, - new() - { - Id = "mxw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Namo", - Comment = null, - }, - new() - { - Id = "mxx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mahou", - Comment = null, - }, - new() - { - Id = "mxy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southeastern Nochixtlán Mixtec", - Comment = null, - }, - new() - { - Id = "mxz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Central Masela", - Comment = null, - }, - new() - { - Id = "mya", - Part2B = "bur", - Part2T = "mya", - Part1 = "my", - Scope = "I", - LanguageType = "L", - RefName = "Burmese", - Comment = null, - }, - new() - { - Id = "myb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mbay", - Comment = null, - }, - new() - { - Id = "myc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mayeka", - Comment = null, - }, - new() - { - Id = "mye", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Myene", - Comment = null, - }, - new() - { - Id = "myf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bambassi", - Comment = null, - }, - new() - { - Id = "myg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Manta", - Comment = null, - }, - new() - { - Id = "myh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Makah", - Comment = null, - }, - new() - { - Id = "myj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mangayat", - Comment = null, - }, - new() - { - Id = "myk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mamara Senoufo", - Comment = null, - }, - new() - { - Id = "myl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Moma", - Comment = null, - }, - new() - { - Id = "mym", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Me'en", - Comment = null, - }, - new() - { - Id = "myo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Anfillo", - Comment = null, - }, - new() - { - Id = "myp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pirahã", - Comment = null, - }, - new() - { - Id = "myr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Muniche", - Comment = null, - }, - new() - { - Id = "mys", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Mesmes", - Comment = null, - }, - new() - { - Id = "myu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mundurukú", - Comment = null, - }, - new() - { - Id = "myv", - Part2B = "myv", - Part2T = "myv", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Erzya", - Comment = null, - }, - new() - { - Id = "myw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Muyuw", - Comment = null, - }, - new() - { - Id = "myx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Masaaba", - Comment = null, - }, - new() - { - Id = "myy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Macuna", - Comment = null, - }, - new() - { - Id = "myz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Classical Mandaic", - Comment = null, - }, - new() - { - Id = "mza", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Santa María Zacatepec Mixtec", - Comment = null, - }, - new() - { - Id = "mzb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tumzabt", - Comment = null, - }, - new() - { - Id = "mzc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Madagascar Sign Language", - Comment = null, - }, - new() - { - Id = "mzd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Malimba", - Comment = null, - }, - new() - { - Id = "mze", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Morawa", - Comment = null, - }, - new() - { - Id = "mzg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Monastic Sign Language", - Comment = null, - }, - new() - { - Id = "mzh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wichí Lhamtés Güisnay", - Comment = null, - }, - new() - { - Id = "mzi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ixcatlán Mazatec", - Comment = null, - }, - new() - { - Id = "mzj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Manya", - Comment = null, - }, - new() - { - Id = "mzk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nigeria Mambila", - Comment = null, - }, - new() - { - Id = "mzl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mazatlán Mixe", - Comment = null, - }, - new() - { - Id = "mzm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mumuye", - Comment = null, - }, - new() - { - Id = "mzn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mazanderani", - Comment = null, - }, - new() - { - Id = "mzo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Matipuhy", - Comment = null, - }, - new() - { - Id = "mzp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Movima", - Comment = null, - }, - new() - { - Id = "mzq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mori Atas", - Comment = null, - }, - new() - { - Id = "mzr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Marúbo", - Comment = null, - }, - new() - { - Id = "mzs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Macanese", - Comment = null, - }, - new() - { - Id = "mzt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mintil", - Comment = null, - }, - new() - { - Id = "mzu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Inapang", - Comment = null, - }, - new() - { - Id = "mzv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Manza", - Comment = null, - }, - new() - { - Id = "mzw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Deg", - Comment = null, - }, - new() - { - Id = "mzx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mawayana", - Comment = null, - }, - new() - { - Id = "mzy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mozambican Sign Language", - Comment = null, - }, - new() - { - Id = "mzz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maiadomu", - Comment = null, - }, - new() - { - Id = "naa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Namla", - Comment = null, - }, - new() - { - Id = "nab", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Nambikuára", - Comment = null, - }, - new() - { - Id = "nac", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Narak", - Comment = null, - }, - new() - { - Id = "nae", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Naka'ela", - Comment = null, - }, - new() - { - Id = "naf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nabak", - Comment = null, - }, - new() - { - Id = "nag", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Naga Pidgin", - Comment = null, - }, - new() - { - Id = "naj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nalu", - Comment = null, - }, - new() - { - Id = "nak", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nakanai", - Comment = null, - }, - new() - { - Id = "nal", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nalik", - Comment = null, - }, - new() - { - Id = "nam", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngan'gityemerri", - Comment = null, - }, - new() - { - Id = "nan", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Min Nan Chinese", - Comment = null, - }, - new() - { - Id = "nao", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Naaba", - Comment = null, - }, - new() - { - Id = "nap", - Part2B = "nap", - Part2T = "nap", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Neapolitan", - Comment = null, - }, - new() - { - Id = "naq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Khoekhoe", - Comment = null, - }, - new() - { - Id = "nar", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Iguta", - Comment = null, - }, - new() - { - Id = "nas", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Naasioi", - Comment = null, - }, - new() - { - Id = "nat", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ca̱hungwa̱rya̱", - Comment = null, - }, - new() - { - Id = "nau", - Part2B = "nau", - Part2T = "nau", - Part1 = "na", - Scope = "I", - LanguageType = "L", - RefName = "Nauru", - Comment = null, - }, - new() - { - Id = "nav", - Part2B = "nav", - Part2T = "nav", - Part1 = "nv", - Scope = "I", - LanguageType = "L", - RefName = "Navajo", - Comment = null, - }, - new() - { - Id = "naw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nawuri", - Comment = null, - }, - new() - { - Id = "nax", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nakwi", - Comment = null, - }, - new() - { - Id = "nay", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Ngarrindjeri", - Comment = null, - }, - new() - { - Id = "naz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Coatepec Nahuatl", - Comment = null, - }, - new() - { - Id = "nba", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nyemba", - Comment = null, - }, - new() - { - Id = "nbb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ndoe", - Comment = null, - }, - new() - { - Id = "nbc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chang Naga", - Comment = null, - }, - new() - { - Id = "nbd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngbinda", - Comment = null, - }, - new() - { - Id = "nbe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Konyak Naga", - Comment = null, - }, - new() - { - Id = "nbg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nagarchal", - Comment = null, - }, - new() - { - Id = "nbh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngamo", - Comment = null, - }, - new() - { - Id = "nbi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mao Naga", - Comment = null, - }, - new() - { - Id = "nbj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngarinyman", - Comment = null, - }, - new() - { - Id = "nbk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nake", - Comment = null, - }, - new() - { - Id = "nbl", - Part2B = "nbl", - Part2T = "nbl", - Part1 = "nr", - Scope = "I", - LanguageType = "L", - RefName = "South Ndebele", - Comment = null, - }, - new() - { - Id = "nbm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngbaka Ma'bo", - Comment = null, - }, - new() - { - Id = "nbn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kuri", - Comment = null, - }, - new() - { - Id = "nbo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nkukoli", - Comment = null, - }, - new() - { - Id = "nbp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nnam", - Comment = null, - }, - new() - { - Id = "nbq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nggem", - Comment = null, - }, - new() - { - Id = "nbr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Numana", - Comment = null, - }, - new() - { - Id = "nbs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Namibian Sign Language", - Comment = null, - }, - new() - { - Id = "nbt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Na", - Comment = null, - }, - new() - { - Id = "nbu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rongmei Naga", - Comment = null, - }, - new() - { - Id = "nbv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngamambo", - Comment = null, - }, - new() - { - Id = "nbw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Ngbandi", - Comment = null, - }, - new() - { - Id = "nby", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ningera", - Comment = null, - }, - new() - { - Id = "nca", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Iyo", - Comment = null, - }, - new() - { - Id = "ncb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Central Nicobarese", - Comment = null, - }, - new() - { - Id = "ncc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ponam", - Comment = null, - }, - new() - { - Id = "ncd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nachering", - Comment = null, - }, - new() - { - Id = "nce", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yale", - Comment = null, - }, - new() - { - Id = "ncf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Notsi", - Comment = null, - }, - new() - { - Id = "ncg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nisga'a", - Comment = null, - }, - new() - { - Id = "nch", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Central Huasteca Nahuatl", - Comment = null, - }, - new() - { - Id = "nci", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Classical Nahuatl", - Comment = null, - }, - new() - { - Id = "ncj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Puebla Nahuatl", - Comment = null, - }, - new() - { - Id = "nck", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Na-kara", - Comment = null, - }, - new() - { - Id = "ncl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Michoacán Nahuatl", - Comment = null, - }, - new() - { - Id = "ncm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nambo", - Comment = null, - }, - new() - { - Id = "ncn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nauna", - Comment = null, - }, - new() - { - Id = "nco", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sibe", - Comment = null, - }, - new() - { - Id = "ncq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Katang", - Comment = null, - }, - new() - { - Id = "ncr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ncane", - Comment = null, - }, - new() - { - Id = "ncs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nicaraguan Sign Language", - Comment = null, - }, - new() - { - Id = "nct", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chothe Naga", - Comment = null, - }, - new() - { - Id = "ncu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chumburung", - Comment = null, - }, - new() - { - Id = "ncx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Central Puebla Nahuatl", - Comment = null, - }, - new() - { - Id = "ncz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Natchez", - Comment = null, - }, - new() - { - Id = "nda", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ndasa", - Comment = null, - }, - new() - { - Id = "ndb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kenswei Nsei", - Comment = null, - }, - new() - { - Id = "ndc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ndau", - Comment = null, - }, - new() - { - Id = "ndd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nde-Nsele-Nta", - Comment = null, - }, - new() - { - Id = "nde", - Part2B = "nde", - Part2T = "nde", - Part1 = "nd", - Scope = "I", - LanguageType = "L", - RefName = "North Ndebele", - Comment = null, - }, - new() - { - Id = "ndf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Nadruvian", - Comment = null, - }, - new() - { - Id = "ndg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ndengereko", - Comment = null, - }, - new() - { - Id = "ndh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ndali", - Comment = null, - }, - new() - { - Id = "ndi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Samba Leko", - Comment = null, - }, - new() - { - Id = "ndj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ndamba", - Comment = null, - }, - new() - { - Id = "ndk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ndaka", - Comment = null, - }, - new() - { - Id = "ndl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ndolo", - Comment = null, - }, - new() - { - Id = "ndm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ndam", - Comment = null, - }, - new() - { - Id = "ndn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngundi", - Comment = null, - }, - new() - { - Id = "ndo", - Part2B = "ndo", - Part2T = "ndo", - Part1 = "ng", - Scope = "I", - LanguageType = "L", - RefName = "Ndonga", - Comment = null, - }, - new() - { - Id = "ndp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ndo", - Comment = null, - }, - new() - { - Id = "ndq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ndombe", - Comment = null, - }, - new() - { - Id = "ndr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ndoola", - Comment = null, - }, - new() - { - Id = "nds", - Part2B = "nds", - Part2T = "nds", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Low German", - Comment = null, - }, - new() - { - Id = "ndt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ndunga", - Comment = null, - }, - new() - { - Id = "ndu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dugun", - Comment = null, - }, - new() - { - Id = "ndv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ndut", - Comment = null, - }, - new() - { - Id = "ndw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ndobo", - Comment = null, - }, - new() - { - Id = "ndx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nduga", - Comment = null, - }, - new() - { - Id = "ndy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lutos", - Comment = null, - }, - new() - { - Id = "ndz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ndogo", - Comment = null, - }, - new() - { - Id = "nea", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Ngad'a", - Comment = null, - }, - new() - { - Id = "neb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Toura (Côte d'Ivoire)", - Comment = null, - }, - new() - { - Id = "nec", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nedebang", - Comment = null, - }, - new() - { - Id = "ned", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nde-Gbite", - Comment = null, - }, - new() - { - Id = "nee", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nêlêmwa-Nixumwak", - Comment = null, - }, - new() - { - Id = "nef", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nefamese", - Comment = null, - }, - new() - { - Id = "neg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Negidal", - Comment = null, - }, - new() - { - Id = "neh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nyenkha", - Comment = null, - }, - new() - { - Id = "nei", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Neo-Hittite", - Comment = null, - }, - new() - { - Id = "nej", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Neko", - Comment = null, - }, - new() - { - Id = "nek", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Neku", - Comment = null, - }, - new() - { - Id = "nem", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nemi", - Comment = null, - }, - new() - { - Id = "nen", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nengone", - Comment = null, - }, - new() - { - Id = "neo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ná-Meo", - Comment = null, - }, - new() - { - Id = "nep", - Part2B = "nep", - Part2T = "nep", - Part1 = "ne", - Scope = "M", - LanguageType = "L", - RefName = "Nepali (macrolanguage)", - Comment = null, - }, - new() - { - Id = "neq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "North Central Mixe", - Comment = null, - }, - new() - { - Id = "ner", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yahadian", - Comment = null, - }, - new() - { - Id = "nes", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bhoti Kinnauri", - Comment = null, - }, - new() - { - Id = "net", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nete", - Comment = null, - }, - new() - { - Id = "neu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "C", - RefName = "Neo", - Comment = null, - }, - new() - { - Id = "nev", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nyaheun", - Comment = null, - }, - new() - { - Id = "new", - Part2B = "new", - Part2T = "new", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nepal Bhasa", - Comment = null, - }, - new() - { - Id = "nex", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Neme", - Comment = null, - }, - new() - { - Id = "ney", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Neyo", - Comment = null, - }, - new() - { - Id = "nez", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nez Perce", - Comment = null, - }, - new() - { - Id = "nfa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dhao", - Comment = null, - }, - new() - { - Id = "nfd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ahwai", - Comment = null, - }, - new() - { - Id = "nfl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ayiwo", - Comment = null, - }, - new() - { - Id = "nfr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nafaanra", - Comment = null, - }, - new() - { - Id = "nfu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mfumte", - Comment = null, - }, - new() - { - Id = "nga", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngbaka", - Comment = null, - }, - new() - { - Id = "ngb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Ngbandi", - Comment = null, - }, - new() - { - Id = "ngc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngombe (Democratic Republic of Congo)", - Comment = null, - }, - new() - { - Id = "ngd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngando (Central African Republic)", - Comment = null, - }, - new() - { - Id = "nge", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngemba", - Comment = null, - }, - new() - { - Id = "ngg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngbaka Manza", - Comment = null, - }, - new() - { - Id = "ngh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nǁng", - Comment = null, - }, - new() - { - Id = "ngi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngizim", - Comment = null, - }, - new() - { - Id = "ngj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngie", - Comment = null, - }, - new() - { - Id = "ngk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dalabon", - Comment = null, - }, - new() - { - Id = "ngl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lomwe", - Comment = null, - }, - new() - { - Id = "ngm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngatik Men's Creole", - Comment = null, - }, - new() - { - Id = "ngn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngwo", - Comment = null, - }, - new() - { - Id = "ngp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngulu", - Comment = null, - }, - new() - { - Id = "ngq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngurimi", - Comment = null, - }, - new() - { - Id = "ngr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Engdewu", - Comment = null, - }, - new() - { - Id = "ngs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gvoko", - Comment = null, - }, - new() - { - Id = "ngt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kriang", - Comment = null, - }, - new() - { - Id = "ngu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Guerrero Nahuatl", - Comment = null, - }, - new() - { - Id = "ngv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Nagumi", - Comment = null, - }, - new() - { - Id = "ngw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngwaba", - Comment = null, - }, - new() - { - Id = "ngx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nggwahyi", - Comment = null, - }, - new() - { - Id = "ngy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tibea", - Comment = null, - }, - new() - { - Id = "ngz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngungwel", - Comment = null, - }, - new() - { - Id = "nha", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nhanda", - Comment = null, - }, - new() - { - Id = "nhb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Beng", - Comment = null, - }, - new() - { - Id = "nhc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Tabasco Nahuatl", - Comment = null, - }, - new() - { - Id = "nhd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chiripá", - Comment = null, - }, - new() - { - Id = "nhe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Huasteca Nahuatl", - Comment = null, - }, - new() - { - Id = "nhf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nhuwala", - Comment = null, - }, - new() - { - Id = "nhg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tetelcingo Nahuatl", - Comment = null, - }, - new() - { - Id = "nhh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nahari", - Comment = null, - }, - new() - { - Id = "nhi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zacatlán-Ahuacatlán-Tepetzintla Nahuatl", - Comment = null, - }, - new() - { - Id = "nhk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Isthmus-Cosoleacaque Nahuatl", - Comment = null, - }, - new() - { - Id = "nhm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Morelos Nahuatl", - Comment = null, - }, - new() - { - Id = "nhn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Central Nahuatl", - Comment = null, - }, - new() - { - Id = "nho", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Takuu", - Comment = null, - }, - new() - { - Id = "nhp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Isthmus-Pajapan Nahuatl", - Comment = null, - }, - new() - { - Id = "nhq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Huaxcaleca Nahuatl", - Comment = null, - }, - new() - { - Id = "nhr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Naro", - Comment = null, - }, - new() - { - Id = "nht", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ometepec Nahuatl", - Comment = null, - }, - new() - { - Id = "nhu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Noone", - Comment = null, - }, - new() - { - Id = "nhv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Temascaltepec Nahuatl", - Comment = null, - }, - new() - { - Id = "nhw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Huasteca Nahuatl", - Comment = null, - }, - new() - { - Id = "nhx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Isthmus-Mecayapan Nahuatl", - Comment = null, - }, - new() - { - Id = "nhy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Oaxaca Nahuatl", - Comment = null, - }, - new() - { - Id = "nhz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Santa María La Alta Nahuatl", - Comment = null, - }, - new() - { - Id = "nia", - Part2B = "nia", - Part2T = "nia", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nias", - Comment = null, - }, - new() - { - Id = "nib", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nakame", - Comment = null, - }, - new() - { - Id = "nid", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Ngandi", - Comment = null, - }, - new() - { - Id = "nie", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Niellim", - Comment = null, - }, - new() - { - Id = "nif", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nek", - Comment = null, - }, - new() - { - Id = "nig", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Ngalakgan", - Comment = null, - }, - new() - { - Id = "nih", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nyiha (Tanzania)", - Comment = null, - }, - new() - { - Id = "nii", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nii", - Comment = null, - }, - new() - { - Id = "nij", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngaju", - Comment = null, - }, - new() - { - Id = "nik", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Nicobarese", - Comment = null, - }, - new() - { - Id = "nil", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nila", - Comment = null, - }, - new() - { - Id = "nim", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nilamba", - Comment = null, - }, - new() - { - Id = "nin", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ninzo", - Comment = null, - }, - new() - { - Id = "nio", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nganasan", - Comment = null, - }, - new() - { - Id = "niq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nandi", - Comment = null, - }, - new() - { - Id = "nir", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nimboran", - Comment = null, - }, - new() - { - Id = "nis", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nimi", - Comment = null, - }, - new() - { - Id = "nit", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southeastern Kolami", - Comment = null, - }, - new() - { - Id = "niu", - Part2B = "niu", - Part2T = "niu", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Niuean", - Comment = null, - }, - new() - { - Id = "niv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gilyak", - Comment = null, - }, - new() - { - Id = "niw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nimo", - Comment = null, - }, - new() - { - Id = "nix", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hema", - Comment = null, - }, - new() - { - Id = "niy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngiti", - Comment = null, - }, - new() - { - Id = "niz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ningil", - Comment = null, - }, - new() - { - Id = "nja", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nzanyi", - Comment = null, - }, - new() - { - Id = "njb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nocte Naga", - Comment = null, - }, - new() - { - Id = "njd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ndonde Hamba", - Comment = null, - }, - new() - { - Id = "njh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lotha Naga", - Comment = null, - }, - new() - { - Id = "nji", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gudanji", - Comment = null, - }, - new() - { - Id = "njj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Njen", - Comment = null, - }, - new() - { - Id = "njl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Njalgulgule", - Comment = null, - }, - new() - { - Id = "njm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Angami Naga", - Comment = null, - }, - new() - { - Id = "njn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Liangmai Naga", - Comment = null, - }, - new() - { - Id = "njo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ao Naga", - Comment = null, - }, - new() - { - Id = "njr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Njerep", - Comment = null, - }, - new() - { - Id = "njs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nisa", - Comment = null, - }, - new() - { - Id = "njt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ndyuka-Trio Pidgin", - Comment = null, - }, - new() - { - Id = "nju", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngadjunmaya", - Comment = null, - }, - new() - { - Id = "njx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kunyi", - Comment = null, - }, - new() - { - Id = "njy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Njyem", - Comment = null, - }, - new() - { - Id = "njz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nyishi", - Comment = null, - }, - new() - { - Id = "nka", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nkoya", - Comment = null, - }, - new() - { - Id = "nkb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Khoibu Naga", - Comment = null, - }, - new() - { - Id = "nkc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nkongho", - Comment = null, - }, - new() - { - Id = "nkd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Koireng", - Comment = null, - }, - new() - { - Id = "nke", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Duke", - Comment = null, - }, - new() - { - Id = "nkf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Inpui Naga", - Comment = null, - }, - new() - { - Id = "nkg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nekgini", - Comment = null, - }, - new() - { - Id = "nkh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Khezha Naga", - Comment = null, - }, - new() - { - Id = "nki", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Thangal Naga", - Comment = null, - }, - new() - { - Id = "nkj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nakai", - Comment = null, - }, - new() - { - Id = "nkk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nokuku", - Comment = null, - }, - new() - { - Id = "nkm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Namat", - Comment = null, - }, - new() - { - Id = "nkn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nkangala", - Comment = null, - }, - new() - { - Id = "nko", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nkonya", - Comment = null, - }, - new() - { - Id = "nkp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Niuatoputapu", - Comment = null, - }, - new() - { - Id = "nkq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nkami", - Comment = null, - }, - new() - { - Id = "nkr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nukuoro", - Comment = null, - }, - new() - { - Id = "nks", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "North Asmat", - Comment = null, - }, - new() - { - Id = "nkt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nyika (Tanzania)", - Comment = null, - }, - new() - { - Id = "nku", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bouna Kulango", - Comment = null, - }, - new() - { - Id = "nkv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nyika (Malawi and Zambia)", - Comment = null, - }, - new() - { - Id = "nkw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nkutu", - Comment = null, - }, - new() - { - Id = "nkx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nkoroo", - Comment = null, - }, - new() - { - Id = "nkz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nkari", - Comment = null, - }, - new() - { - Id = "nla", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngombale", - Comment = null, - }, - new() - { - Id = "nlc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nalca", - Comment = null, - }, - new() - { - Id = "nld", - Part2B = "dut", - Part2T = "nld", - Part1 = "nl", - Scope = "I", - LanguageType = "L", - RefName = "Dutch", - Comment = null, - }, - new() - { - Id = "nle", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "East Nyala", - Comment = null, - }, - new() - { - Id = "nlg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gela", - Comment = null, - }, - new() - { - Id = "nli", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Grangali", - Comment = null, - }, - new() - { - Id = "nlj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nyali", - Comment = null, - }, - new() - { - Id = "nlk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ninia Yali", - Comment = null, - }, - new() - { - Id = "nll", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nihali", - Comment = null, - }, - new() - { - Id = "nlm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mankiyali", - Comment = null, - }, - new() - { - Id = "nlo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngul", - Comment = null, - }, - new() - { - Id = "nlq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lao Naga", - Comment = null, - }, - new() - { - Id = "nlu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nchumbulu", - Comment = null, - }, - new() - { - Id = "nlv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Orizaba Nahuatl", - Comment = null, - }, - new() - { - Id = "nlw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Walangama", - Comment = null, - }, - new() - { - Id = "nlx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nahali", - Comment = null, - }, - new() - { - Id = "nly", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nyamal", - Comment = null, - }, - new() - { - Id = "nlz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nalögo", - Comment = null, - }, - new() - { - Id = "nma", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maram Naga", - Comment = null, - }, - new() - { - Id = "nmb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Big Nambas", - Comment = null, - }, - new() - { - Id = "nmc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngam", - Comment = null, - }, - new() - { - Id = "nmd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ndumu", - Comment = null, - }, - new() - { - Id = "nme", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mzieme Naga", - Comment = null, - }, - new() - { - Id = "nmf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tangkhul Naga (India)", - Comment = null, - }, - new() - { - Id = "nmg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kwasio", - Comment = null, - }, - new() - { - Id = "nmh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Monsang Naga", - Comment = null, - }, - new() - { - Id = "nmi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nyam", - Comment = null, - }, - new() - { - Id = "nmj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngombe (Central African Republic)", - Comment = null, - }, - new() - { - Id = "nmk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Namakura", - Comment = null, - }, - new() - { - Id = "nml", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ndemli", - Comment = null, - }, - new() - { - Id = "nmm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Manangba", - Comment = null, - }, - new() - { - Id = "nmn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "ǃXóõ", - Comment = null, - }, - new() - { - Id = "nmo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Moyon Naga", - Comment = null, - }, - new() - { - Id = "nmp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Nimanbur", - Comment = null, - }, - new() - { - Id = "nmq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nambya", - Comment = null, - }, - new() - { - Id = "nmr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Nimbari", - Comment = null, - }, - new() - { - Id = "nms", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Letemboi", - Comment = null, - }, - new() - { - Id = "nmt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Namonuito", - Comment = null, - }, - new() - { - Id = "nmu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northeast Maidu", - Comment = null, - }, - new() - { - Id = "nmv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Ngamini", - Comment = null, - }, - new() - { - Id = "nmw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nimoa", - Comment = null, - }, - new() - { - Id = "nmx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nama (Papua New Guinea)", - Comment = null, - }, - new() - { - Id = "nmy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Namuyi", - Comment = null, - }, - new() - { - Id = "nmz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nawdm", - Comment = null, - }, - new() - { - Id = "nna", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nyangumarta", - Comment = null, - }, - new() - { - Id = "nnb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nande", - Comment = null, - }, - new() - { - Id = "nnc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nancere", - Comment = null, - }, - new() - { - Id = "nnd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "West Ambae", - Comment = null, - }, - new() - { - Id = "nne", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngandyera", - Comment = null, - }, - new() - { - Id = "nnf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngaing", - Comment = null, - }, - new() - { - Id = "nng", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maring Naga", - Comment = null, - }, - new() - { - Id = "nnh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngiemboon", - Comment = null, - }, - new() - { - Id = "nni", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "North Nuaulu", - Comment = null, - }, - new() - { - Id = "nnj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nyangatom", - Comment = null, - }, - new() - { - Id = "nnk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nankina", - Comment = null, - }, - new() - { - Id = "nnl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Rengma Naga", - Comment = null, - }, - new() - { - Id = "nnm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Namia", - Comment = null, - }, - new() - { - Id = "nnn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngete", - Comment = null, - }, - new() - { - Id = "nno", - Part2B = "nno", - Part2T = "nno", - Part1 = "nn", - Scope = "I", - LanguageType = "L", - RefName = "Norwegian Nynorsk", - Comment = null, - }, - new() - { - Id = "nnp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wancho Naga", - Comment = null, - }, - new() - { - Id = "nnq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngindo", - Comment = null, - }, - new() - { - Id = "nnr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Narungga", - Comment = null, - }, - new() - { - Id = "nnt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Nanticoke", - Comment = null, - }, - new() - { - Id = "nnu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dwang", - Comment = null, - }, - new() - { - Id = "nnv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Nugunu (Australia)", - Comment = null, - }, - new() - { - Id = "nnw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Nuni", - Comment = null, - }, - new() - { - Id = "nny", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Nyangga", - Comment = null, - }, - new() - { - Id = "nnz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nda'nda'", - Comment = null, - }, - new() - { - Id = "noa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Woun Meu", - Comment = null, - }, - new() - { - Id = "nob", - Part2B = "nob", - Part2T = "nob", - Part1 = "nb", - Scope = "I", - LanguageType = "L", - RefName = "Norwegian Bokmål", - Comment = null, - }, - new() - { - Id = "noc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nuk", - Comment = null, - }, - new() - { - Id = "nod", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Thai", - Comment = null, - }, - new() - { - Id = "noe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nimadi", - Comment = null, - }, - new() - { - Id = "nof", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nomane", - Comment = null, - }, - new() - { - Id = "nog", - Part2B = "nog", - Part2T = "nog", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nogai", - Comment = null, - }, - new() - { - Id = "noh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nomu", - Comment = null, - }, - new() - { - Id = "noi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Noiri", - Comment = null, - }, - new() - { - Id = "noj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nonuya", - Comment = null, - }, - new() - { - Id = "nok", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Nooksack", - Comment = null, - }, - new() - { - Id = "nol", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Nomlaki", - Comment = null, - }, - new() - { - Id = "non", - Part2B = "non", - Part2T = "non", - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Old Norse", - Comment = null, - }, - new() - { - Id = "nop", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Numanggang", - Comment = null, - }, - new() - { - Id = "noq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngongo", - Comment = null, - }, - new() - { - Id = "nor", - Part2B = "nor", - Part2T = "nor", - Part1 = "no", - Scope = "M", - LanguageType = "L", - RefName = "Norwegian", - Comment = null, - }, - new() - { - Id = "nos", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Nisu", - Comment = null, - }, - new() - { - Id = "not", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nomatsiguenga", - Comment = null, - }, - new() - { - Id = "nou", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ewage-Notu", - Comment = null, - }, - new() - { - Id = "nov", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "C", - RefName = "Novial", - Comment = null, - }, - new() - { - Id = "now", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nyambo", - Comment = null, - }, - new() - { - Id = "noy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Noy", - Comment = null, - }, - new() - { - Id = "noz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nayi", - Comment = null, - }, - new() - { - Id = "npa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nar Phu", - Comment = null, - }, - new() - { - Id = "npb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nupbikha", - Comment = null, - }, - new() - { - Id = "npg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ponyo-Gongwang Naga", - Comment = null, - }, - new() - { - Id = "nph", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Phom Naga", - Comment = null, - }, - new() - { - Id = "npi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nepali (individual language)", - Comment = null, - }, - new() - { - Id = "npl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southeastern Puebla Nahuatl", - Comment = null, - }, - new() - { - Id = "npn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mondropolon", - Comment = null, - }, - new() - { - Id = "npo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pochuri Naga", - Comment = null, - }, - new() - { - Id = "nps", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nipsan", - Comment = null, - }, - new() - { - Id = "npu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Puimei Naga", - Comment = null, - }, - new() - { - Id = "npx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Noipx", - Comment = null, - }, - new() - { - Id = "npy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Napu", - Comment = null, - }, - new() - { - Id = "nqg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Nago", - Comment = null, - }, - new() - { - Id = "nqk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kura Ede Nago", - Comment = null, - }, - new() - { - Id = "nql", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngendelengo", - Comment = null, - }, - new() - { - Id = "nqm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ndom", - Comment = null, - }, - new() - { - Id = "nqn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nen", - Comment = null, - }, - new() - { - Id = "nqo", - Part2B = "nqo", - Part2T = "nqo", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "N'Ko", - Comment = null, - }, - new() - { - Id = "nqq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kyan-Karyaw Naga", - Comment = null, - }, - new() - { - Id = "nqt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nteng", - Comment = null, - }, - new() - { - Id = "nqy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Akyaung Ari Naga", - Comment = null, - }, - new() - { - Id = "nra", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngom", - Comment = null, - }, - new() - { - Id = "nrb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nara", - Comment = null, - }, - new() - { - Id = "nrc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Noric", - Comment = null, - }, - new() - { - Id = "nre", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Rengma Naga", - Comment = null, - }, - new() - { - Id = "nrf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jèrriais", - Comment = null, - }, - new() - { - Id = "nrg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Narango", - Comment = null, - }, - new() - { - Id = "nri", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chokri Naga", - Comment = null, - }, - new() - { - Id = "nrk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngarla", - Comment = null, - }, - new() - { - Id = "nrl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngarluma", - Comment = null, - }, - new() - { - Id = "nrm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Narom", - Comment = null, - }, - new() - { - Id = "nrn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Norn", - Comment = null, - }, - new() - { - Id = "nrp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "North Picene", - Comment = null, - }, - new() - { - Id = "nrr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Norra", - Comment = null, - }, - new() - { - Id = "nrt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Northern Kalapuya", - Comment = null, - }, - new() - { - Id = "nru", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Narua", - Comment = null, - }, - new() - { - Id = "nrx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Ngurmbur", - Comment = null, - }, - new() - { - Id = "nrz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lala", - Comment = null, - }, - new() - { - Id = "nsa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sangtam Naga", - Comment = null, - }, - new() - { - Id = "nsb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Lower Nossob", - Comment = null, - }, - new() - { - Id = "nsc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nshi", - Comment = null, - }, - new() - { - Id = "nsd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Nisu", - Comment = null, - }, - new() - { - Id = "nse", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nsenga", - Comment = null, - }, - new() - { - Id = "nsf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northwestern Nisu", - Comment = null, - }, - new() - { - Id = "nsg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngasa", - Comment = null, - }, - new() - { - Id = "nsh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngoshie", - Comment = null, - }, - new() - { - Id = "nsi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nigerian Sign Language", - Comment = null, - }, - new() - { - Id = "nsk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Naskapi", - Comment = null, - }, - new() - { - Id = "nsl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Norwegian Sign Language", - Comment = null, - }, - new() - { - Id = "nsm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sumi Naga", - Comment = null, - }, - new() - { - Id = "nsn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nehan", - Comment = null, - }, - new() - { - Id = "nso", - Part2B = "nso", - Part2T = "nso", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pedi", - Comment = null, - }, - new() - { - Id = "nsp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nepalese Sign Language", - Comment = null, - }, - new() - { - Id = "nsq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Sierra Miwok", - Comment = null, - }, - new() - { - Id = "nsr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maritime Sign Language", - Comment = null, - }, - new() - { - Id = "nss", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nali", - Comment = null, - }, - new() - { - Id = "nst", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tase Naga", - Comment = null, - }, - new() - { - Id = "nsu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sierra Negra Nahuatl", - Comment = null, - }, - new() - { - Id = "nsv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southwestern Nisu", - Comment = null, - }, - new() - { - Id = "nsw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Navut", - Comment = null, - }, - new() - { - Id = "nsx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nsongo", - Comment = null, - }, - new() - { - Id = "nsy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nasal", - Comment = null, - }, - new() - { - Id = "nsz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nisenan", - Comment = null, - }, - new() - { - Id = "ntd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Tidung", - Comment = null, - }, - new() - { - Id = "ntg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Ngantangarra", - Comment = null, - }, - new() - { - Id = "nti", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Natioro", - Comment = null, - }, - new() - { - Id = "ntj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngaanyatjarra", - Comment = null, - }, - new() - { - Id = "ntk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ikoma-Nata-Isenye", - Comment = null, - }, - new() - { - Id = "ntm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nateni", - Comment = null, - }, - new() - { - Id = "nto", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ntomba", - Comment = null, - }, - new() - { - Id = "ntp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Tepehuan", - Comment = null, - }, - new() - { - Id = "ntr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Delo", - Comment = null, - }, - new() - { - Id = "ntu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Natügu", - Comment = null, - }, - new() - { - Id = "ntw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Nottoway", - Comment = null, - }, - new() - { - Id = "ntx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tangkhul Naga (Myanmar)", - Comment = null, - }, - new() - { - Id = "nty", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mantsi", - Comment = null, - }, - new() - { - Id = "ntz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Natanzi", - Comment = null, - }, - new() - { - Id = "nua", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yuanga", - Comment = null, - }, - new() - { - Id = "nuc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Nukuini", - Comment = null, - }, - new() - { - Id = "nud", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngala", - Comment = null, - }, - new() - { - Id = "nue", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngundu", - Comment = null, - }, - new() - { - Id = "nuf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nusu", - Comment = null, - }, - new() - { - Id = "nug", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Nungali", - Comment = null, - }, - new() - { - Id = "nuh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ndunda", - Comment = null, - }, - new() - { - Id = "nui", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngumbi", - Comment = null, - }, - new() - { - Id = "nuj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nyole", - Comment = null, - }, - new() - { - Id = "nuk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nuu-chah-nulth", - Comment = null, - }, - new() - { - Id = "nul", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Nusa Laut", - Comment = null, - }, - new() - { - Id = "num", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Niuafo'ou", - Comment = null, - }, - new() - { - Id = "nun", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Anong", - Comment = null, - }, - new() - { - Id = "nuo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nguôn", - Comment = null, - }, - new() - { - Id = "nup", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nupe-Nupe-Tako", - Comment = null, - }, - new() - { - Id = "nuq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nukumanu", - Comment = null, - }, - new() - { - Id = "nur", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nukuria", - Comment = null, - }, - new() - { - Id = "nus", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nuer", - Comment = null, - }, - new() - { - Id = "nut", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nung (Viet Nam)", - Comment = null, - }, - new() - { - Id = "nuu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngbundu", - Comment = null, - }, - new() - { - Id = "nuv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Nuni", - Comment = null, - }, - new() - { - Id = "nuw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nguluwan", - Comment = null, - }, - new() - { - Id = "nux", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mehek", - Comment = null, - }, - new() - { - Id = "nuy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nunggubuyu", - Comment = null, - }, - new() - { - Id = "nuz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tlamacazapa Nahuatl", - Comment = null, - }, - new() - { - Id = "nvh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nasarian", - Comment = null, - }, - new() - { - Id = "nvm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Namiae", - Comment = null, - }, - new() - { - Id = "nvo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nyokon", - Comment = null, - }, - new() - { - Id = "nwa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Nawathinehena", - Comment = null, - }, - new() - { - Id = "nwb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nyabwa", - Comment = null, - }, - new() - { - Id = "nwc", - Part2B = "nwc", - Part2T = "nwc", - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Classical Newari", - Comment = null, - }, - new() - { - Id = "nwe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngwe", - Comment = null, - }, - new() - { - Id = "nwg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Ngayawung", - Comment = null, - }, - new() - { - Id = "nwi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southwest Tanna", - Comment = null, - }, - new() - { - Id = "nwm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nyamusa-Molo", - Comment = null, - }, - new() - { - Id = "nwo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Nauo", - Comment = null, - }, - new() - { - Id = "nwr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nawaru", - Comment = null, - }, - new() - { - Id = "nww", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ndwewe", - Comment = null, - }, - new() - { - Id = "nwx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Middle Newar", - Comment = null, - }, - new() - { - Id = "nwy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Nottoway-Meherrin", - Comment = null, - }, - new() - { - Id = "nxa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nauete", - Comment = null, - }, - new() - { - Id = "nxd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngando (Democratic Republic of Congo)", - Comment = null, - }, - new() - { - Id = "nxe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nage", - Comment = null, - }, - new() - { - Id = "nxg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngad'a", - Comment = null, - }, - new() - { - Id = "nxi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nindi", - Comment = null, - }, - new() - { - Id = "nxk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Koki Naga", - Comment = null, - }, - new() - { - Id = "nxl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "South Nuaulu", - Comment = null, - }, - new() - { - Id = "nxm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Numidian", - Comment = null, - }, - new() - { - Id = "nxn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Ngawun", - Comment = null, - }, - new() - { - Id = "nxo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ndambomo", - Comment = null, - }, - new() - { - Id = "nxq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Naxi", - Comment = null, - }, - new() - { - Id = "nxr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ninggerum", - Comment = null, - }, - new() - { - Id = "nxx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nafri", - Comment = null, - }, - new() - { - Id = "nya", - Part2B = "nya", - Part2T = "nya", - Part1 = "ny", - Scope = "I", - LanguageType = "L", - RefName = "Chichewa", - Comment = null, - }, - new() - { - Id = "nyb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nyangbo", - Comment = null, - }, - new() - { - Id = "nyc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nyanga-li", - Comment = null, - }, - new() - { - Id = "nyd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nyore", - Comment = null, - }, - new() - { - Id = "nye", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nyengo", - Comment = null, - }, - new() - { - Id = "nyf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Giryama", - Comment = null, - }, - new() - { - Id = "nyg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nyindu", - Comment = null, - }, - new() - { - Id = "nyh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nyikina", - Comment = null, - }, - new() - { - Id = "nyi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ama (Sudan)", - Comment = null, - }, - new() - { - Id = "nyj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nyanga", - Comment = null, - }, - new() - { - Id = "nyk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nyaneka", - Comment = null, - }, - new() - { - Id = "nyl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nyeu", - Comment = null, - }, - new() - { - Id = "nym", - Part2B = "nym", - Part2T = "nym", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nyamwezi", - Comment = null, - }, - new() - { - Id = "nyn", - Part2B = "nyn", - Part2T = "nyn", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nyankole", - Comment = null, - }, - new() - { - Id = "nyo", - Part2B = "nyo", - Part2T = "nyo", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nyoro", - Comment = null, - }, - new() - { - Id = "nyp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Nyang'i", - Comment = null, - }, - new() - { - Id = "nyq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nayini", - Comment = null, - }, - new() - { - Id = "nyr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nyiha (Malawi)", - Comment = null, - }, - new() - { - Id = "nys", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nyungar", - Comment = null, - }, - new() - { - Id = "nyt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Nyawaygi", - Comment = null, - }, - new() - { - Id = "nyu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nyungwe", - Comment = null, - }, - new() - { - Id = "nyv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Nyulnyul", - Comment = null, - }, - new() - { - Id = "nyw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nyaw", - Comment = null, - }, - new() - { - Id = "nyx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Nganyaywana", - Comment = null, - }, - new() - { - Id = "nyy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nyakyusa-Ngonde", - Comment = null, - }, - new() - { - Id = "nza", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tigon Mbembe", - Comment = null, - }, - new() - { - Id = "nzb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Njebi", - Comment = null, - }, - new() - { - Id = "nzd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nzadi", - Comment = null, - }, - new() - { - Id = "nzi", - Part2B = "nzi", - Part2T = "nzi", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nzima", - Comment = null, - }, - new() - { - Id = "nzk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nzakara", - Comment = null, - }, - new() - { - Id = "nzm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zeme Naga", - Comment = null, - }, - new() - { - Id = "nzr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dir-Nyamzak-Mbarimi", - Comment = null, - }, - new() - { - Id = "nzs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "New Zealand Sign Language", - Comment = null, - }, - new() - { - Id = "nzu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Teke-Nzikou", - Comment = null, - }, - new() - { - Id = "nzy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nzakambay", - Comment = null, - }, - new() - { - Id = "nzz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nanga Dama Dogon", - Comment = null, - }, - new() - { - Id = "oaa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Orok", - Comment = null, - }, - new() - { - Id = "oac", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Oroch", - Comment = null, - }, - new() - { - Id = "oak", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Noakhali", - Comment = null, - }, - new() - { - Id = "oar", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Old Aramaic (up to 700 BCE)", - Comment = null, - }, - new() - { - Id = "oav", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Old Avar", - Comment = null, - }, - new() - { - Id = "obi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Obispeño", - Comment = null, - }, - new() - { - Id = "obk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Bontok", - Comment = null, - }, - new() - { - Id = "obl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Oblo", - Comment = null, - }, - new() - { - Id = "obm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Moabite", - Comment = null, - }, - new() - { - Id = "obo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Obo Manobo", - Comment = null, - }, - new() - { - Id = "obr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Old Burmese", - Comment = null, - }, - new() - { - Id = "obt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Old Breton", - Comment = null, - }, - new() - { - Id = "obu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Obulom", - Comment = null, - }, - new() - { - Id = "oca", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ocaina", - Comment = null, - }, - new() - { - Id = "och", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Old Chinese", - Comment = null, - }, - new() - { - Id = "oci", - Part2B = "oci", - Part2T = "oci", - Part1 = "oc", - Scope = "I", - LanguageType = "L", - RefName = "Occitan (post 1500)", - Comment = null, - }, - new() - { - Id = "ocm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Old Cham", - Comment = null, - }, - new() - { - Id = "oco", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Old Cornish", - Comment = null, - }, - new() - { - Id = "ocu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Atzingo Matlatzinca", - Comment = null, - }, - new() - { - Id = "oda", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Odut", - Comment = null, - }, - new() - { - Id = "odk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Od", - Comment = null, - }, - new() - { - Id = "odt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Old Dutch", - Comment = null, - }, - new() - { - Id = "odu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Odual", - Comment = null, - }, - new() - { - Id = "ofo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Ofo", - Comment = null, - }, - new() - { - Id = "ofs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Old Frisian", - Comment = null, - }, - new() - { - Id = "ofu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Efutop", - Comment = null, - }, - new() - { - Id = "ogb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ogbia", - Comment = null, - }, - new() - { - Id = "ogc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ogbah", - Comment = null, - }, - new() - { - Id = "oge", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Old Georgian", - Comment = null, - }, - new() - { - Id = "ogg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ogbogolo", - Comment = null, - }, - new() - { - Id = "ogo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Khana", - Comment = null, - }, - new() - { - Id = "ogu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ogbronuagum", - Comment = null, - }, - new() - { - Id = "oht", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Old Hittite", - Comment = null, - }, - new() - { - Id = "ohu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Old Hungarian", - Comment = null, - }, - new() - { - Id = "oia", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Oirata", - Comment = null, - }, - new() - { - Id = "oie", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Okolie", - Comment = null, - }, - new() - { - Id = "oin", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Inebu One", - Comment = null, - }, - new() - { - Id = "ojb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northwestern Ojibwa", - Comment = null, - }, - new() - { - Id = "ojc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Central Ojibwa", - Comment = null, - }, - new() - { - Id = "ojg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Ojibwa", - Comment = null, - }, - new() - { - Id = "oji", - Part2B = "oji", - Part2T = "oji", - Part1 = "oj", - Scope = "M", - LanguageType = "L", - RefName = "Ojibwa", - Comment = null, - }, - new() - { - Id = "ojp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Old Japanese", - Comment = null, - }, - new() - { - Id = "ojs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Severn Ojibwa", - Comment = null, - }, - new() - { - Id = "ojv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ontong Java", - Comment = null, - }, - new() - { - Id = "ojw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Ojibwa", - Comment = null, - }, - new() - { - Id = "oka", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Okanagan", - Comment = null, - }, - new() - { - Id = "okb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Okobo", - Comment = null, - }, - new() - { - Id = "okc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kobo", - Comment = null, - }, - new() - { - Id = "okd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Okodia", - Comment = null, - }, - new() - { - Id = "oke", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Okpe (Southwestern Edo)", - Comment = null, - }, - new() - { - Id = "okg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Koko Babangk", - Comment = null, - }, - new() - { - Id = "okh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Koresh-e Rostam", - Comment = null, - }, - new() - { - Id = "oki", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Okiek", - Comment = null, - }, - new() - { - Id = "okj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Oko-Juwoi", - Comment = null, - }, - new() - { - Id = "okk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kwamtim One", - Comment = null, - }, - new() - { - Id = "okl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Old Kentish Sign Language", - Comment = null, - }, - new() - { - Id = "okm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Middle Korean (10th-16th cent.)", - Comment = null, - }, - new() - { - Id = "okn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Oki-No-Erabu", - Comment = null, - }, - new() - { - Id = "oko", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Old Korean (3rd-9th cent.)", - Comment = null, - }, - new() - { - Id = "okr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kirike", - Comment = null, - }, - new() - { - Id = "oks", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Oko-Eni-Osayen", - Comment = null, - }, - new() - { - Id = "oku", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Oku", - Comment = null, - }, - new() - { - Id = "okv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Orokaiva", - Comment = null, - }, - new() - { - Id = "okx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Okpe (Northwestern Edo)", - Comment = null, - }, - new() - { - Id = "okz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Old Khmer", - Comment = null, - }, - new() - { - Id = "ola", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Walungge", - Comment = null, - }, - new() - { - Id = "olb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Oli-Bodiman", - Comment = null, - }, - new() - { - Id = "old", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mochi", - Comment = null, - }, - new() - { - Id = "ole", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Olekha", - Comment = null, - }, - new() - { - Id = "olk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Olkol", - Comment = null, - }, - new() - { - Id = "olm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Oloma", - Comment = null, - }, - new() - { - Id = "olo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Livvi", - Comment = null, - }, - new() - { - Id = "olr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Olrat", - Comment = null, - }, - new() - { - Id = "olt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Old Lithuanian", - Comment = null, - }, - new() - { - Id = "olu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kuvale", - Comment = null, - }, - new() - { - Id = "oma", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Omaha-Ponca", - Comment = null, - }, - new() - { - Id = "omb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "East Ambae", - Comment = null, - }, - new() - { - Id = "omc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Mochica", - Comment = null, - }, - new() - { - Id = "omg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Omagua", - Comment = null, - }, - new() - { - Id = "omi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Omi", - Comment = null, - }, - new() - { - Id = "omk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Omok", - Comment = null, - }, - new() - { - Id = "oml", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ombo", - Comment = null, - }, - new() - { - Id = "omn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Minoan", - Comment = null, - }, - new() - { - Id = "omo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Utarmbung", - Comment = null, - }, - new() - { - Id = "omp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Old Manipuri", - Comment = null, - }, - new() - { - Id = "omr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Old Marathi", - Comment = null, - }, - new() - { - Id = "omt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Omotik", - Comment = null, - }, - new() - { - Id = "omu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Omurano", - Comment = null, - }, - new() - { - Id = "omw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "South Tairora", - Comment = null, - }, - new() - { - Id = "omx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Old Mon", - Comment = null, - }, - new() - { - Id = "omy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Old Malay", - Comment = null, - }, - new() - { - Id = "ona", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ona", - Comment = null, - }, - new() - { - Id = "onb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lingao", - Comment = null, - }, - new() - { - Id = "one", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Oneida", - Comment = null, - }, - new() - { - Id = "ong", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Olo", - Comment = null, - }, - new() - { - Id = "oni", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Onin", - Comment = null, - }, - new() - { - Id = "onj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Onjob", - Comment = null, - }, - new() - { - Id = "onk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kabore One", - Comment = null, - }, - new() - { - Id = "onn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Onobasulu", - Comment = null, - }, - new() - { - Id = "ono", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Onondaga", - Comment = null, - }, - new() - { - Id = "onp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sartang", - Comment = null, - }, - new() - { - Id = "onr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern One", - Comment = null, - }, - new() - { - Id = "ons", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ono", - Comment = null, - }, - new() - { - Id = "ont", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ontenu", - Comment = null, - }, - new() - { - Id = "onu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Unua", - Comment = null, - }, - new() - { - Id = "onw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Old Nubian", - Comment = null, - }, - new() - { - Id = "onx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Onin Based Pidgin", - Comment = null, - }, - new() - { - Id = "ood", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tohono O'odham", - Comment = null, - }, - new() - { - Id = "oog", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ong", - Comment = null, - }, - new() - { - Id = "oon", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Önge", - Comment = null, - }, - new() - { - Id = "oor", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Oorlams", - Comment = null, - }, - new() - { - Id = "oos", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Old Ossetic", - Comment = null, - }, - new() - { - Id = "opa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Okpamheri", - Comment = null, - }, - new() - { - Id = "opk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kopkaka", - Comment = null, - }, - new() - { - Id = "opm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Oksapmin", - Comment = null, - }, - new() - { - Id = "opo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Opao", - Comment = null, - }, - new() - { - Id = "opt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Opata", - Comment = null, - }, - new() - { - Id = "opy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ofayé", - Comment = null, - }, - new() - { - Id = "ora", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Oroha", - Comment = null, - }, - new() - { - Id = "orc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Orma", - Comment = null, - }, - new() - { - Id = "ore", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Orejón", - Comment = null, - }, - new() - { - Id = "org", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Oring", - Comment = null, - }, - new() - { - Id = "orh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Oroqen", - Comment = null, - }, - new() - { - Id = "ori", - Part2B = "ori", - Part2T = "ori", - Part1 = "or", - Scope = "M", - LanguageType = "L", - RefName = "Oriya (macrolanguage)", - Comment = null, - }, - new() - { - Id = "orm", - Part2B = "orm", - Part2T = "orm", - Part1 = "om", - Scope = "M", - LanguageType = "L", - RefName = "Oromo", - Comment = null, - }, - new() - { - Id = "orn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Orang Kanaq", - Comment = null, - }, - new() - { - Id = "oro", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Orokolo", - Comment = null, - }, - new() - { - Id = "orr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Oruma", - Comment = null, - }, - new() - { - Id = "ors", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Orang Seletar", - Comment = null, - }, - new() - { - Id = "ort", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Adivasi Oriya", - Comment = null, - }, - new() - { - Id = "oru", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ormuri", - Comment = null, - }, - new() - { - Id = "orv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Old Russian", - Comment = null, - }, - new() - { - Id = "orw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Oro Win", - Comment = null, - }, - new() - { - Id = "orx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Oro", - Comment = null, - }, - new() - { - Id = "ory", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Odia", - Comment = null, - }, - new() - { - Id = "orz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ormu", - Comment = null, - }, - new() - { - Id = "osa", - Part2B = "osa", - Part2T = "osa", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Osage", - Comment = null, - }, - new() - { - Id = "osc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Oscan", - Comment = null, - }, - new() - { - Id = "osd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Digor Ossetic", - Comment = null, - }, - new() - { - Id = "osi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Osing", - Comment = null, - }, - new() - { - Id = "osn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Old Sundanese", - Comment = null, - }, - new() - { - Id = "oso", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ososo", - Comment = null, - }, - new() - { - Id = "osp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Old Spanish", - Comment = null, - }, - new() - { - Id = "oss", - Part2B = "oss", - Part2T = "oss", - Part1 = "os", - Scope = "I", - LanguageType = "L", - RefName = "Iron Ossetic", - Comment = null, - }, - new() - { - Id = "ost", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Osatu", - Comment = null, - }, - new() - { - Id = "osu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern One", - Comment = null, - }, - new() - { - Id = "osx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Old Saxon", - Comment = null, - }, - new() - { - Id = "ota", - Part2B = "ota", - Part2T = "ota", - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Ottoman Turkish (1500-1928)", - Comment = null, - }, - new() - { - Id = "otb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Old Tibetan", - Comment = null, - }, - new() - { - Id = "otd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ot Danum", - Comment = null, - }, - new() - { - Id = "ote", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mezquital Otomi", - Comment = null, - }, - new() - { - Id = "oti", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Oti", - Comment = null, - }, - new() - { - Id = "otk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Old Turkish", - Comment = null, - }, - new() - { - Id = "otl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tilapa Otomi", - Comment = null, - }, - new() - { - Id = "otm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Highland Otomi", - Comment = null, - }, - new() - { - Id = "otn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tenango Otomi", - Comment = null, - }, - new() - { - Id = "otq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Querétaro Otomi", - Comment = null, - }, - new() - { - Id = "otr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Otoro", - Comment = null, - }, - new() - { - Id = "ots", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Estado de México Otomi", - Comment = null, - }, - new() - { - Id = "ott", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Temoaya Otomi", - Comment = null, - }, - new() - { - Id = "otu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Otuke", - Comment = null, - }, - new() - { - Id = "otw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ottawa", - Comment = null, - }, - new() - { - Id = "otx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Texcatepec Otomi", - Comment = null, - }, - new() - { - Id = "oty", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Old Tamil", - Comment = null, - }, - new() - { - Id = "otz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ixtenco Otomi", - Comment = null, - }, - new() - { - Id = "oua", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tagargrent", - Comment = null, - }, - new() - { - Id = "oub", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Glio-Oubi", - Comment = null, - }, - new() - { - Id = "oue", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Oune", - Comment = null, - }, - new() - { - Id = "oui", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Old Uighur", - Comment = null, - }, - new() - { - Id = "oum", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Ouma", - Comment = null, - }, - new() - { - Id = "ovd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Elfdalian", - Comment = null, - }, - new() - { - Id = "owi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Owiniga", - Comment = null, - }, - new() - { - Id = "owl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Old Welsh", - Comment = null, - }, - new() - { - Id = "oyb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Oy", - Comment = null, - }, - new() - { - Id = "oyd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Oyda", - Comment = null, - }, - new() - { - Id = "oym", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wayampi", - Comment = null, - }, - new() - { - Id = "oyy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Oya'oya", - Comment = null, - }, - new() - { - Id = "ozm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Koonzime", - Comment = null, - }, - new() - { - Id = "pab", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Parecís", - Comment = null, - }, - new() - { - Id = "pac", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pacoh", - Comment = null, - }, - new() - { - Id = "pad", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Paumarí", - Comment = null, - }, - new() - { - Id = "pae", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pagibete", - Comment = null, - }, - new() - { - Id = "paf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Paranawát", - Comment = null, - }, - new() - { - Id = "pag", - Part2B = "pag", - Part2T = "pag", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pangasinan", - Comment = null, - }, - new() - { - Id = "pah", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tenharim", - Comment = null, - }, - new() - { - Id = "pai", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pe", - Comment = null, - }, - new() - { - Id = "pak", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Parakanã", - Comment = null, - }, - new() - { - Id = "pal", - Part2B = "pal", - Part2T = "pal", - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Pahlavi", - Comment = null, - }, - new() - { - Id = "pam", - Part2B = "pam", - Part2T = "pam", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pampanga", - Comment = null, - }, - new() - { - Id = "pan", - Part2B = "pan", - Part2T = "pan", - Part1 = "pa", - Scope = "I", - LanguageType = "L", - RefName = "Panjabi", - Comment = null, - }, - new() - { - Id = "pao", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Paiute", - Comment = null, - }, - new() - { - Id = "pap", - Part2B = "pap", - Part2T = "pap", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Papiamento", - Comment = null, - }, - new() - { - Id = "paq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Parya", - Comment = null, - }, - new() - { - Id = "par", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Panamint", - Comment = null, - }, - new() - { - Id = "pas", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Papasena", - Comment = null, - }, - new() - { - Id = "pau", - Part2B = "pau", - Part2T = "pau", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Palauan", - Comment = null, - }, - new() - { - Id = "pav", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pakaásnovos", - Comment = null, - }, - new() - { - Id = "paw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pawnee", - Comment = null, - }, - new() - { - Id = "pax", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Pankararé", - Comment = null, - }, - new() - { - Id = "pay", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pech", - Comment = null, - }, - new() - { - Id = "paz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Pankararú", - Comment = null, - }, - new() - { - Id = "pbb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Páez", - Comment = null, - }, - new() - { - Id = "pbc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Patamona", - Comment = null, - }, - new() - { - Id = "pbe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mezontla Popoloca", - Comment = null, - }, - new() - { - Id = "pbf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Coyotepec Popoloca", - Comment = null, - }, - new() - { - Id = "pbg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Paraujano", - Comment = null, - }, - new() - { - Id = "pbh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "E'ñapa Woromaipu", - Comment = null, - }, - new() - { - Id = "pbi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Parkwa", - Comment = null, - }, - new() - { - Id = "pbl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mak (Nigeria)", - Comment = null, - }, - new() - { - Id = "pbm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Puebla Mazatec", - Comment = null, - }, - new() - { - Id = "pbn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kpasam", - Comment = null, - }, - new() - { - Id = "pbo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Papel", - Comment = null, - }, - new() - { - Id = "pbp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Badyara", - Comment = null, - }, - new() - { - Id = "pbr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pangwa", - Comment = null, - }, - new() - { - Id = "pbs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Central Pame", - Comment = null, - }, - new() - { - Id = "pbt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Pashto", - Comment = null, - }, - new() - { - Id = "pbu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Pashto", - Comment = null, - }, - new() - { - Id = "pbv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pnar", - Comment = null, - }, - new() - { - Id = "pby", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pyu (Papua New Guinea)", - Comment = null, - }, - new() - { - Id = "pca", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Santa Inés Ahuatempan Popoloca", - Comment = null, - }, - new() - { - Id = "pcb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pear", - Comment = null, - }, - new() - { - Id = "pcc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bouyei", - Comment = null, - }, - new() - { - Id = "pcd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Picard", - Comment = null, - }, - new() - { - Id = "pce", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ruching Palaung", - Comment = null, - }, - new() - { - Id = "pcf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Paliyan", - Comment = null, - }, - new() - { - Id = "pcg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Paniya", - Comment = null, - }, - new() - { - Id = "pch", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pardhan", - Comment = null, - }, - new() - { - Id = "pci", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Duruwa", - Comment = null, - }, - new() - { - Id = "pcj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Parenga", - Comment = null, - }, - new() - { - Id = "pck", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Paite Chin", - Comment = null, - }, - new() - { - Id = "pcl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pardhi", - Comment = null, - }, - new() - { - Id = "pcm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nigerian Pidgin", - Comment = null, - }, - new() - { - Id = "pcn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Piti", - Comment = null, - }, - new() - { - Id = "pcp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pacahuara", - Comment = null, - }, - new() - { - Id = "pcw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pyapun", - Comment = null, - }, - new() - { - Id = "pda", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Anam", - Comment = null, - }, - new() - { - Id = "pdc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pennsylvania German", - Comment = null, - }, - new() - { - Id = "pdi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pa Di", - Comment = null, - }, - new() - { - Id = "pdn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Podena", - Comment = null, - }, - new() - { - Id = "pdo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Padoe", - Comment = null, - }, - new() - { - Id = "pdt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Plautdietsch", - Comment = null, - }, - new() - { - Id = "pdu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kayan", - Comment = null, - }, - new() - { - Id = "pea", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Peranakan Indonesian", - Comment = null, - }, - new() - { - Id = "peb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Eastern Pomo", - Comment = null, - }, - new() - { - Id = "ped", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mala (Papua New Guinea)", - Comment = null, - }, - new() - { - Id = "pee", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Taje", - Comment = null, - }, - new() - { - Id = "pef", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Northeastern Pomo", - Comment = null, - }, - new() - { - Id = "peg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pengo", - Comment = null, - }, - new() - { - Id = "peh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bonan", - Comment = null, - }, - new() - { - Id = "pei", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chichimeca-Jonaz", - Comment = null, - }, - new() - { - Id = "pej", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Northern Pomo", - Comment = null, - }, - new() - { - Id = "pek", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Penchal", - Comment = null, - }, - new() - { - Id = "pel", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pekal", - Comment = null, - }, - new() - { - Id = "pem", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Phende", - Comment = null, - }, - new() - { - Id = "peo", - Part2B = "peo", - Part2T = "peo", - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Old Persian (ca. 600-400 B.C.)", - Comment = null, - }, - new() - { - Id = "pep", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kunja", - Comment = null, - }, - new() - { - Id = "peq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Pomo", - Comment = null, - }, - new() - { - Id = "pes", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Iranian Persian", - Comment = null, - }, - new() - { - Id = "pev", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pémono", - Comment = null, - }, - new() - { - Id = "pex", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Petats", - Comment = null, - }, - new() - { - Id = "pey", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Petjo", - Comment = null, - }, - new() - { - Id = "pez", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Penan", - Comment = null, - }, - new() - { - Id = "pfa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pááfang", - Comment = null, - }, - new() - { - Id = "pfe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pere", - Comment = null, - }, - new() - { - Id = "pfl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pfaelzisch", - Comment = null, - }, - new() - { - Id = "pga", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sudanese Creole Arabic", - Comment = null, - }, - new() - { - Id = "pgd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Gāndhārī", - Comment = null, - }, - new() - { - Id = "pgg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pangwali", - Comment = null, - }, - new() - { - Id = "pgi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pagi", - Comment = null, - }, - new() - { - Id = "pgk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rerep", - Comment = null, - }, - new() - { - Id = "pgl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Primitive Irish", - Comment = null, - }, - new() - { - Id = "pgn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Paelignian", - Comment = null, - }, - new() - { - Id = "pgs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pangseng", - Comment = null, - }, - new() - { - Id = "pgu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pagu", - Comment = null, - }, - new() - { - Id = "pgz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Papua New Guinean Sign Language", - Comment = null, - }, - new() - { - Id = "pha", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pa-Hng", - Comment = null, - }, - new() - { - Id = "phd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Phudagi", - Comment = null, - }, - new() - { - Id = "phg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Phuong", - Comment = null, - }, - new() - { - Id = "phh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Phukha", - Comment = null, - }, - new() - { - Id = "phj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pahari", - Comment = null, - }, - new() - { - Id = "phk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Phake", - Comment = null, - }, - new() - { - Id = "phl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Phalura", - Comment = null, - }, - new() - { - Id = "phm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Phimbi", - Comment = null, - }, - new() - { - Id = "phn", - Part2B = "phn", - Part2T = "phn", - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Phoenician", - Comment = null, - }, - new() - { - Id = "pho", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Phunoi", - Comment = null, - }, - new() - { - Id = "phq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Phana'", - Comment = null, - }, - new() - { - Id = "phr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pahari-Potwari", - Comment = null, - }, - new() - { - Id = "pht", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Phu Thai", - Comment = null, - }, - new() - { - Id = "phu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Phuan", - Comment = null, - }, - new() - { - Id = "phv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pahlavani", - Comment = null, - }, - new() - { - Id = "phw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Phangduwali", - Comment = null, - }, - new() - { - Id = "pia", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pima Bajo", - Comment = null, - }, - new() - { - Id = "pib", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yine", - Comment = null, - }, - new() - { - Id = "pic", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pinji", - Comment = null, - }, - new() - { - Id = "pid", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Piaroa", - Comment = null, - }, - new() - { - Id = "pie", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Piro", - Comment = null, - }, - new() - { - Id = "pif", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pingelapese", - Comment = null, - }, - new() - { - Id = "pig", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pisabo", - Comment = null, - }, - new() - { - Id = "pih", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pitcairn-Norfolk", - Comment = null, - }, - new() - { - Id = "pij", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Pijao", - Comment = null, - }, - new() - { - Id = "pil", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yom", - Comment = null, - }, - new() - { - Id = "pim", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Powhatan", - Comment = null, - }, - new() - { - Id = "pin", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Piame", - Comment = null, - }, - new() - { - Id = "pio", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Piapoco", - Comment = null, - }, - new() - { - Id = "pip", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pero", - Comment = null, - }, - new() - { - Id = "pir", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Piratapuyo", - Comment = null, - }, - new() - { - Id = "pis", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pijin", - Comment = null, - }, - new() - { - Id = "pit", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Pitta Pitta", - Comment = null, - }, - new() - { - Id = "piu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pintupi-Luritja", - Comment = null, - }, - new() - { - Id = "piv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pileni", - Comment = null, - }, - new() - { - Id = "piw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pimbwe", - Comment = null, - }, - new() - { - Id = "pix", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Piu", - Comment = null, - }, - new() - { - Id = "piy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Piya-Kwonci", - Comment = null, - }, - new() - { - Id = "piz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pije", - Comment = null, - }, - new() - { - Id = "pjt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pitjantjatjara", - Comment = null, - }, - new() - { - Id = "pka", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Ardhamāgadhī Prākrit", - Comment = null, - }, - new() - { - Id = "pkb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pokomo", - Comment = null, - }, - new() - { - Id = "pkc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Paekche", - Comment = null, - }, - new() - { - Id = "pkg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pak-Tong", - Comment = null, - }, - new() - { - Id = "pkh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pankhu", - Comment = null, - }, - new() - { - Id = "pkn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pakanha", - Comment = null, - }, - new() - { - Id = "pko", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pökoot", - Comment = null, - }, - new() - { - Id = "pkp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pukapuka", - Comment = null, - }, - new() - { - Id = "pkr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Attapady Kurumba", - Comment = null, - }, - new() - { - Id = "pks", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pakistan Sign Language", - Comment = null, - }, - new() - { - Id = "pkt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maleng", - Comment = null, - }, - new() - { - Id = "pku", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Paku", - Comment = null, - }, - new() - { - Id = "pla", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Miani", - Comment = null, - }, - new() - { - Id = "plb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Polonombauk", - Comment = null, - }, - new() - { - Id = "plc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Central Palawano", - Comment = null, - }, - new() - { - Id = "pld", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Polari", - Comment = null, - }, - new() - { - Id = "ple", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Palu'e", - Comment = null, - }, - new() - { - Id = "plg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pilagá", - Comment = null, - }, - new() - { - Id = "plh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Paulohi", - Comment = null, - }, - new() - { - Id = "pli", - Part2B = "pli", - Part2T = "pli", - Part1 = "pi", - Scope = "I", - LanguageType = "H", - RefName = "Pali", - Comment = null, - }, - new() - { - Id = "plk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kohistani Shina", - Comment = null, - }, - new() - { - Id = "pll", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Shwe Palaung", - Comment = null, - }, - new() - { - Id = "pln", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Palenquero", - Comment = null, - }, - new() - { - Id = "plo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Oluta Popoluca", - Comment = null, - }, - new() - { - Id = "plq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Palaic", - Comment = null, - }, - new() - { - Id = "plr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Palaka Senoufo", - Comment = null, - }, - new() - { - Id = "pls", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "San Marcos Tlacoyalco Popoloca", - Comment = null, - }, - new() - { - Id = "plt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Plateau Malagasy", - Comment = null, - }, - new() - { - Id = "plu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Palikúr", - Comment = null, - }, - new() - { - Id = "plv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southwest Palawano", - Comment = null, - }, - new() - { - Id = "plw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Brooke's Point Palawano", - Comment = null, - }, - new() - { - Id = "ply", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bolyu", - Comment = null, - }, - new() - { - Id = "plz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Paluan", - Comment = null, - }, - new() - { - Id = "pma", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Paama", - Comment = null, - }, - new() - { - Id = "pmb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pambia", - Comment = null, - }, - new() - { - Id = "pmd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Pallanganmiddang", - Comment = null, - }, - new() - { - Id = "pme", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pwaamei", - Comment = null, - }, - new() - { - Id = "pmf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pamona", - Comment = null, - }, - new() - { - Id = "pmh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Māhārāṣṭri Prākrit", - Comment = null, - }, - new() - { - Id = "pmi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Pumi", - Comment = null, - }, - new() - { - Id = "pmj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Pumi", - Comment = null, - }, - new() - { - Id = "pml", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Lingua Franca", - Comment = null, - }, - new() - { - Id = "pmm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pomo", - Comment = null, - }, - new() - { - Id = "pmn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pam", - Comment = null, - }, - new() - { - Id = "pmo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pom", - Comment = null, - }, - new() - { - Id = "pmq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Pame", - Comment = null, - }, - new() - { - Id = "pmr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Paynamar", - Comment = null, - }, - new() - { - Id = "pms", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Piemontese", - Comment = null, - }, - new() - { - Id = "pmt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tuamotuan", - Comment = null, - }, - new() - { - Id = "pmw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Plains Miwok", - Comment = null, - }, - new() - { - Id = "pmx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Poumei Naga", - Comment = null, - }, - new() - { - Id = "pmy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Papuan Malay", - Comment = null, - }, - new() - { - Id = "pmz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Southern Pame", - Comment = null, - }, - new() - { - Id = "pna", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Punan Bah-Biau", - Comment = null, - }, - new() - { - Id = "pnb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Panjabi", - Comment = null, - }, - new() - { - Id = "pnc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pannei", - Comment = null, - }, - new() - { - Id = "pnd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mpinda", - Comment = null, - }, - new() - { - Id = "pne", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Penan", - Comment = null, - }, - new() - { - Id = "png", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pangu", - Comment = null, - }, - new() - { - Id = "pnh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Penrhyn", - Comment = null, - }, - new() - { - Id = "pni", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aoheng", - Comment = null, - }, - new() - { - Id = "pnj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Pinjarup", - Comment = null, - }, - new() - { - Id = "pnk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Paunaka", - Comment = null, - }, - new() - { - Id = "pnl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Paleni", - Comment = null, - }, - new() - { - Id = "pnm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Punan Batu 1", - Comment = null, - }, - new() - { - Id = "pnn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pinai-Hagahai", - Comment = null, - }, - new() - { - Id = "pno", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Panobo", - Comment = null, - }, - new() - { - Id = "pnp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pancana", - Comment = null, - }, - new() - { - Id = "pnq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pana (Burkina Faso)", - Comment = null, - }, - new() - { - Id = "pnr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Panim", - Comment = null, - }, - new() - { - Id = "pns", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ponosakan", - Comment = null, - }, - new() - { - Id = "pnt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pontic", - Comment = null, - }, - new() - { - Id = "pnu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jiongnai Bunu", - Comment = null, - }, - new() - { - Id = "pnv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pinigura", - Comment = null, - }, - new() - { - Id = "pnw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Banyjima", - Comment = null, - }, - new() - { - Id = "pnx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Phong-Kniang", - Comment = null, - }, - new() - { - Id = "pny", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pinyin", - Comment = null, - }, - new() - { - Id = "pnz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pana (Central African Republic)", - Comment = null, - }, - new() - { - Id = "poc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Poqomam", - Comment = null, - }, - new() - { - Id = "poe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "San Juan Atzingo Popoloca", - Comment = null, - }, - new() - { - Id = "pof", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Poke", - Comment = null, - }, - new() - { - Id = "pog", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Potiguára", - Comment = null, - }, - new() - { - Id = "poh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Poqomchi'", - Comment = null, - }, - new() - { - Id = "poi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Highland Popoluca", - Comment = null, - }, - new() - { - Id = "pok", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pokangá", - Comment = null, - }, - new() - { - Id = "pol", - Part2B = "pol", - Part2T = "pol", - Part1 = "pl", - Scope = "I", - LanguageType = "L", - RefName = "Polish", - Comment = null, - }, - new() - { - Id = "pom", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southeastern Pomo", - Comment = null, - }, - new() - { - Id = "pon", - Part2B = "pon", - Part2T = "pon", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pohnpeian", - Comment = null, - }, - new() - { - Id = "poo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Central Pomo", - Comment = null, - }, - new() - { - Id = "pop", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pwapwâ", - Comment = null, - }, - new() - { - Id = "poq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Texistepec Popoluca", - Comment = null, - }, - new() - { - Id = "por", - Part2B = "por", - Part2T = "por", - Part1 = "pt", - Scope = "I", - LanguageType = "L", - RefName = "Portuguese", - Comment = null, - }, - new() - { - Id = "pos", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sayula Popoluca", - Comment = null, - }, - new() - { - Id = "pot", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Potawatomi", - Comment = null, - }, - new() - { - Id = "pov", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Upper Guinea Crioulo", - Comment = null, - }, - new() - { - Id = "pow", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "San Felipe Otlaltepec Popoloca", - Comment = null, - }, - new() - { - Id = "pox", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Polabian", - Comment = null, - }, - new() - { - Id = "poy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pogolo", - Comment = null, - }, - new() - { - Id = "ppe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Papi", - Comment = null, - }, - new() - { - Id = "ppi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Paipai", - Comment = null, - }, - new() - { - Id = "ppk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Uma", - Comment = null, - }, - new() - { - Id = "ppl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pipil", - Comment = null, - }, - new() - { - Id = "ppm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Papuma", - Comment = null, - }, - new() - { - Id = "ppn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Papapana", - Comment = null, - }, - new() - { - Id = "ppo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Folopa", - Comment = null, - }, - new() - { - Id = "ppp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pelende", - Comment = null, - }, - new() - { - Id = "ppq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pei", - Comment = null, - }, - new() - { - Id = "pps", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "San Luís Temalacayuca Popoloca", - Comment = null, - }, - new() - { - Id = "ppt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pare", - Comment = null, - }, - new() - { - Id = "ppu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Papora", - Comment = null, - }, - new() - { - Id = "pqa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pa'a", - Comment = null, - }, - new() - { - Id = "pqm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Malecite-Passamaquoddy", - Comment = null, - }, - new() - { - Id = "prc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Parachi", - Comment = null, - }, - new() - { - Id = "prd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Parsi-Dari", - Comment = null, - }, - new() - { - Id = "pre", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Principense", - Comment = null, - }, - new() - { - Id = "prf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Paranan", - Comment = null, - }, - new() - { - Id = "prg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Prussian", - Comment = null, - }, - new() - { - Id = "prh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Porohanon", - Comment = null, - }, - new() - { - Id = "pri", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Paicî", - Comment = null, - }, - new() - { - Id = "prk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Parauk", - Comment = null, - }, - new() - { - Id = "prl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Peruvian Sign Language", - Comment = null, - }, - new() - { - Id = "prm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kibiri", - Comment = null, - }, - new() - { - Id = "prn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Prasuni", - Comment = null, - }, - new() - { - Id = "pro", - Part2B = "pro", - Part2T = "pro", - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Old Provençal (to 1500)", - Comment = null, - }, - new() - { - Id = "prq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ashéninka Perené", - Comment = null, - }, - new() - { - Id = "prr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Puri", - Comment = null, - }, - new() - { - Id = "prs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dari", - Comment = null, - }, - new() - { - Id = "prt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Phai", - Comment = null, - }, - new() - { - Id = "pru", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Puragi", - Comment = null, - }, - new() - { - Id = "prw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Parawen", - Comment = null, - }, - new() - { - Id = "prx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Purik", - Comment = null, - }, - new() - { - Id = "prz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Providencia Sign Language", - Comment = null, - }, - new() - { - Id = "psa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Asue Awyu", - Comment = null, - }, - new() - { - Id = "psc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Iranian Sign Language", - Comment = null, - }, - new() - { - Id = "psd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Plains Indian Sign Language", - Comment = null, - }, - new() - { - Id = "pse", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Central Malay", - Comment = null, - }, - new() - { - Id = "psg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Penang Sign Language", - Comment = null, - }, - new() - { - Id = "psh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southwest Pashai", - Comment = null, - }, - new() - { - Id = "psi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southeast Pashai", - Comment = null, - }, - new() - { - Id = "psl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Puerto Rican Sign Language", - Comment = null, - }, - new() - { - Id = "psm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Pauserna", - Comment = null, - }, - new() - { - Id = "psn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Panasuan", - Comment = null, - }, - new() - { - Id = "pso", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Polish Sign Language", - Comment = null, - }, - new() - { - Id = "psp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Philippine Sign Language", - Comment = null, - }, - new() - { - Id = "psq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pasi", - Comment = null, - }, - new() - { - Id = "psr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Portuguese Sign Language", - Comment = null, - }, - new() - { - Id = "pss", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kaulong", - Comment = null, - }, - new() - { - Id = "pst", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Central Pashto", - Comment = null, - }, - new() - { - Id = "psu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Sauraseni Prākrit", - Comment = null, - }, - new() - { - Id = "psw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Port Sandwich", - Comment = null, - }, - new() - { - Id = "psy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Piscataway", - Comment = null, - }, - new() - { - Id = "pta", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pai Tavytera", - Comment = null, - }, - new() - { - Id = "pth", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Pataxó Hã-Ha-Hãe", - Comment = null, - }, - new() - { - Id = "pti", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pindiini", - Comment = null, - }, - new() - { - Id = "ptn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Patani", - Comment = null, - }, - new() - { - Id = "pto", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zo'é", - Comment = null, - }, - new() - { - Id = "ptp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Patep", - Comment = null, - }, - new() - { - Id = "ptq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pattapu", - Comment = null, - }, - new() - { - Id = "ptr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Piamatsina", - Comment = null, - }, - new() - { - Id = "ptt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Enrekang", - Comment = null, - }, - new() - { - Id = "ptu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bambam", - Comment = null, - }, - new() - { - Id = "ptv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Port Vato", - Comment = null, - }, - new() - { - Id = "ptw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Pentlatch", - Comment = null, - }, - new() - { - Id = "pty", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pathiya", - Comment = null, - }, - new() - { - Id = "pua", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Highland Purepecha", - Comment = null, - }, - new() - { - Id = "pub", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Purum", - Comment = null, - }, - new() - { - Id = "puc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Punan Merap", - Comment = null, - }, - new() - { - Id = "pud", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Punan Aput", - Comment = null, - }, - new() - { - Id = "pue", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Puelche", - Comment = null, - }, - new() - { - Id = "puf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Punan Merah", - Comment = null, - }, - new() - { - Id = "pug", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Phuie", - Comment = null, - }, - new() - { - Id = "pui", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Puinave", - Comment = null, - }, - new() - { - Id = "puj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Punan Tubu", - Comment = null, - }, - new() - { - Id = "pum", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Puma", - Comment = null, - }, - new() - { - Id = "puo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Puoc", - Comment = null, - }, - new() - { - Id = "pup", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pulabu", - Comment = null, - }, - new() - { - Id = "puq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Puquina", - Comment = null, - }, - new() - { - Id = "pur", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Puruborá", - Comment = null, - }, - new() - { - Id = "pus", - Part2B = "pus", - Part2T = "pus", - Part1 = "ps", - Scope = "M", - LanguageType = "L", - RefName = "Pushto", - Comment = null, - }, - new() - { - Id = "put", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Putoh", - Comment = null, - }, - new() - { - Id = "puu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Punu", - Comment = null, - }, - new() - { - Id = "puw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Puluwatese", - Comment = null, - }, - new() - { - Id = "pux", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Puare", - Comment = null, - }, - new() - { - Id = "puy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Purisimeño", - Comment = null, - }, - new() - { - Id = "pwa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pawaia", - Comment = null, - }, - new() - { - Id = "pwb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Panawa", - Comment = null, - }, - new() - { - Id = "pwg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gapapaiwa", - Comment = null, - }, - new() - { - Id = "pwi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Patwin", - Comment = null, - }, - new() - { - Id = "pwm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Molbog", - Comment = null, - }, - new() - { - Id = "pwn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Paiwan", - Comment = null, - }, - new() - { - Id = "pwo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pwo Western Karen", - Comment = null, - }, - new() - { - Id = "pwr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Powari", - Comment = null, - }, - new() - { - Id = "pww", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pwo Northern Karen", - Comment = null, - }, - new() - { - Id = "pxm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Quetzaltepec Mixe", - Comment = null, - }, - new() - { - Id = "pye", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pye Krumen", - Comment = null, - }, - new() - { - Id = "pym", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Fyam", - Comment = null, - }, - new() - { - Id = "pyn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Poyanáwa", - Comment = null, - }, - new() - { - Id = "pys", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Paraguayan Sign Language", - Comment = null, - }, - new() - { - Id = "pyu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Puyuma", - Comment = null, - }, - new() - { - Id = "pyx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Pyu (Myanmar)", - Comment = null, - }, - new() - { - Id = "pyy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pyen", - Comment = null, - }, - new() - { - Id = "pze", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pesse", - Comment = null, - }, - new() - { - Id = "pzh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pazeh", - Comment = null, - }, - new() - { - Id = "pzn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jejara Naga", - Comment = null, - }, - new() - { - Id = "qua", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Quapaw", - Comment = null, - }, - new() - { - Id = "qub", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Huallaga Huánuco Quechua", - Comment = null, - }, - new() - { - Id = "quc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "K'iche'", - Comment = null, - }, - new() - { - Id = "qud", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Calderón Highland Quichua", - Comment = null, - }, - new() - { - Id = "que", - Part2B = "que", - Part2T = "que", - Part1 = "qu", - Scope = "M", - LanguageType = "L", - RefName = "Quechua", - Comment = null, - }, - new() - { - Id = "quf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lambayeque Quechua", - Comment = null, - }, - new() - { - Id = "qug", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chimborazo Highland Quichua", - Comment = null, - }, - new() - { - Id = "quh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "South Bolivian Quechua", - Comment = null, - }, - new() - { - Id = "qui", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Quileute", - Comment = null, - }, - new() - { - Id = "quk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chachapoyas Quechua", - Comment = null, - }, - new() - { - Id = "qul", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "North Bolivian Quechua", - Comment = null, - }, - new() - { - Id = "qum", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sipacapense", - Comment = null, - }, - new() - { - Id = "qun", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Quinault", - Comment = null, - }, - new() - { - Id = "qup", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Pastaza Quechua", - Comment = null, - }, - new() - { - Id = "quq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Quinqui", - Comment = null, - }, - new() - { - Id = "qur", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yanahuanca Pasco Quechua", - Comment = null, - }, - new() - { - Id = "qus", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Santiago del Estero Quichua", - Comment = null, - }, - new() - { - Id = "quv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sacapulteco", - Comment = null, - }, - new() - { - Id = "quw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tena Lowland Quichua", - Comment = null, - }, - new() - { - Id = "qux", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yauyos Quechua", - Comment = null, - }, - new() - { - Id = "quy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ayacucho Quechua", - Comment = null, - }, - new() - { - Id = "quz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cusco Quechua", - Comment = null, - }, - new() - { - Id = "qva", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ambo-Pasco Quechua", - Comment = null, - }, - new() - { - Id = "qvc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cajamarca Quechua", - Comment = null, - }, - new() - { - Id = "qve", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Apurímac Quechua", - Comment = null, - }, - new() - { - Id = "qvh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Huamalíes-Dos de Mayo Huánuco Quechua", - Comment = null, - }, - new() - { - Id = "qvi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Imbabura Highland Quichua", - Comment = null, - }, - new() - { - Id = "qvj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Loja Highland Quichua", - Comment = null, - }, - new() - { - Id = "qvl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cajatambo North Lima Quechua", - Comment = null, - }, - new() - { - Id = "qvm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Margos-Yarowilca-Lauricocha Quechua", - Comment = null, - }, - new() - { - Id = "qvn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "North Junín Quechua", - Comment = null, - }, - new() - { - Id = "qvo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Napo Lowland Quechua", - Comment = null, - }, - new() - { - Id = "qvp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pacaraos Quechua", - Comment = null, - }, - new() - { - Id = "qvs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "San Martín Quechua", - Comment = null, - }, - new() - { - Id = "qvw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Huaylla Wanca Quechua", - Comment = null, - }, - new() - { - Id = "qvy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Queyu", - Comment = null, - }, - new() - { - Id = "qvz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Pastaza Quichua", - Comment = null, - }, - new() - { - Id = "qwa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Corongo Ancash Quechua", - Comment = null, - }, - new() - { - Id = "qwc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Classical Quechua", - Comment = null, - }, - new() - { - Id = "qwh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Huaylas Ancash Quechua", - Comment = null, - }, - new() - { - Id = "qwm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Kuman (Russia)", - Comment = null, - }, - new() - { - Id = "qws", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sihuas Ancash Quechua", - Comment = null, - }, - new() - { - Id = "qwt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Kwalhioqua-Tlatskanai", - Comment = null, - }, - new() - { - Id = "qxa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chiquián Ancash Quechua", - Comment = null, - }, - new() - { - Id = "qxc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chincha Quechua", - Comment = null, - }, - new() - { - Id = "qxh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Panao Huánuco Quechua", - Comment = null, - }, - new() - { - Id = "qxl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Salasaca Highland Quichua", - Comment = null, - }, - new() - { - Id = "qxn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Conchucos Ancash Quechua", - Comment = null, - }, - new() - { - Id = "qxo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Conchucos Ancash Quechua", - Comment = null, - }, - new() - { - Id = "qxp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Puno Quechua", - Comment = null, - }, - new() - { - Id = "qxq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Qashqa'i", - Comment = null, - }, - new() - { - Id = "qxr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cañar Highland Quichua", - Comment = null, - }, - new() - { - Id = "qxs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Qiang", - Comment = null, - }, - new() - { - Id = "qxt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Santa Ana de Tusi Pasco Quechua", - Comment = null, - }, - new() - { - Id = "qxu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Arequipa-La Unión Quechua", - Comment = null, - }, - new() - { - Id = "qxw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jauja Wanca Quechua", - Comment = null, - }, - new() - { - Id = "qya", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "C", - RefName = "Quenya", - Comment = null, - }, - new() - { - Id = "qyp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Quiripi", - Comment = null, - }, - new() - { - Id = "raa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dungmali", - Comment = null, - }, - new() - { - Id = "rab", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Camling", - Comment = null, - }, - new() - { - Id = "rac", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rasawa", - Comment = null, - }, - new() - { - Id = "rad", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rade", - Comment = null, - }, - new() - { - Id = "raf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Meohang", - Comment = null, - }, - new() - { - Id = "rag", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Logooli", - Comment = null, - }, - new() - { - Id = "rah", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rabha", - Comment = null, - }, - new() - { - Id = "rai", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ramoaaina", - Comment = null, - }, - new() - { - Id = "raj", - Part2B = "raj", - Part2T = "raj", - Part1 = null, - Scope = "M", - LanguageType = "L", - RefName = "Rajasthani", - Comment = null, - }, - new() - { - Id = "rak", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tulu-Bohuai", - Comment = null, - }, - new() - { - Id = "ral", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ralte", - Comment = null, - }, - new() - { - Id = "ram", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Canela", - Comment = null, - }, - new() - { - Id = "ran", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Riantana", - Comment = null, - }, - new() - { - Id = "rao", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rao", - Comment = null, - }, - new() - { - Id = "rap", - Part2B = "rap", - Part2T = "rap", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rapanui", - Comment = null, - }, - new() - { - Id = "raq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Saam", - Comment = null, - }, - new() - { - Id = "rar", - Part2B = "rar", - Part2T = "rar", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rarotongan", - Comment = null, - }, - new() - { - Id = "ras", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tegali", - Comment = null, - }, - new() - { - Id = "rat", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Razajerdi", - Comment = null, - }, - new() - { - Id = "rau", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Raute", - Comment = null, - }, - new() - { - Id = "rav", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sampang", - Comment = null, - }, - new() - { - Id = "raw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rawang", - Comment = null, - }, - new() - { - Id = "rax", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rang", - Comment = null, - }, - new() - { - Id = "ray", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rapa", - Comment = null, - }, - new() - { - Id = "raz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rahambuu", - Comment = null, - }, - new() - { - Id = "rbb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rumai Palaung", - Comment = null, - }, - new() - { - Id = "rbk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Bontok", - Comment = null, - }, - new() - { - Id = "rbl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Miraya Bikol", - Comment = null, - }, - new() - { - Id = "rbp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Barababaraba", - Comment = null, - }, - new() - { - Id = "rcf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Réunion Creole French", - Comment = null, - }, - new() - { - Id = "rdb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rudbari", - Comment = null, - }, - new() - { - Id = "rea", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rerau", - Comment = null, - }, - new() - { - Id = "reb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rembong", - Comment = null, - }, - new() - { - Id = "ree", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rejang Kayan", - Comment = null, - }, - new() - { - Id = "reg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kara (Tanzania)", - Comment = null, - }, - new() - { - Id = "rei", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Reli", - Comment = null, - }, - new() - { - Id = "rej", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rejang", - Comment = null, - }, - new() - { - Id = "rel", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rendille", - Comment = null, - }, - new() - { - Id = "rem", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Remo", - Comment = null, - }, - new() - { - Id = "ren", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rengao", - Comment = null, - }, - new() - { - Id = "rer", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Rer Bare", - Comment = null, - }, - new() - { - Id = "res", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Reshe", - Comment = null, - }, - new() - { - Id = "ret", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Retta", - Comment = null, - }, - new() - { - Id = "rey", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Reyesano", - Comment = null, - }, - new() - { - Id = "rga", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Roria", - Comment = null, - }, - new() - { - Id = "rge", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Romano-Greek", - Comment = null, - }, - new() - { - Id = "rgk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Rangkas", - Comment = null, - }, - new() - { - Id = "rgn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Romagnol", - Comment = null, - }, - new() - { - Id = "rgr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Resígaro", - Comment = null, - }, - new() - { - Id = "rgs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Roglai", - Comment = null, - }, - new() - { - Id = "rgu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ringgou", - Comment = null, - }, - new() - { - Id = "rhg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rohingya", - Comment = null, - }, - new() - { - Id = "rhp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yahang", - Comment = null, - }, - new() - { - Id = "ria", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Riang (India)", - Comment = null, - }, - new() - { - Id = "rib", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bribri Sign Language", - Comment = null, - }, - new() - { - Id = "rif", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tarifit", - Comment = null, - }, - new() - { - Id = "ril", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Riang Lang", - Comment = null, - }, - new() - { - Id = "rim", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nyaturu", - Comment = null, - }, - new() - { - Id = "rin", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nungu", - Comment = null, - }, - new() - { - Id = "rir", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ribun", - Comment = null, - }, - new() - { - Id = "rit", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ritharrngu", - Comment = null, - }, - new() - { - Id = "riu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Riung", - Comment = null, - }, - new() - { - Id = "rjg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rajong", - Comment = null, - }, - new() - { - Id = "rji", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Raji", - Comment = null, - }, - new() - { - Id = "rjs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rajbanshi", - Comment = null, - }, - new() - { - Id = "rka", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kraol", - Comment = null, - }, - new() - { - Id = "rkb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rikbaktsa", - Comment = null, - }, - new() - { - Id = "rkh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rakahanga-Manihiki", - Comment = null, - }, - new() - { - Id = "rki", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rakhine", - Comment = null, - }, - new() - { - Id = "rkm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Marka", - Comment = null, - }, - new() - { - Id = "rkt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rangpuri", - Comment = null, - }, - new() - { - Id = "rkw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Arakwal", - Comment = null, - }, - new() - { - Id = "rma", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rama", - Comment = null, - }, - new() - { - Id = "rmb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rembarrnga", - Comment = null, - }, - new() - { - Id = "rmc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Carpathian Romani", - Comment = null, - }, - new() - { - Id = "rmd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Traveller Danish", - Comment = null, - }, - new() - { - Id = "rme", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Angloromani", - Comment = null, - }, - new() - { - Id = "rmf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kalo Finnish Romani", - Comment = null, - }, - new() - { - Id = "rmg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Traveller Norwegian", - Comment = null, - }, - new() - { - Id = "rmh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Murkim", - Comment = null, - }, - new() - { - Id = "rmi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lomavren", - Comment = null, - }, - new() - { - Id = "rmk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Romkun", - Comment = null, - }, - new() - { - Id = "rml", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Baltic Romani", - Comment = null, - }, - new() - { - Id = "rmm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Roma", - Comment = null, - }, - new() - { - Id = "rmn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Balkan Romani", - Comment = null, - }, - new() - { - Id = "rmo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sinte Romani", - Comment = null, - }, - new() - { - Id = "rmp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rempi", - Comment = null, - }, - new() - { - Id = "rmq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Caló", - Comment = null, - }, - new() - { - Id = "rms", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Romanian Sign Language", - Comment = null, - }, - new() - { - Id = "rmt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Domari", - Comment = null, - }, - new() - { - Id = "rmu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tavringer Romani", - Comment = null, - }, - new() - { - Id = "rmv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "C", - RefName = "Romanova", - Comment = null, - }, - new() - { - Id = "rmw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Welsh Romani", - Comment = null, - }, - new() - { - Id = "rmx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Romam", - Comment = null, - }, - new() - { - Id = "rmy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Vlax Romani", - Comment = null, - }, - new() - { - Id = "rmz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Marma", - Comment = null, - }, - new() - { - Id = "rnb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Brunca Sign Language", - Comment = null, - }, - new() - { - Id = "rnd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ruund", - Comment = null, - }, - new() - { - Id = "rng", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ronga", - Comment = null, - }, - new() - { - Id = "rnl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ranglong", - Comment = null, - }, - new() - { - Id = "rnn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Roon", - Comment = null, - }, - new() - { - Id = "rnp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rongpo", - Comment = null, - }, - new() - { - Id = "rnr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Nari Nari", - Comment = null, - }, - new() - { - Id = "rnw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rungwa", - Comment = null, - }, - new() - { - Id = "rob", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tae'", - Comment = null, - }, - new() - { - Id = "roc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cacgia Roglai", - Comment = null, - }, - new() - { - Id = "rod", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rogo", - Comment = null, - }, - new() - { - Id = "roe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ronji", - Comment = null, - }, - new() - { - Id = "rof", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rombo", - Comment = null, - }, - new() - { - Id = "rog", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Roglai", - Comment = null, - }, - new() - { - Id = "roh", - Part2B = "roh", - Part2T = "roh", - Part1 = "rm", - Scope = "I", - LanguageType = "L", - RefName = "Romansh", - Comment = null, - }, - new() - { - Id = "rol", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Romblomanon", - Comment = null, - }, - new() - { - Id = "rom", - Part2B = "rom", - Part2T = "rom", - Part1 = null, - Scope = "M", - LanguageType = "L", - RefName = "Romany", - Comment = null, - }, - new() - { - Id = "ron", - Part2B = "rum", - Part2T = "ron", - Part1 = "ro", - Scope = "I", - LanguageType = "L", - RefName = "Romanian", - Comment = null, - }, - new() - { - Id = "roo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rotokas", - Comment = null, - }, - new() - { - Id = "rop", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kriol", - Comment = null, - }, - new() - { - Id = "ror", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rongga", - Comment = null, - }, - new() - { - Id = "rou", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Runga", - Comment = null, - }, - new() - { - Id = "row", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dela-Oenale", - Comment = null, - }, - new() - { - Id = "rpn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Repanbitip", - Comment = null, - }, - new() - { - Id = "rpt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rapting", - Comment = null, - }, - new() - { - Id = "rri", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ririo", - Comment = null, - }, - new() - { - Id = "rrm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Moriori", - Comment = null, - }, - new() - { - Id = "rro", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Waima", - Comment = null, - }, - new() - { - Id = "rrt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Arritinngithigh", - Comment = null, - }, - new() - { - Id = "rsb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Romano-Serbian", - Comment = null, - }, - new() - { - Id = "rsk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ruthenian", - Comment = null, - }, - new() - { - Id = "rsl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Russian Sign Language", - Comment = null, - }, - new() - { - Id = "rsm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Miriwoong Sign Language", - Comment = null, - }, - new() - { - Id = "rsn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rwandan Sign Language", - Comment = null, - }, - new() - { - Id = "rsw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rishiwa", - Comment = null, - }, - new() - { - Id = "rtc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rungtu Chin", - Comment = null, - }, - new() - { - Id = "rth", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ratahan", - Comment = null, - }, - new() - { - Id = "rtm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rotuman", - Comment = null, - }, - new() - { - Id = "rts", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Yurats", - Comment = null, - }, - new() - { - Id = "rtw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rathawi", - Comment = null, - }, - new() - { - Id = "rub", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gungu", - Comment = null, - }, - new() - { - Id = "ruc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ruuli", - Comment = null, - }, - new() - { - Id = "rue", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rusyn", - Comment = null, - }, - new() - { - Id = "ruf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Luguru", - Comment = null, - }, - new() - { - Id = "rug", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Roviana", - Comment = null, - }, - new() - { - Id = "ruh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ruga", - Comment = null, - }, - new() - { - Id = "rui", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rufiji", - Comment = null, - }, - new() - { - Id = "ruk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Che", - Comment = null, - }, - new() - { - Id = "run", - Part2B = "run", - Part2T = "run", - Part1 = "rn", - Scope = "I", - LanguageType = "L", - RefName = "Rundi", - Comment = null, - }, - new() - { - Id = "ruo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Istro Romanian", - Comment = null, - }, - new() - { - Id = "rup", - Part2B = "rup", - Part2T = "rup", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Macedo-Romanian", - Comment = null, - }, - new() - { - Id = "ruq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Megleno Romanian", - Comment = null, - }, - new() - { - Id = "rus", - Part2B = "rus", - Part2T = "rus", - Part1 = "ru", - Scope = "I", - LanguageType = "L", - RefName = "Russian", - Comment = null, - }, - new() - { - Id = "rut", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rutul", - Comment = null, - }, - new() - { - Id = "ruu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lanas Lobu", - Comment = null, - }, - new() - { - Id = "ruy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mala (Nigeria)", - Comment = null, - }, - new() - { - Id = "ruz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ruma", - Comment = null, - }, - new() - { - Id = "rwa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rawo", - Comment = null, - }, - new() - { - Id = "rwk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rwa", - Comment = null, - }, - new() - { - Id = "rwl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ruwila", - Comment = null, - }, - new() - { - Id = "rwm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Amba (Uganda)", - Comment = null, - }, - new() - { - Id = "rwo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rawa", - Comment = null, - }, - new() - { - Id = "rwr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Marwari (India)", - Comment = null, - }, - new() - { - Id = "rxd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngardi", - Comment = null, - }, - new() - { - Id = "rxw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Karuwali", - Comment = null, - }, - new() - { - Id = "ryn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Amami-Oshima", - Comment = null, - }, - new() - { - Id = "rys", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yaeyama", - Comment = null, - }, - new() - { - Id = "ryu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Central Okinawan", - Comment = null, - }, - new() - { - Id = "rzh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rāziḥī", - Comment = null, - }, - new() - { - Id = "saa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Saba", - Comment = null, - }, - new() - { - Id = "sab", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Buglere", - Comment = null, - }, - new() - { - Id = "sac", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Meskwaki", - Comment = null, - }, - new() - { - Id = "sad", - Part2B = "sad", - Part2T = "sad", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sandawe", - Comment = null, - }, - new() - { - Id = "sae", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sabanê", - Comment = null, - }, - new() - { - Id = "saf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Safaliba", - Comment = null, - }, - new() - { - Id = "sag", - Part2B = "sag", - Part2T = "sag", - Part1 = "sg", - Scope = "I", - LanguageType = "L", - RefName = "Sango", - Comment = null, - }, - new() - { - Id = "sah", - Part2B = "sah", - Part2T = "sah", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yakut", - Comment = null, - }, - new() - { - Id = "saj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sahu", - Comment = null, - }, - new() - { - Id = "sak", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sake", - Comment = null, - }, - new() - { - Id = "sam", - Part2B = "sam", - Part2T = "sam", - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Samaritan Aramaic", - Comment = null, - }, - new() - { - Id = "san", - Part2B = "san", - Part2T = "san", - Part1 = "sa", - Scope = "M", - LanguageType = "H", - RefName = "Sanskrit", - Comment = null, - }, - new() - { - Id = "sao", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sause", - Comment = null, - }, - new() - { - Id = "saq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Samburu", - Comment = null, - }, - new() - { - Id = "sar", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Saraveca", - Comment = null, - }, - new() - { - Id = "sas", - Part2B = "sas", - Part2T = "sas", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sasak", - Comment = null, - }, - new() - { - Id = "sat", - Part2B = "sat", - Part2T = "sat", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Santali", - Comment = null, - }, - new() - { - Id = "sau", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Saleman", - Comment = null, - }, - new() - { - Id = "sav", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Saafi-Saafi", - Comment = null, - }, - new() - { - Id = "saw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sawi", - Comment = null, - }, - new() - { - Id = "sax", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sa", - Comment = null, - }, - new() - { - Id = "say", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Saya", - Comment = null, - }, - new() - { - Id = "saz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Saurashtra", - Comment = null, - }, - new() - { - Id = "sba", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngambay", - Comment = null, - }, - new() - { - Id = "sbb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Simbo", - Comment = null, - }, - new() - { - Id = "sbc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kele (Papua New Guinea)", - Comment = null, - }, - new() - { - Id = "sbd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Samo", - Comment = null, - }, - new() - { - Id = "sbe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Saliba", - Comment = null, - }, - new() - { - Id = "sbf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chabu", - Comment = null, - }, - new() - { - Id = "sbg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Seget", - Comment = null, - }, - new() - { - Id = "sbh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sori-Harengan", - Comment = null, - }, - new() - { - Id = "sbi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Seti", - Comment = null, - }, - new() - { - Id = "sbj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Surbakhal", - Comment = null, - }, - new() - { - Id = "sbk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Safwa", - Comment = null, - }, - new() - { - Id = "sbl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Botolan Sambal", - Comment = null, - }, - new() - { - Id = "sbm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sagala", - Comment = null, - }, - new() - { - Id = "sbn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sindhi Bhil", - Comment = null, - }, - new() - { - Id = "sbo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sabüm", - Comment = null, - }, - new() - { - Id = "sbp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sangu (Tanzania)", - Comment = null, - }, - new() - { - Id = "sbq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sileibi", - Comment = null, - }, - new() - { - Id = "sbr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sembakung Murut", - Comment = null, - }, - new() - { - Id = "sbs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Subiya", - Comment = null, - }, - new() - { - Id = "sbt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kimki", - Comment = null, - }, - new() - { - Id = "sbu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Stod Bhoti", - Comment = null, - }, - new() - { - Id = "sbv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Sabine", - Comment = null, - }, - new() - { - Id = "sbw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Simba", - Comment = null, - }, - new() - { - Id = "sbx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Seberuang", - Comment = null, - }, - new() - { - Id = "sby", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Soli", - Comment = null, - }, - new() - { - Id = "sbz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sara Kaba", - Comment = null, - }, - new() - { - Id = "scb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chut", - Comment = null, - }, - new() - { - Id = "sce", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dongxiang", - Comment = null, - }, - new() - { - Id = "scf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "San Miguel Creole French", - Comment = null, - }, - new() - { - Id = "scg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sanggau", - Comment = null, - }, - new() - { - Id = "sch", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sakachep", - Comment = null, - }, - new() - { - Id = "sci", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sri Lankan Creole Malay", - Comment = null, - }, - new() - { - Id = "sck", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sadri", - Comment = null, - }, - new() - { - Id = "scl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Shina", - Comment = null, - }, - new() - { - Id = "scn", - Part2B = "scn", - Part2T = "scn", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sicilian", - Comment = null, - }, - new() - { - Id = "sco", - Part2B = "sco", - Part2T = "sco", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Scots", - Comment = null, - }, - new() - { - Id = "scp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hyolmo", - Comment = null, - }, - new() - { - Id = "scq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sa'och", - Comment = null, - }, - new() - { - Id = "scs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "North Slavey", - Comment = null, - }, - new() - { - Id = "sct", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Katang", - Comment = null, - }, - new() - { - Id = "scu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Shumcho", - Comment = null, - }, - new() - { - Id = "scv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sheni", - Comment = null, - }, - new() - { - Id = "scw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sha", - Comment = null, - }, - new() - { - Id = "scx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Sicel", - Comment = null, - }, - new() - { - Id = "scz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Shaetlan", - Comment = null, - }, - new() - { - Id = "sda", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Toraja-Sa'dan", - Comment = null, - }, - new() - { - Id = "sdb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Shabak", - Comment = null, - }, - new() - { - Id = "sdc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sassarese Sardinian", - Comment = null, - }, - new() - { - Id = "sde", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Surubu", - Comment = null, - }, - new() - { - Id = "sdf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sarli", - Comment = null, - }, - new() - { - Id = "sdg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Savi", - Comment = null, - }, - new() - { - Id = "sdh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Kurdish", - Comment = null, - }, - new() - { - Id = "sdj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Suundi", - Comment = null, - }, - new() - { - Id = "sdk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sos Kundi", - Comment = null, - }, - new() - { - Id = "sdl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Saudi Arabian Sign Language", - Comment = null, - }, - new() - { - Id = "sdn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gallurese Sardinian", - Comment = null, - }, - new() - { - Id = "sdo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bukar-Sadung Bidayuh", - Comment = null, - }, - new() - { - Id = "sdp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sherdukpen", - Comment = null, - }, - new() - { - Id = "sdq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Semandang", - Comment = null, - }, - new() - { - Id = "sdr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Oraon Sadri", - Comment = null, - }, - new() - { - Id = "sds", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Sened", - Comment = null, - }, - new() - { - Id = "sdt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Shuadit", - Comment = null, - }, - new() - { - Id = "sdu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sarudu", - Comment = null, - }, - new() - { - Id = "sdx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sibu Melanau", - Comment = null, - }, - new() - { - Id = "sdz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sallands", - Comment = null, - }, - new() - { - Id = "sea", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Semai", - Comment = null, - }, - new() - { - Id = "seb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Shempire Senoufo", - Comment = null, - }, - new() - { - Id = "sec", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sechelt", - Comment = null, - }, - new() - { - Id = "sed", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sedang", - Comment = null, - }, - new() - { - Id = "see", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Seneca", - Comment = null, - }, - new() - { - Id = "sef", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cebaara Senoufo", - Comment = null, - }, - new() - { - Id = "seg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Segeju", - Comment = null, - }, - new() - { - Id = "seh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sena", - Comment = null, - }, - new() - { - Id = "sei", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Seri", - Comment = null, - }, - new() - { - Id = "sej", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sene", - Comment = null, - }, - new() - { - Id = "sek", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sekani", - Comment = null, - }, - new() - { - Id = "sel", - Part2B = "sel", - Part2T = "sel", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Selkup", - Comment = null, - }, - new() - { - Id = "sen", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nanerigé Sénoufo", - Comment = null, - }, - new() - { - Id = "seo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Suarmin", - Comment = null, - }, - new() - { - Id = "sep", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sìcìté Sénoufo", - Comment = null, - }, - new() - { - Id = "seq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Senara Sénoufo", - Comment = null, - }, - new() - { - Id = "ser", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Serrano", - Comment = null, - }, - new() - { - Id = "ses", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Koyraboro Senni Songhai", - Comment = null, - }, - new() - { - Id = "set", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sentani", - Comment = null, - }, - new() - { - Id = "seu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Serui-Laut", - Comment = null, - }, - new() - { - Id = "sev", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nyarafolo Senoufo", - Comment = null, - }, - new() - { - Id = "sew", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sewa Bay", - Comment = null, - }, - new() - { - Id = "sey", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Secoya", - Comment = null, - }, - new() - { - Id = "sez", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Senthang Chin", - Comment = null, - }, - new() - { - Id = "sfb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Langue des signes de Belgique Francophone", - Comment = null, - }, - new() - { - Id = "sfe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Subanen", - Comment = null, - }, - new() - { - Id = "sfm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Small Flowery Miao", - Comment = null, - }, - new() - { - Id = "sfs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "South African Sign Language", - Comment = null, - }, - new() - { - Id = "sfw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sehwi", - Comment = null, - }, - new() - { - Id = "sga", - Part2B = "sga", - Part2T = "sga", - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Old Irish (to 900)", - Comment = null, - }, - new() - { - Id = "sgb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mag-antsi Ayta", - Comment = null, - }, - new() - { - Id = "sgc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kipsigis", - Comment = null, - }, - new() - { - Id = "sgd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Surigaonon", - Comment = null, - }, - new() - { - Id = "sge", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Segai", - Comment = null, - }, - new() - { - Id = "sgg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Swiss-German Sign Language", - Comment = null, - }, - new() - { - Id = "sgh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Shughni", - Comment = null, - }, - new() - { - Id = "sgi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Suga", - Comment = null, - }, - new() - { - Id = "sgj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Surgujia", - Comment = null, - }, - new() - { - Id = "sgk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sangkong", - Comment = null, - }, - new() - { - Id = "sgm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Singa", - Comment = null, - }, - new() - { - Id = "sgp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Singpho", - Comment = null, - }, - new() - { - Id = "sgr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sangisari", - Comment = null, - }, - new() - { - Id = "sgs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Samogitian", - Comment = null, - }, - new() - { - Id = "sgt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Brokpake", - Comment = null, - }, - new() - { - Id = "sgu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Salas", - Comment = null, - }, - new() - { - Id = "sgw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sebat Bet Gurage", - Comment = null, - }, - new() - { - Id = "sgx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sierra Leone Sign Language", - Comment = null, - }, - new() - { - Id = "sgy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sanglechi", - Comment = null, - }, - new() - { - Id = "sgz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sursurunga", - Comment = null, - }, - new() - { - Id = "sha", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Shall-Zwall", - Comment = null, - }, - new() - { - Id = "shb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ninam", - Comment = null, - }, - new() - { - Id = "shc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sonde", - Comment = null, - }, - new() - { - Id = "shd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kundal Shahi", - Comment = null, - }, - new() - { - Id = "she", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sheko", - Comment = null, - }, - new() - { - Id = "shg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Shua", - Comment = null, - }, - new() - { - Id = "shh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Shoshoni", - Comment = null, - }, - new() - { - Id = "shi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tachelhit", - Comment = null, - }, - new() - { - Id = "shj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Shatt", - Comment = null, - }, - new() - { - Id = "shk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Shilluk", - Comment = null, - }, - new() - { - Id = "shl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Shendu", - Comment = null, - }, - new() - { - Id = "shm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Shahrudi", - Comment = null, - }, - new() - { - Id = "shn", - Part2B = "shn", - Part2T = "shn", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Shan", - Comment = null, - }, - new() - { - Id = "sho", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Shanga", - Comment = null, - }, - new() - { - Id = "shp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Shipibo-Conibo", - Comment = null, - }, - new() - { - Id = "shq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sala", - Comment = null, - }, - new() - { - Id = "shr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Shi", - Comment = null, - }, - new() - { - Id = "shs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Shuswap", - Comment = null, - }, - new() - { - Id = "sht", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Shasta", - Comment = null, - }, - new() - { - Id = "shu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chadian Arabic", - Comment = null, - }, - new() - { - Id = "shv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Shehri", - Comment = null, - }, - new() - { - Id = "shw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Shwai", - Comment = null, - }, - new() - { - Id = "shx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "She", - Comment = null, - }, - new() - { - Id = "shy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tachawit", - Comment = null, - }, - new() - { - Id = "shz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Syenara Senoufo", - Comment = null, - }, - new() - { - Id = "sia", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Akkala Sami", - Comment = null, - }, - new() - { - Id = "sib", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sebop", - Comment = null, - }, - new() - { - Id = "sid", - Part2B = "sid", - Part2T = "sid", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sidamo", - Comment = null, - }, - new() - { - Id = "sie", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Simaa", - Comment = null, - }, - new() - { - Id = "sif", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Siamou", - Comment = null, - }, - new() - { - Id = "sig", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Paasaal", - Comment = null, - }, - new() - { - Id = "sih", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zire", - Comment = null, - }, - new() - { - Id = "sii", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Shom Peng", - Comment = null, - }, - new() - { - Id = "sij", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Numbami", - Comment = null, - }, - new() - { - Id = "sik", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sikiana", - Comment = null, - }, - new() - { - Id = "sil", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tumulung Sisaala", - Comment = null, - }, - new() - { - Id = "sim", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mende (Papua New Guinea)", - Comment = null, - }, - new() - { - Id = "sin", - Part2B = "sin", - Part2T = "sin", - Part1 = "si", - Scope = "I", - LanguageType = "L", - RefName = "Sinhala", - Comment = null, - }, - new() - { - Id = "sip", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sikkimese", - Comment = null, - }, - new() - { - Id = "siq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sonia", - Comment = null, - }, - new() - { - Id = "sir", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Siri", - Comment = null, - }, - new() - { - Id = "sis", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Siuslaw", - Comment = null, - }, - new() - { - Id = "siu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sinagen", - Comment = null, - }, - new() - { - Id = "siv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sumariup", - Comment = null, - }, - new() - { - Id = "siw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Siwai", - Comment = null, - }, - new() - { - Id = "six", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sumau", - Comment = null, - }, - new() - { - Id = "siy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sivandi", - Comment = null, - }, - new() - { - Id = "siz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Siwi", - Comment = null, - }, - new() - { - Id = "sja", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Epena", - Comment = null, - }, - new() - { - Id = "sjb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sajau Basap", - Comment = null, - }, - new() - { - Id = "sjc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Shaojiang Chinese", - Comment = null, - }, - new() - { - Id = "sjd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kildin Sami", - Comment = null, - }, - new() - { - Id = "sje", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pite Sami", - Comment = null, - }, - new() - { - Id = "sjg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Assangori", - Comment = null, - }, - new() - { - Id = "sjk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Kemi Sami", - Comment = null, - }, - new() - { - Id = "sjl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sajalong", - Comment = null, - }, - new() - { - Id = "sjm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mapun", - Comment = null, - }, - new() - { - Id = "sjn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "C", - RefName = "Sindarin", - Comment = null, - }, - new() - { - Id = "sjo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Xibe", - Comment = null, - }, - new() - { - Id = "sjp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Surjapuri", - Comment = null, - }, - new() - { - Id = "sjr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Siar-Lak", - Comment = null, - }, - new() - { - Id = "sjs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Senhaja De Srair", - Comment = null, - }, - new() - { - Id = "sjt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ter Sami", - Comment = null, - }, - new() - { - Id = "sju", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ume Sami", - Comment = null, - }, - new() - { - Id = "sjw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Shawnee", - Comment = null, - }, - new() - { - Id = "ska", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Skagit", - Comment = null, - }, - new() - { - Id = "skb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Saek", - Comment = null, - }, - new() - { - Id = "skc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ma Manda", - Comment = null, - }, - new() - { - Id = "skd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Sierra Miwok", - Comment = null, - }, - new() - { - Id = "ske", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Seke (Vanuatu)", - Comment = null, - }, - new() - { - Id = "skf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sakirabiá", - Comment = null, - }, - new() - { - Id = "skg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sakalava Malagasy", - Comment = null, - }, - new() - { - Id = "skh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sikule", - Comment = null, - }, - new() - { - Id = "ski", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sika", - Comment = null, - }, - new() - { - Id = "skj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Seke (Nepal)", - Comment = null, - }, - new() - { - Id = "skm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kutong", - Comment = null, - }, - new() - { - Id = "skn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kolibugan Subanon", - Comment = null, - }, - new() - { - Id = "sko", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Seko Tengah", - Comment = null, - }, - new() - { - Id = "skp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sekapan", - Comment = null, - }, - new() - { - Id = "skq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sininkere", - Comment = null, - }, - new() - { - Id = "skr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Saraiki", - Comment = null, - }, - new() - { - Id = "sks", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maia", - Comment = null, - }, - new() - { - Id = "skt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sakata", - Comment = null, - }, - new() - { - Id = "sku", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sakao", - Comment = null, - }, - new() - { - Id = "skv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Skou", - Comment = null, - }, - new() - { - Id = "skw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Skepi Creole Dutch", - Comment = null, - }, - new() - { - Id = "skx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Seko Padang", - Comment = null, - }, - new() - { - Id = "sky", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sikaiana", - Comment = null, - }, - new() - { - Id = "skz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sekar", - Comment = null, - }, - new() - { - Id = "slc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sáliba", - Comment = null, - }, - new() - { - Id = "sld", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sissala", - Comment = null, - }, - new() - { - Id = "sle", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sholaga", - Comment = null, - }, - new() - { - Id = "slf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Swiss-Italian Sign Language", - Comment = null, - }, - new() - { - Id = "slg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Selungai Murut", - Comment = null, - }, - new() - { - Id = "slh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Puget Sound Salish", - Comment = null, - }, - new() - { - Id = "sli", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lower Silesian", - Comment = null, - }, - new() - { - Id = "slj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Salumá", - Comment = null, - }, - new() - { - Id = "slk", - Part2B = "slo", - Part2T = "slk", - Part1 = "sk", - Scope = "I", - LanguageType = "L", - RefName = "Slovak", - Comment = null, - }, - new() - { - Id = "sll", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Salt-Yui", - Comment = null, - }, - new() - { - Id = "slm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pangutaran Sama", - Comment = null, - }, - new() - { - Id = "sln", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Salinan", - Comment = null, - }, - new() - { - Id = "slp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lamaholot", - Comment = null, - }, - new() - { - Id = "slr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Salar", - Comment = null, - }, - new() - { - Id = "sls", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Singapore Sign Language", - Comment = null, - }, - new() - { - Id = "slt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sila", - Comment = null, - }, - new() - { - Id = "slu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Selaru", - Comment = null, - }, - new() - { - Id = "slv", - Part2B = "slv", - Part2T = "slv", - Part1 = "sl", - Scope = "I", - LanguageType = "L", - RefName = "Slovenian", - Comment = null, - }, - new() - { - Id = "slw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sialum", - Comment = null, - }, - new() - { - Id = "slx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Salampasu", - Comment = null, - }, - new() - { - Id = "sly", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Selayar", - Comment = null, - }, - new() - { - Id = "slz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ma'ya", - Comment = null, - }, - new() - { - Id = "sma", - Part2B = "sma", - Part2T = "sma", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Sami", - Comment = null, - }, - new() - { - Id = "smb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Simbari", - Comment = null, - }, - new() - { - Id = "smc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Som", - Comment = null, - }, - new() - { - Id = "sme", - Part2B = "sme", - Part2T = "sme", - Part1 = "se", - Scope = "I", - LanguageType = "L", - RefName = "Northern Sami", - Comment = null, - }, - new() - { - Id = "smf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Auwe", - Comment = null, - }, - new() - { - Id = "smg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Simbali", - Comment = null, - }, - new() - { - Id = "smh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Samei", - Comment = null, - }, - new() - { - Id = "smj", - Part2B = "smj", - Part2T = "smj", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lule Sami", - Comment = null, - }, - new() - { - Id = "smk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bolinao", - Comment = null, - }, - new() - { - Id = "sml", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Central Sama", - Comment = null, - }, - new() - { - Id = "smm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Musasa", - Comment = null, - }, - new() - { - Id = "smn", - Part2B = "smn", - Part2T = "smn", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Inari Sami", - Comment = null, - }, - new() - { - Id = "smo", - Part2B = "smo", - Part2T = "smo", - Part1 = "sm", - Scope = "I", - LanguageType = "L", - RefName = "Samoan", - Comment = null, - }, - new() - { - Id = "smp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Samaritan", - Comment = null, - }, - new() - { - Id = "smq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Samo", - Comment = null, - }, - new() - { - Id = "smr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Simeulue", - Comment = null, - }, - new() - { - Id = "sms", - Part2B = "sms", - Part2T = "sms", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Skolt Sami", - Comment = null, - }, - new() - { - Id = "smt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Simte", - Comment = null, - }, - new() - { - Id = "smu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Somray", - Comment = null, - }, - new() - { - Id = "smv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Samvedi", - Comment = null, - }, - new() - { - Id = "smw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sumbawa", - Comment = null, - }, - new() - { - Id = "smx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Samba", - Comment = null, - }, - new() - { - Id = "smy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Semnani", - Comment = null, - }, - new() - { - Id = "smz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Simeku", - Comment = null, - }, - new() - { - Id = "sna", - Part2B = "sna", - Part2T = "sna", - Part1 = "sn", - Scope = "I", - LanguageType = "L", - RefName = "Shona", - Comment = null, - }, - new() - { - Id = "snc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sinaugoro", - Comment = null, - }, - new() - { - Id = "snd", - Part2B = "snd", - Part2T = "snd", - Part1 = "sd", - Scope = "I", - LanguageType = "L", - RefName = "Sindhi", - Comment = null, - }, - new() - { - Id = "sne", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bau Bidayuh", - Comment = null, - }, - new() - { - Id = "snf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Noon", - Comment = null, - }, - new() - { - Id = "sng", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sanga (Democratic Republic of Congo)", - Comment = null, - }, - new() - { - Id = "sni", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Sensi", - Comment = null, - }, - new() - { - Id = "snj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Riverain Sango", - Comment = null, - }, - new() - { - Id = "snk", - Part2B = "snk", - Part2T = "snk", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Soninke", - Comment = null, - }, - new() - { - Id = "snl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sangil", - Comment = null, - }, - new() - { - Id = "snm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Ma'di", - Comment = null, - }, - new() - { - Id = "snn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Siona", - Comment = null, - }, - new() - { - Id = "sno", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Snohomish", - Comment = null, - }, - new() - { - Id = "snp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Siane", - Comment = null, - }, - new() - { - Id = "snq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sangu (Gabon)", - Comment = null, - }, - new() - { - Id = "snr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sihan", - Comment = null, - }, - new() - { - Id = "sns", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "South West Bay", - Comment = null, - }, - new() - { - Id = "snu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Senggi", - Comment = null, - }, - new() - { - Id = "snv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sa'ban", - Comment = null, - }, - new() - { - Id = "snw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Selee", - Comment = null, - }, - new() - { - Id = "snx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sam", - Comment = null, - }, - new() - { - Id = "sny", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Saniyo-Hiyewe", - Comment = null, - }, - new() - { - Id = "snz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kou", - Comment = null, - }, - new() - { - Id = "soa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Thai Song", - Comment = null, - }, - new() - { - Id = "sob", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sobei", - Comment = null, - }, - new() - { - Id = "soc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "So (Democratic Republic of Congo)", - Comment = null, - }, - new() - { - Id = "sod", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Songoora", - Comment = null, - }, - new() - { - Id = "soe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Songomeno", - Comment = null, - }, - new() - { - Id = "sog", - Part2B = "sog", - Part2T = "sog", - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Sogdian", - Comment = null, - }, - new() - { - Id = "soh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aka", - Comment = null, - }, - new() - { - Id = "soi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sonha", - Comment = null, - }, - new() - { - Id = "soj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Soi", - Comment = null, - }, - new() - { - Id = "sok", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sokoro", - Comment = null, - }, - new() - { - Id = "sol", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Solos", - Comment = null, - }, - new() - { - Id = "som", - Part2B = "som", - Part2T = "som", - Part1 = "so", - Scope = "I", - LanguageType = "L", - RefName = "Somali", - Comment = null, - }, - new() - { - Id = "soo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Songo", - Comment = null, - }, - new() - { - Id = "sop", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Songe", - Comment = null, - }, - new() - { - Id = "soq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kanasi", - Comment = null, - }, - new() - { - Id = "sor", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Somrai", - Comment = null, - }, - new() - { - Id = "sos", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Seeku", - Comment = null, - }, - new() - { - Id = "sot", - Part2B = "sot", - Part2T = "sot", - Part1 = "st", - Scope = "I", - LanguageType = "L", - RefName = "Southern Sotho", - Comment = null, - }, - new() - { - Id = "sou", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Thai", - Comment = null, - }, - new() - { - Id = "sov", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sonsorol", - Comment = null, - }, - new() - { - Id = "sow", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sowanda", - Comment = null, - }, - new() - { - Id = "sox", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Swo", - Comment = null, - }, - new() - { - Id = "soy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Miyobe", - Comment = null, - }, - new() - { - Id = "soz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Temi", - Comment = null, - }, - new() - { - Id = "spa", - Part2B = "spa", - Part2T = "spa", - Part1 = "es", - Scope = "I", - LanguageType = "L", - RefName = "Spanish", - Comment = null, - }, - new() - { - Id = "spb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sepa (Indonesia)", - Comment = null, - }, - new() - { - Id = "spc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sapé", - Comment = null, - }, - new() - { - Id = "spd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Saep", - Comment = null, - }, - new() - { - Id = "spe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sepa (Papua New Guinea)", - Comment = null, - }, - new() - { - Id = "spg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sian", - Comment = null, - }, - new() - { - Id = "spi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Saponi", - Comment = null, - }, - new() - { - Id = "spk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sengo", - Comment = null, - }, - new() - { - Id = "spl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Selepet", - Comment = null, - }, - new() - { - Id = "spm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Akukem", - Comment = null, - }, - new() - { - Id = "spn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sanapaná", - Comment = null, - }, - new() - { - Id = "spo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Spokane", - Comment = null, - }, - new() - { - Id = "spp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Supyire Senoufo", - Comment = null, - }, - new() - { - Id = "spq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Loreto-Ucayali Spanish", - Comment = null, - }, - new() - { - Id = "spr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Saparua", - Comment = null, - }, - new() - { - Id = "sps", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Saposa", - Comment = null, - }, - new() - { - Id = "spt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Spiti Bhoti", - Comment = null, - }, - new() - { - Id = "spu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sapuan", - Comment = null, - }, - new() - { - Id = "spv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sambalpuri", - Comment = null, - }, - new() - { - Id = "spx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "South Picene", - Comment = null, - }, - new() - { - Id = "spy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sabaot", - Comment = null, - }, - new() - { - Id = "sqa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Shama-Sambuga", - Comment = null, - }, - new() - { - Id = "sqh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Shau", - Comment = null, - }, - new() - { - Id = "sqi", - Part2B = "alb", - Part2T = "sqi", - Part1 = "sq", - Scope = "M", - LanguageType = "L", - RefName = "Albanian", - Comment = null, - }, - new() - { - Id = "sqk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Albanian Sign Language", - Comment = null, - }, - new() - { - Id = "sqm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Suma", - Comment = null, - }, - new() - { - Id = "sqn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Susquehannock", - Comment = null, - }, - new() - { - Id = "sqo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sorkhei", - Comment = null, - }, - new() - { - Id = "sqq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sou", - Comment = null, - }, - new() - { - Id = "sqr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Siculo Arabic", - Comment = null, - }, - new() - { - Id = "sqs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sri Lankan Sign Language", - Comment = null, - }, - new() - { - Id = "sqt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Soqotri", - Comment = null, - }, - new() - { - Id = "squ", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Squamish", - Comment = null, - }, - new() - { - Id = "sqx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kufr Qassem Sign Language (KQSL)", - Comment = null, - }, - new() - { - Id = "sra", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Saruga", - Comment = null, - }, - new() - { - Id = "srb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sora", - Comment = null, - }, - new() - { - Id = "src", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Logudorese Sardinian", - Comment = null, - }, - new() - { - Id = "srd", - Part2B = "srd", - Part2T = "srd", - Part1 = "sc", - Scope = "M", - LanguageType = "L", - RefName = "Sardinian", - Comment = null, - }, - new() - { - Id = "sre", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sara", - Comment = null, - }, - new() - { - Id = "srf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nafi", - Comment = null, - }, - new() - { - Id = "srg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sulod", - Comment = null, - }, - new() - { - Id = "srh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sarikoli", - Comment = null, - }, - new() - { - Id = "sri", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Siriano", - Comment = null, - }, - new() - { - Id = "srk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Serudung Murut", - Comment = null, - }, - new() - { - Id = "srl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Isirawa", - Comment = null, - }, - new() - { - Id = "srm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Saramaccan", - Comment = null, - }, - new() - { - Id = "srn", - Part2B = "srn", - Part2T = "srn", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sranan Tongo", - Comment = null, - }, - new() - { - Id = "sro", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Campidanese Sardinian", - Comment = null, - }, - new() - { - Id = "srp", - Part2B = "srp", - Part2T = "srp", - Part1 = "sr", - Scope = "I", - LanguageType = "L", - RefName = "Serbian", - Comment = null, - }, - new() - { - Id = "srq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sirionó", - Comment = null, - }, - new() - { - Id = "srr", - Part2B = "srr", - Part2T = "srr", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Serer", - Comment = null, - }, - new() - { - Id = "srs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tsuut'ina", - Comment = null, - }, - new() - { - Id = "srt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sauri", - Comment = null, - }, - new() - { - Id = "sru", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Suruí", - Comment = null, - }, - new() - { - Id = "srv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Sorsoganon", - Comment = null, - }, - new() - { - Id = "srw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Serua", - Comment = null, - }, - new() - { - Id = "srx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sirmauri", - Comment = null, - }, - new() - { - Id = "sry", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sera", - Comment = null, - }, - new() - { - Id = "srz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Shahmirzadi", - Comment = null, - }, - new() - { - Id = "ssb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Sama", - Comment = null, - }, - new() - { - Id = "ssc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Suba-Simbiti", - Comment = null, - }, - new() - { - Id = "ssd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Siroi", - Comment = null, - }, - new() - { - Id = "sse", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Balangingi", - Comment = null, - }, - new() - { - Id = "ssf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Thao", - Comment = null, - }, - new() - { - Id = "ssg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Seimat", - Comment = null, - }, - new() - { - Id = "ssh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Shihhi Arabic", - Comment = null, - }, - new() - { - Id = "ssi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sansi", - Comment = null, - }, - new() - { - Id = "ssj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sausi", - Comment = null, - }, - new() - { - Id = "ssk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sunam", - Comment = null, - }, - new() - { - Id = "ssl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Sisaala", - Comment = null, - }, - new() - { - Id = "ssm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Semnam", - Comment = null, - }, - new() - { - Id = "ssn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Waata", - Comment = null, - }, - new() - { - Id = "sso", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sissano", - Comment = null, - }, - new() - { - Id = "ssp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Spanish Sign Language", - Comment = null, - }, - new() - { - Id = "ssq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "So'a", - Comment = null, - }, - new() - { - Id = "ssr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Swiss-French Sign Language", - Comment = null, - }, - new() - { - Id = "sss", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sô", - Comment = null, - }, - new() - { - Id = "sst", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sinasina", - Comment = null, - }, - new() - { - Id = "ssu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Susuami", - Comment = null, - }, - new() - { - Id = "ssv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Shark Bay", - Comment = null, - }, - new() - { - Id = "ssw", - Part2B = "ssw", - Part2T = "ssw", - Part1 = "ss", - Scope = "I", - LanguageType = "L", - RefName = "Swati", - Comment = null, - }, - new() - { - Id = "ssx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Samberigi", - Comment = null, - }, - new() - { - Id = "ssy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Saho", - Comment = null, - }, - new() - { - Id = "ssz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sengseng", - Comment = null, - }, - new() - { - Id = "sta", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Settla", - Comment = null, - }, - new() - { - Id = "stb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Subanen", - Comment = null, - }, - new() - { - Id = "std", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sentinel", - Comment = null, - }, - new() - { - Id = "ste", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Liana-Seti", - Comment = null, - }, - new() - { - Id = "stf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Seta", - Comment = null, - }, - new() - { - Id = "stg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Trieng", - Comment = null, - }, - new() - { - Id = "sth", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Shelta", - Comment = null, - }, - new() - { - Id = "sti", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bulo Stieng", - Comment = null, - }, - new() - { - Id = "stj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Matya Samo", - Comment = null, - }, - new() - { - Id = "stk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Arammba", - Comment = null, - }, - new() - { - Id = "stl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Stellingwerfs", - Comment = null, - }, - new() - { - Id = "stm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Setaman", - Comment = null, - }, - new() - { - Id = "stn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Owa", - Comment = null, - }, - new() - { - Id = "sto", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Stoney", - Comment = null, - }, - new() - { - Id = "stp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southeastern Tepehuan", - Comment = null, - }, - new() - { - Id = "stq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Saterfriesisch", - Comment = null, - }, - new() - { - Id = "str", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Straits Salish", - Comment = null, - }, - new() - { - Id = "sts", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Shumashti", - Comment = null, - }, - new() - { - Id = "stt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Budeh Stieng", - Comment = null, - }, - new() - { - Id = "stu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Samtao", - Comment = null, - }, - new() - { - Id = "stv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Silt'e", - Comment = null, - }, - new() - { - Id = "stw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Satawalese", - Comment = null, - }, - new() - { - Id = "sty", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Siberian Tatar", - Comment = null, - }, - new() - { - Id = "sua", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sulka", - Comment = null, - }, - new() - { - Id = "sub", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Suku", - Comment = null, - }, - new() - { - Id = "suc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Subanon", - Comment = null, - }, - new() - { - Id = "sue", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Suena", - Comment = null, - }, - new() - { - Id = "sug", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Suganga", - Comment = null, - }, - new() - { - Id = "sui", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Suki", - Comment = null, - }, - new() - { - Id = "suj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Shubi", - Comment = null, - }, - new() - { - Id = "suk", - Part2B = "suk", - Part2T = "suk", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sukuma", - Comment = null, - }, - new() - { - Id = "sun", - Part2B = "sun", - Part2T = "sun", - Part1 = "su", - Scope = "I", - LanguageType = "L", - RefName = "Sundanese", - Comment = null, - }, - new() - { - Id = "suo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bouni", - Comment = null, - }, - new() - { - Id = "suq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tirmaga-Chai Suri", - Comment = null, - }, - new() - { - Id = "sur", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mwaghavul", - Comment = null, - }, - new() - { - Id = "sus", - Part2B = "sus", - Part2T = "sus", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Susu", - Comment = null, - }, - new() - { - Id = "sut", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Subtiaba", - Comment = null, - }, - new() - { - Id = "suv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Puroik", - Comment = null, - }, - new() - { - Id = "suw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sumbwa", - Comment = null, - }, - new() - { - Id = "sux", - Part2B = "sux", - Part2T = "sux", - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Sumerian", - Comment = null, - }, - new() - { - Id = "suy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Suyá", - Comment = null, - }, - new() - { - Id = "suz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sunwar", - Comment = null, - }, - new() - { - Id = "sva", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Svan", - Comment = null, - }, - new() - { - Id = "svb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ulau-Suain", - Comment = null, - }, - new() - { - Id = "svc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Vincentian Creole English", - Comment = null, - }, - new() - { - Id = "sve", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Serili", - Comment = null, - }, - new() - { - Id = "svk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Slovakian Sign Language", - Comment = null, - }, - new() - { - Id = "svm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Slavomolisano", - Comment = null, - }, - new() - { - Id = "svs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Savosavo", - Comment = null, - }, - new() - { - Id = "svx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Skalvian", - Comment = null, - }, - new() - { - Id = "swa", - Part2B = "swa", - Part2T = "swa", - Part1 = "sw", - Scope = "M", - LanguageType = "L", - RefName = "Swahili (macrolanguage)", - Comment = null, - }, - new() - { - Id = "swb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maore Comorian", - Comment = null, - }, - new() - { - Id = "swc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Congo Swahili", - Comment = null, - }, - new() - { - Id = "swe", - Part2B = "swe", - Part2T = "swe", - Part1 = "sv", - Scope = "I", - LanguageType = "L", - RefName = "Swedish", - Comment = null, - }, - new() - { - Id = "swf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sere", - Comment = null, - }, - new() - { - Id = "swg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Swabian", - Comment = null, - }, - new() - { - Id = "swh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Swahili (individual language)", - Comment = null, - }, - new() - { - Id = "swi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sui", - Comment = null, - }, - new() - { - Id = "swj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sira", - Comment = null, - }, - new() - { - Id = "swk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Malawi Sena", - Comment = null, - }, - new() - { - Id = "swl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Swedish Sign Language", - Comment = null, - }, - new() - { - Id = "swm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Samosa", - Comment = null, - }, - new() - { - Id = "swn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sawknah", - Comment = null, - }, - new() - { - Id = "swo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Shanenawa", - Comment = null, - }, - new() - { - Id = "swp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Suau", - Comment = null, - }, - new() - { - Id = "swq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sharwa", - Comment = null, - }, - new() - { - Id = "swr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Saweru", - Comment = null, - }, - new() - { - Id = "sws", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Seluwasan", - Comment = null, - }, - new() - { - Id = "swt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sawila", - Comment = null, - }, - new() - { - Id = "swu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Suwawa", - Comment = null, - }, - new() - { - Id = "swv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Shekhawati", - Comment = null, - }, - new() - { - Id = "sww", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Sowa", - Comment = null, - }, - new() - { - Id = "swx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Suruahá", - Comment = null, - }, - new() - { - Id = "swy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sarua", - Comment = null, - }, - new() - { - Id = "sxb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Suba", - Comment = null, - }, - new() - { - Id = "sxc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Sicanian", - Comment = null, - }, - new() - { - Id = "sxe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sighu", - Comment = null, - }, - new() - { - Id = "sxg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Shuhi", - Comment = null, - }, - new() - { - Id = "sxk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Southern Kalapuya", - Comment = null, - }, - new() - { - Id = "sxl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Selian", - Comment = null, - }, - new() - { - Id = "sxm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Samre", - Comment = null, - }, - new() - { - Id = "sxn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sangir", - Comment = null, - }, - new() - { - Id = "sxo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Sorothaptic", - Comment = null, - }, - new() - { - Id = "sxr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Saaroa", - Comment = null, - }, - new() - { - Id = "sxs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sasaru", - Comment = null, - }, - new() - { - Id = "sxu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Upper Saxon", - Comment = null, - }, - new() - { - Id = "sxw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Saxwe Gbe", - Comment = null, - }, - new() - { - Id = "sya", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Siang", - Comment = null, - }, - new() - { - Id = "syb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Central Subanen", - Comment = null, - }, - new() - { - Id = "syc", - Part2B = "syc", - Part2T = "syc", - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Classical Syriac", - Comment = null, - }, - new() - { - Id = "syi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Seki", - Comment = null, - }, - new() - { - Id = "syk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sukur", - Comment = null, - }, - new() - { - Id = "syl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sylheti", - Comment = null, - }, - new() - { - Id = "sym", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maya Samo", - Comment = null, - }, - new() - { - Id = "syn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Senaya", - Comment = null, - }, - new() - { - Id = "syo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Suoy", - Comment = null, - }, - new() - { - Id = "syr", - Part2B = "syr", - Part2T = "syr", - Part1 = null, - Scope = "M", - LanguageType = "L", - RefName = "Syriac", - Comment = null, - }, - new() - { - Id = "sys", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sinyar", - Comment = null, - }, - new() - { - Id = "syw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kagate", - Comment = null, - }, - new() - { - Id = "syx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Samay", - Comment = null, - }, - new() - { - Id = "syy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Al-Sayyid Bedouin Sign Language", - Comment = null, - }, - new() - { - Id = "sza", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Semelai", - Comment = null, - }, - new() - { - Id = "szb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngalum", - Comment = null, - }, - new() - { - Id = "szc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Semaq Beri", - Comment = null, - }, - new() - { - Id = "sze", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Seze", - Comment = null, - }, - new() - { - Id = "szg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sengele", - Comment = null, - }, - new() - { - Id = "szl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Silesian", - Comment = null, - }, - new() - { - Id = "szn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sula", - Comment = null, - }, - new() - { - Id = "szp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Suabo", - Comment = null, - }, - new() - { - Id = "szs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Solomon Islands Sign Language", - Comment = null, - }, - new() - { - Id = "szv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Isubu", - Comment = null, - }, - new() - { - Id = "szw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sawai", - Comment = null, - }, - new() - { - Id = "szy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sakizaya", - Comment = null, - }, - new() - { - Id = "taa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lower Tanana", - Comment = null, - }, - new() - { - Id = "tab", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tabassaran", - Comment = null, - }, - new() - { - Id = "tac", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lowland Tarahumara", - Comment = null, - }, - new() - { - Id = "tad", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tause", - Comment = null, - }, - new() - { - Id = "tae", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tariana", - Comment = null, - }, - new() - { - Id = "taf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tapirapé", - Comment = null, - }, - new() - { - Id = "tag", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tagoi", - Comment = null, - }, - new() - { - Id = "tah", - Part2B = "tah", - Part2T = "tah", - Part1 = "ty", - Scope = "I", - LanguageType = "L", - RefName = "Tahitian", - Comment = null, - }, - new() - { - Id = "taj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Tamang", - Comment = null, - }, - new() - { - Id = "tak", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tala", - Comment = null, - }, - new() - { - Id = "tal", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tal", - Comment = null, - }, - new() - { - Id = "tam", - Part2B = "tam", - Part2T = "tam", - Part1 = "ta", - Scope = "I", - LanguageType = "L", - RefName = "Tamil", - Comment = null, - }, - new() - { - Id = "tan", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tangale", - Comment = null, - }, - new() - { - Id = "tao", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yami", - Comment = null, - }, - new() - { - Id = "tap", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Taabwa", - Comment = null, - }, - new() - { - Id = "taq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tamasheq", - Comment = null, - }, - new() - { - Id = "tar", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Central Tarahumara", - Comment = null, - }, - new() - { - Id = "tas", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Tay Boi", - Comment = null, - }, - new() - { - Id = "tat", - Part2B = "tat", - Part2T = "tat", - Part1 = "tt", - Scope = "I", - LanguageType = "L", - RefName = "Tatar", - Comment = null, - }, - new() - { - Id = "tau", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Upper Tanana", - Comment = null, - }, - new() - { - Id = "tav", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tatuyo", - Comment = null, - }, - new() - { - Id = "taw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tai", - Comment = null, - }, - new() - { - Id = "tax", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tamki", - Comment = null, - }, - new() - { - Id = "tay", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Atayal", - Comment = null, - }, - new() - { - Id = "taz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tocho", - Comment = null, - }, - new() - { - Id = "tba", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aikanã", - Comment = null, - }, - new() - { - Id = "tbc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Takia", - Comment = null, - }, - new() - { - Id = "tbd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kaki Ae", - Comment = null, - }, - new() - { - Id = "tbe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tanimbili", - Comment = null, - }, - new() - { - Id = "tbf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mandara", - Comment = null, - }, - new() - { - Id = "tbg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "North Tairora", - Comment = null, - }, - new() - { - Id = "tbh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Dharawal", - Comment = null, - }, - new() - { - Id = "tbi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gaam", - Comment = null, - }, - new() - { - Id = "tbj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tiang", - Comment = null, - }, - new() - { - Id = "tbk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Calamian Tagbanwa", - Comment = null, - }, - new() - { - Id = "tbl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tboli", - Comment = null, - }, - new() - { - Id = "tbm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tagbu", - Comment = null, - }, - new() - { - Id = "tbn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Barro Negro Tunebo", - Comment = null, - }, - new() - { - Id = "tbo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tawala", - Comment = null, - }, - new() - { - Id = "tbp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Taworta", - Comment = null, - }, - new() - { - Id = "tbr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tumtum", - Comment = null, - }, - new() - { - Id = "tbs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tanguat", - Comment = null, - }, - new() - { - Id = "tbt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tembo (Kitembo)", - Comment = null, - }, - new() - { - Id = "tbu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Tubar", - Comment = null, - }, - new() - { - Id = "tbv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tobo", - Comment = null, - }, - new() - { - Id = "tbw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tagbanwa", - Comment = null, - }, - new() - { - Id = "tbx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kapin", - Comment = null, - }, - new() - { - Id = "tby", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tabaru", - Comment = null, - }, - new() - { - Id = "tbz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ditammari", - Comment = null, - }, - new() - { - Id = "tca", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ticuna", - Comment = null, - }, - new() - { - Id = "tcb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tanacross", - Comment = null, - }, - new() - { - Id = "tcc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Datooga", - Comment = null, - }, - new() - { - Id = "tcd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tafi", - Comment = null, - }, - new() - { - Id = "tce", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Tutchone", - Comment = null, - }, - new() - { - Id = "tcf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Malinaltepec Me'phaa", - Comment = null, - }, - new() - { - Id = "tcg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tamagario", - Comment = null, - }, - new() - { - Id = "tch", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Turks And Caicos Creole English", - Comment = null, - }, - new() - { - Id = "tci", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wára", - Comment = null, - }, - new() - { - Id = "tck", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tchitchege", - Comment = null, - }, - new() - { - Id = "tcl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Taman (Myanmar)", - Comment = null, - }, - new() - { - Id = "tcm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tanahmerah", - Comment = null, - }, - new() - { - Id = "tcn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tichurong", - Comment = null, - }, - new() - { - Id = "tco", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Taungyo", - Comment = null, - }, - new() - { - Id = "tcp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tawr Chin", - Comment = null, - }, - new() - { - Id = "tcq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kaiy", - Comment = null, - }, - new() - { - Id = "tcs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Torres Strait Creole", - Comment = null, - }, - new() - { - Id = "tct", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "T'en", - Comment = null, - }, - new() - { - Id = "tcu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southeastern Tarahumara", - Comment = null, - }, - new() - { - Id = "tcw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tecpatlán Totonac", - Comment = null, - }, - new() - { - Id = "tcx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Toda", - Comment = null, - }, - new() - { - Id = "tcy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tulu", - Comment = null, - }, - new() - { - Id = "tcz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Thado Chin", - Comment = null, - }, - new() - { - Id = "tda", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tagdal", - Comment = null, - }, - new() - { - Id = "tdb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Panchpargania", - Comment = null, - }, - new() - { - Id = "tdc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Emberá-Tadó", - Comment = null, - }, - new() - { - Id = "tdd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tai Nüa", - Comment = null, - }, - new() - { - Id = "tde", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tiranige Diga Dogon", - Comment = null, - }, - new() - { - Id = "tdf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Talieng", - Comment = null, - }, - new() - { - Id = "tdg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Tamang", - Comment = null, - }, - new() - { - Id = "tdh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Thulung", - Comment = null, - }, - new() - { - Id = "tdi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tomadino", - Comment = null, - }, - new() - { - Id = "tdj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tajio", - Comment = null, - }, - new() - { - Id = "tdk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tambas", - Comment = null, - }, - new() - { - Id = "tdl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sur", - Comment = null, - }, - new() - { - Id = "tdm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Taruma", - Comment = null, - }, - new() - { - Id = "tdn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tondano", - Comment = null, - }, - new() - { - Id = "tdo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Teme", - Comment = null, - }, - new() - { - Id = "tdq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tita", - Comment = null, - }, - new() - { - Id = "tdr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Todrah", - Comment = null, - }, - new() - { - Id = "tds", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Doutai", - Comment = null, - }, - new() - { - Id = "tdt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tetun Dili", - Comment = null, - }, - new() - { - Id = "tdv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Toro", - Comment = null, - }, - new() - { - Id = "tdx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tandroy-Mahafaly Malagasy", - Comment = null, - }, - new() - { - Id = "tdy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tadyawan", - Comment = null, - }, - new() - { - Id = "tea", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Temiar", - Comment = null, - }, - new() - { - Id = "teb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Tetete", - Comment = null, - }, - new() - { - Id = "tec", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Terik", - Comment = null, - }, - new() - { - Id = "ted", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tepo Krumen", - Comment = null, - }, - new() - { - Id = "tee", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Huehuetla Tepehua", - Comment = null, - }, - new() - { - Id = "tef", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Teressa", - Comment = null, - }, - new() - { - Id = "teg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Teke-Tege", - Comment = null, - }, - new() - { - Id = "teh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tehuelche", - Comment = null, - }, - new() - { - Id = "tei", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Torricelli", - Comment = null, - }, - new() - { - Id = "tek", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ibali Teke", - Comment = null, - }, - new() - { - Id = "tel", - Part2B = "tel", - Part2T = "tel", - Part1 = "te", - Scope = "I", - LanguageType = "L", - RefName = "Telugu", - Comment = null, - }, - new() - { - Id = "tem", - Part2B = "tem", - Part2T = "tem", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Timne", - Comment = null, - }, - new() - { - Id = "ten", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Tama (Colombia)", - Comment = null, - }, - new() - { - Id = "teo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Teso", - Comment = null, - }, - new() - { - Id = "tep", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Tepecano", - Comment = null, - }, - new() - { - Id = "teq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Temein", - Comment = null, - }, - new() - { - Id = "ter", - Part2B = "ter", - Part2T = "ter", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tereno", - Comment = null, - }, - new() - { - Id = "tes", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tengger", - Comment = null, - }, - new() - { - Id = "tet", - Part2B = "tet", - Part2T = "tet", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tetum", - Comment = null, - }, - new() - { - Id = "teu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Soo", - Comment = null, - }, - new() - { - Id = "tev", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Teor", - Comment = null, - }, - new() - { - Id = "tew", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tewa (USA)", - Comment = null, - }, - new() - { - Id = "tex", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tennet", - Comment = null, - }, - new() - { - Id = "tey", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tulishi", - Comment = null, - }, - new() - { - Id = "tez", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tetserret", - Comment = null, - }, - new() - { - Id = "tfi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tofin Gbe", - Comment = null, - }, - new() - { - Id = "tfn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tanaina", - Comment = null, - }, - new() - { - Id = "tfo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tefaro", - Comment = null, - }, - new() - { - Id = "tfr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Teribe", - Comment = null, - }, - new() - { - Id = "tft", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ternate", - Comment = null, - }, - new() - { - Id = "tga", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sagalla", - Comment = null, - }, - new() - { - Id = "tgb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tobilung", - Comment = null, - }, - new() - { - Id = "tgc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tigak", - Comment = null, - }, - new() - { - Id = "tgd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ciwogai", - Comment = null, - }, - new() - { - Id = "tge", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Gorkha Tamang", - Comment = null, - }, - new() - { - Id = "tgf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chalikha", - Comment = null, - }, - new() - { - Id = "tgh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tobagonian Creole English", - Comment = null, - }, - new() - { - Id = "tgi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lawunuia", - Comment = null, - }, - new() - { - Id = "tgj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tagin", - Comment = null, - }, - new() - { - Id = "tgk", - Part2B = "tgk", - Part2T = "tgk", - Part1 = "tg", - Scope = "I", - LanguageType = "L", - RefName = "Tajik", - Comment = null, - }, - new() - { - Id = "tgl", - Part2B = "tgl", - Part2T = "tgl", - Part1 = "tl", - Scope = "I", - LanguageType = "L", - RefName = "Tagalog", - Comment = null, - }, - new() - { - Id = "tgn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tandaganon", - Comment = null, - }, - new() - { - Id = "tgo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sudest", - Comment = null, - }, - new() - { - Id = "tgp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tangoa", - Comment = null, - }, - new() - { - Id = "tgq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tring", - Comment = null, - }, - new() - { - Id = "tgr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tareng", - Comment = null, - }, - new() - { - Id = "tgs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nume", - Comment = null, - }, - new() - { - Id = "tgt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Central Tagbanwa", - Comment = null, - }, - new() - { - Id = "tgu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tanggu", - Comment = null, - }, - new() - { - Id = "tgv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Tingui-Boto", - Comment = null, - }, - new() - { - Id = "tgw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tagwana Senoufo", - Comment = null, - }, - new() - { - Id = "tgx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tagish", - Comment = null, - }, - new() - { - Id = "tgy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Togoyo", - Comment = null, - }, - new() - { - Id = "tgz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Tagalaka", - Comment = null, - }, - new() - { - Id = "tha", - Part2B = "tha", - Part2T = "tha", - Part1 = "th", - Scope = "I", - LanguageType = "L", - RefName = "Thai", - Comment = null, - }, - new() - { - Id = "thd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kuuk Thaayorre", - Comment = null, - }, - new() - { - Id = "the", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chitwania Tharu", - Comment = null, - }, - new() - { - Id = "thf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Thangmi", - Comment = null, - }, - new() - { - Id = "thh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Tarahumara", - Comment = null, - }, - new() - { - Id = "thi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tai Long", - Comment = null, - }, - new() - { - Id = "thk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tharaka", - Comment = null, - }, - new() - { - Id = "thl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dangaura Tharu", - Comment = null, - }, - new() - { - Id = "thm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aheu", - Comment = null, - }, - new() - { - Id = "thn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Thachanadan", - Comment = null, - }, - new() - { - Id = "thp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Thompson", - Comment = null, - }, - new() - { - Id = "thq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kochila Tharu", - Comment = null, - }, - new() - { - Id = "thr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rana Tharu", - Comment = null, - }, - new() - { - Id = "ths", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Thakali", - Comment = null, - }, - new() - { - Id = "tht", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tahltan", - Comment = null, - }, - new() - { - Id = "thu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Thuri", - Comment = null, - }, - new() - { - Id = "thv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tahaggart Tamahaq", - Comment = null, - }, - new() - { - Id = "thy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tha", - Comment = null, - }, - new() - { - Id = "thz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tayart Tamajeq", - Comment = null, - }, - new() - { - Id = "tia", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tidikelt Tamazight", - Comment = null, - }, - new() - { - Id = "tic", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tira", - Comment = null, - }, - new() - { - Id = "tif", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tifal", - Comment = null, - }, - new() - { - Id = "tig", - Part2B = "tig", - Part2T = "tig", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tigre", - Comment = null, - }, - new() - { - Id = "tih", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Timugon Murut", - Comment = null, - }, - new() - { - Id = "tii", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tiene", - Comment = null, - }, - new() - { - Id = "tij", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tilung", - Comment = null, - }, - new() - { - Id = "tik", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tikar", - Comment = null, - }, - new() - { - Id = "til", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Tillamook", - Comment = null, - }, - new() - { - Id = "tim", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Timbe", - Comment = null, - }, - new() - { - Id = "tin", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tindi", - Comment = null, - }, - new() - { - Id = "tio", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Teop", - Comment = null, - }, - new() - { - Id = "tip", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Trimuris", - Comment = null, - }, - new() - { - Id = "tiq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tiéfo", - Comment = null, - }, - new() - { - Id = "tir", - Part2B = "tir", - Part2T = "tir", - Part1 = "ti", - Scope = "I", - LanguageType = "L", - RefName = "Tigrinya", - Comment = null, - }, - new() - { - Id = "tis", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Masadiit Itneg", - Comment = null, - }, - new() - { - Id = "tit", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tinigua", - Comment = null, - }, - new() - { - Id = "tiu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Adasen", - Comment = null, - }, - new() - { - Id = "tiv", - Part2B = "tiv", - Part2T = "tiv", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tiv", - Comment = null, - }, - new() - { - Id = "tiw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tiwi", - Comment = null, - }, - new() - { - Id = "tix", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Tiwa", - Comment = null, - }, - new() - { - Id = "tiy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tiruray", - Comment = null, - }, - new() - { - Id = "tiz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tai Hongjin", - Comment = null, - }, - new() - { - Id = "tja", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tajuasohn", - Comment = null, - }, - new() - { - Id = "tjg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tunjung", - Comment = null, - }, - new() - { - Id = "tji", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Tujia", - Comment = null, - }, - new() - { - Id = "tjj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tjungundji", - Comment = null, - }, - new() - { - Id = "tjl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tai Laing", - Comment = null, - }, - new() - { - Id = "tjm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Timucua", - Comment = null, - }, - new() - { - Id = "tjn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Tonjon", - Comment = null, - }, - new() - { - Id = "tjo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Temacine Tamazight", - Comment = null, - }, - new() - { - Id = "tjp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tjupany", - Comment = null, - }, - new() - { - Id = "tjs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Tujia", - Comment = null, - }, - new() - { - Id = "tju", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Tjurruru", - Comment = null, - }, - new() - { - Id = "tjw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Djabwurrung", - Comment = null, - }, - new() - { - Id = "tka", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Truká", - Comment = null, - }, - new() - { - Id = "tkb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Buksa", - Comment = null, - }, - new() - { - Id = "tkd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tukudede", - Comment = null, - }, - new() - { - Id = "tke", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Takwane", - Comment = null, - }, - new() - { - Id = "tkf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Tukumanféd", - Comment = null, - }, - new() - { - Id = "tkg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tesaka Malagasy", - Comment = null, - }, - new() - { - Id = "tkl", - Part2B = "tkl", - Part2T = "tkl", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tokelau", - Comment = null, - }, - new() - { - Id = "tkm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Takelma", - Comment = null, - }, - new() - { - Id = "tkn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Toku-No-Shima", - Comment = null, - }, - new() - { - Id = "tkp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tikopia", - Comment = null, - }, - new() - { - Id = "tkq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tee", - Comment = null, - }, - new() - { - Id = "tkr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tsakhur", - Comment = null, - }, - new() - { - Id = "tks", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Takestani", - Comment = null, - }, - new() - { - Id = "tkt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kathoriya Tharu", - Comment = null, - }, - new() - { - Id = "tku", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Upper Necaxa Totonac", - Comment = null, - }, - new() - { - Id = "tkv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mur Pano", - Comment = null, - }, - new() - { - Id = "tkw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Teanu", - Comment = null, - }, - new() - { - Id = "tkx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tangko", - Comment = null, - }, - new() - { - Id = "tkz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Takua", - Comment = null, - }, - new() - { - Id = "tla", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southwestern Tepehuan", - Comment = null, - }, - new() - { - Id = "tlb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tobelo", - Comment = null, - }, - new() - { - Id = "tlc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yecuatla Totonac", - Comment = null, - }, - new() - { - Id = "tld", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Talaud", - Comment = null, - }, - new() - { - Id = "tlf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Telefol", - Comment = null, - }, - new() - { - Id = "tlg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tofanma", - Comment = null, - }, - new() - { - Id = "tlh", - Part2B = "tlh", - Part2T = "tlh", - Part1 = null, - Scope = "I", - LanguageType = "C", - RefName = "Klingon", - Comment = null, - }, - new() - { - Id = "tli", - Part2B = "tli", - Part2T = "tli", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tlingit", - Comment = null, - }, - new() - { - Id = "tlj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Talinga-Bwisi", - Comment = null, - }, - new() - { - Id = "tlk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Taloki", - Comment = null, - }, - new() - { - Id = "tll", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tetela", - Comment = null, - }, - new() - { - Id = "tlm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tolomako", - Comment = null, - }, - new() - { - Id = "tln", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Talondo'", - Comment = null, - }, - new() - { - Id = "tlo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Talodi", - Comment = null, - }, - new() - { - Id = "tlp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Filomena Mata-Coahuitlán Totonac", - Comment = null, - }, - new() - { - Id = "tlq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tai Loi", - Comment = null, - }, - new() - { - Id = "tlr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Talise", - Comment = null, - }, - new() - { - Id = "tls", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tambotalo", - Comment = null, - }, - new() - { - Id = "tlt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sou Nama", - Comment = null, - }, - new() - { - Id = "tlu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tulehu", - Comment = null, - }, - new() - { - Id = "tlv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Taliabu", - Comment = null, - }, - new() - { - Id = "tlx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Khehek", - Comment = null, - }, - new() - { - Id = "tly", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Talysh", - Comment = null, - }, - new() - { - Id = "tma", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tama (Chad)", - Comment = null, - }, - new() - { - Id = "tmb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Katbol", - Comment = null, - }, - new() - { - Id = "tmc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tumak", - Comment = null, - }, - new() - { - Id = "tmd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Haruai", - Comment = null, - }, - new() - { - Id = "tme", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Tremembé", - Comment = null, - }, - new() - { - Id = "tmf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Toba-Maskoy", - Comment = null, - }, - new() - { - Id = "tmg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Ternateño", - Comment = null, - }, - new() - { - Id = "tmh", - Part2B = "tmh", - Part2T = "tmh", - Part1 = null, - Scope = "M", - LanguageType = "L", - RefName = "Tamashek", - Comment = null, - }, - new() - { - Id = "tmi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tutuba", - Comment = null, - }, - new() - { - Id = "tmj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Samarokena", - Comment = null, - }, - new() - { - Id = "tml", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tamnim Citak", - Comment = null, - }, - new() - { - Id = "tmm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tai Thanh", - Comment = null, - }, - new() - { - Id = "tmn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Taman (Indonesia)", - Comment = null, - }, - new() - { - Id = "tmo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Temoq", - Comment = null, - }, - new() - { - Id = "tmq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tumleo", - Comment = null, - }, - new() - { - Id = "tmr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Jewish Babylonian Aramaic (ca. 200-1200 CE)", - Comment = null, - }, - new() - { - Id = "tms", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tima", - Comment = null, - }, - new() - { - Id = "tmt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tasmate", - Comment = null, - }, - new() - { - Id = "tmu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Iau", - Comment = null, - }, - new() - { - Id = "tmv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tembo (Motembo)", - Comment = null, - }, - new() - { - Id = "tmw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Temuan", - Comment = null, - }, - new() - { - Id = "tmy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tami", - Comment = null, - }, - new() - { - Id = "tmz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Tamanaku", - Comment = null, - }, - new() - { - Id = "tna", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tacana", - Comment = null, - }, - new() - { - Id = "tnb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Tunebo", - Comment = null, - }, - new() - { - Id = "tnc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tanimuca-Retuarã", - Comment = null, - }, - new() - { - Id = "tnd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Angosturas Tunebo", - Comment = null, - }, - new() - { - Id = "tng", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tobanga", - Comment = null, - }, - new() - { - Id = "tnh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maiani", - Comment = null, - }, - new() - { - Id = "tni", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tandia", - Comment = null, - }, - new() - { - Id = "tnk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kwamera", - Comment = null, - }, - new() - { - Id = "tnl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lenakel", - Comment = null, - }, - new() - { - Id = "tnm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tabla", - Comment = null, - }, - new() - { - Id = "tnn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "North Tanna", - Comment = null, - }, - new() - { - Id = "tno", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Toromono", - Comment = null, - }, - new() - { - Id = "tnp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Whitesands", - Comment = null, - }, - new() - { - Id = "tnq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Taino", - Comment = null, - }, - new() - { - Id = "tnr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ménik", - Comment = null, - }, - new() - { - Id = "tns", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tenis", - Comment = null, - }, - new() - { - Id = "tnt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tontemboan", - Comment = null, - }, - new() - { - Id = "tnu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tay Khang", - Comment = null, - }, - new() - { - Id = "tnv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tangchangya", - Comment = null, - }, - new() - { - Id = "tnw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tonsawang", - Comment = null, - }, - new() - { - Id = "tnx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tanema", - Comment = null, - }, - new() - { - Id = "tny", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tongwe", - Comment = null, - }, - new() - { - Id = "tnz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ten'edn", - Comment = null, - }, - new() - { - Id = "tob", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Toba", - Comment = null, - }, - new() - { - Id = "toc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Coyutla Totonac", - Comment = null, - }, - new() - { - Id = "tod", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Toma", - Comment = null, - }, - new() - { - Id = "tof", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gizrra", - Comment = null, - }, - new() - { - Id = "tog", - Part2B = "tog", - Part2T = "tog", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tonga (Nyasa)", - Comment = null, - }, - new() - { - Id = "toh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gitonga", - Comment = null, - }, - new() - { - Id = "toi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tonga (Zambia)", - Comment = null, - }, - new() - { - Id = "toj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tojolabal", - Comment = null, - }, - new() - { - Id = "tok", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "C", - RefName = "Toki Pona", - Comment = null, - }, - new() - { - Id = "tol", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Tolowa", - Comment = null, - }, - new() - { - Id = "tom", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tombulu", - Comment = null, - }, - new() - { - Id = "ton", - Part2B = "ton", - Part2T = "ton", - Part1 = "to", - Scope = "I", - LanguageType = "L", - RefName = "Tonga (Tonga Islands)", - Comment = null, - }, - new() - { - Id = "too", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Xicotepec De Juárez Totonac", - Comment = null, - }, - new() - { - Id = "top", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Papantla Totonac", - Comment = null, - }, - new() - { - Id = "toq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Toposa", - Comment = null, - }, - new() - { - Id = "tor", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Togbo-Vara Banda", - Comment = null, - }, - new() - { - Id = "tos", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Highland Totonac", - Comment = null, - }, - new() - { - Id = "tou", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tho", - Comment = null, - }, - new() - { - Id = "tov", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Upper Taromi", - Comment = null, - }, - new() - { - Id = "tow", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jemez", - Comment = null, - }, - new() - { - Id = "tox", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tobian", - Comment = null, - }, - new() - { - Id = "toy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Topoiyo", - Comment = null, - }, - new() - { - Id = "toz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "To", - Comment = null, - }, - new() - { - Id = "tpa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Taupota", - Comment = null, - }, - new() - { - Id = "tpc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Azoyú Me'phaa", - Comment = null, - }, - new() - { - Id = "tpe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tippera", - Comment = null, - }, - new() - { - Id = "tpf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tarpia", - Comment = null, - }, - new() - { - Id = "tpg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kula", - Comment = null, - }, - new() - { - Id = "tpi", - Part2B = "tpi", - Part2T = "tpi", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tok Pisin", - Comment = null, - }, - new() - { - Id = "tpj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tapieté", - Comment = null, - }, - new() - { - Id = "tpk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Tupinikin", - Comment = null, - }, - new() - { - Id = "tpl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tlacoapa Me'phaa", - Comment = null, - }, - new() - { - Id = "tpm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tampulma", - Comment = null, - }, - new() - { - Id = "tpn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Tupinambá", - Comment = null, - }, - new() - { - Id = "tpo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tai Pao", - Comment = null, - }, - new() - { - Id = "tpp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pisaflores Tepehua", - Comment = null, - }, - new() - { - Id = "tpq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tukpa", - Comment = null, - }, - new() - { - Id = "tpr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tuparí", - Comment = null, - }, - new() - { - Id = "tpt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tlachichilco Tepehua", - Comment = null, - }, - new() - { - Id = "tpu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tampuan", - Comment = null, - }, - new() - { - Id = "tpv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tanapag", - Comment = null, - }, - new() - { - Id = "tpx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Acatepec Me'phaa", - Comment = null, - }, - new() - { - Id = "tpy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Trumai", - Comment = null, - }, - new() - { - Id = "tpz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tinputz", - Comment = null, - }, - new() - { - Id = "tqb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tembé", - Comment = null, - }, - new() - { - Id = "tql", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lehali", - Comment = null, - }, - new() - { - Id = "tqm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Turumsa", - Comment = null, - }, - new() - { - Id = "tqn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tenino", - Comment = null, - }, - new() - { - Id = "tqo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Toaripi", - Comment = null, - }, - new() - { - Id = "tqp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tomoip", - Comment = null, - }, - new() - { - Id = "tqq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tunni", - Comment = null, - }, - new() - { - Id = "tqr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Torona", - Comment = null, - }, - new() - { - Id = "tqt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Totonac", - Comment = null, - }, - new() - { - Id = "tqu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Touo", - Comment = null, - }, - new() - { - Id = "tqw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Tonkawa", - Comment = null, - }, - new() - { - Id = "tra", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tirahi", - Comment = null, - }, - new() - { - Id = "trb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Terebu", - Comment = null, - }, - new() - { - Id = "trc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Copala Triqui", - Comment = null, - }, - new() - { - Id = "trd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Turi", - Comment = null, - }, - new() - { - Id = "tre", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "East Tarangan", - Comment = null, - }, - new() - { - Id = "trf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Trinidadian Creole English", - Comment = null, - }, - new() - { - Id = "trg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lishán Didán", - Comment = null, - }, - new() - { - Id = "trh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Turaka", - Comment = null, - }, - new() - { - Id = "tri", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Trió", - Comment = null, - }, - new() - { - Id = "trj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Toram", - Comment = null, - }, - new() - { - Id = "trl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Traveller Scottish", - Comment = null, - }, - new() - { - Id = "trm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tregami", - Comment = null, - }, - new() - { - Id = "trn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Trinitario", - Comment = null, - }, - new() - { - Id = "tro", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tarao Naga", - Comment = null, - }, - new() - { - Id = "trp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kok Borok", - Comment = null, - }, - new() - { - Id = "trq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "San Martín Itunyoso Triqui", - Comment = null, - }, - new() - { - Id = "trr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Taushiro", - Comment = null, - }, - new() - { - Id = "trs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chicahuaxtla Triqui", - Comment = null, - }, - new() - { - Id = "trt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tunggare", - Comment = null, - }, - new() - { - Id = "tru", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Turoyo", - Comment = null, - }, - new() - { - Id = "trv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sediq", - Comment = null, - }, - new() - { - Id = "trw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Torwali", - Comment = null, - }, - new() - { - Id = "trx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tringgus-Sembaan Bidayuh", - Comment = null, - }, - new() - { - Id = "try", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Turung", - Comment = null, - }, - new() - { - Id = "trz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Torá", - Comment = null, - }, - new() - { - Id = "tsa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tsaangi", - Comment = null, - }, - new() - { - Id = "tsb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tsamai", - Comment = null, - }, - new() - { - Id = "tsc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tswa", - Comment = null, - }, - new() - { - Id = "tsd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tsakonian", - Comment = null, - }, - new() - { - Id = "tse", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tunisian Sign Language", - Comment = null, - }, - new() - { - Id = "tsg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tausug", - Comment = null, - }, - new() - { - Id = "tsh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tsuvan", - Comment = null, - }, - new() - { - Id = "tsi", - Part2B = "tsi", - Part2T = "tsi", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tsimshian", - Comment = null, - }, - new() - { - Id = "tsj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tshangla", - Comment = null, - }, - new() - { - Id = "tsk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tseku", - Comment = null, - }, - new() - { - Id = "tsl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ts'ün-Lao", - Comment = null, - }, - new() - { - Id = "tsm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Turkish Sign Language", - Comment = null, - }, - new() - { - Id = "tsn", - Part2B = "tsn", - Part2T = "tsn", - Part1 = "tn", - Scope = "I", - LanguageType = "L", - RefName = "Tswana", - Comment = null, - }, - new() - { - Id = "tso", - Part2B = "tso", - Part2T = "tso", - Part1 = "ts", - Scope = "I", - LanguageType = "L", - RefName = "Tsonga", - Comment = null, - }, - new() - { - Id = "tsp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Toussian", - Comment = null, - }, - new() - { - Id = "tsq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Thai Sign Language", - Comment = null, - }, - new() - { - Id = "tsr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Akei", - Comment = null, - }, - new() - { - Id = "tss", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Taiwan Sign Language", - Comment = null, - }, - new() - { - Id = "tst", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tondi Songway Kiini", - Comment = null, - }, - new() - { - Id = "tsu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tsou", - Comment = null, - }, - new() - { - Id = "tsv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tsogo", - Comment = null, - }, - new() - { - Id = "tsw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tsishingini", - Comment = null, - }, - new() - { - Id = "tsx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mubami", - Comment = null, - }, - new() - { - Id = "tsy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tebul Sign Language", - Comment = null, - }, - new() - { - Id = "tsz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Purepecha", - Comment = null, - }, - new() - { - Id = "tta", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Tutelo", - Comment = null, - }, - new() - { - Id = "ttb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gaa", - Comment = null, - }, - new() - { - Id = "ttc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tektiteko", - Comment = null, - }, - new() - { - Id = "ttd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tauade", - Comment = null, - }, - new() - { - Id = "tte", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bwanabwana", - Comment = null, - }, - new() - { - Id = "ttf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tuotomb", - Comment = null, - }, - new() - { - Id = "ttg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tutong", - Comment = null, - }, - new() - { - Id = "tth", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Upper Ta'oih", - Comment = null, - }, - new() - { - Id = "tti", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tobati", - Comment = null, - }, - new() - { - Id = "ttj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tooro", - Comment = null, - }, - new() - { - Id = "ttk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Totoro", - Comment = null, - }, - new() - { - Id = "ttl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Totela", - Comment = null, - }, - new() - { - Id = "ttm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Tutchone", - Comment = null, - }, - new() - { - Id = "ttn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Towei", - Comment = null, - }, - new() - { - Id = "tto", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lower Ta'oih", - Comment = null, - }, - new() - { - Id = "ttp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tombelala", - Comment = null, - }, - new() - { - Id = "ttq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tawallammat Tamajaq", - Comment = null, - }, - new() - { - Id = "ttr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tera", - Comment = null, - }, - new() - { - Id = "tts", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northeastern Thai", - Comment = null, - }, - new() - { - Id = "ttt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Muslim Tat", - Comment = null, - }, - new() - { - Id = "ttu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Torau", - Comment = null, - }, - new() - { - Id = "ttv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Titan", - Comment = null, - }, - new() - { - Id = "ttw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Long Wat", - Comment = null, - }, - new() - { - Id = "tty", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sikaritai", - Comment = null, - }, - new() - { - Id = "ttz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tsum", - Comment = null, - }, - new() - { - Id = "tua", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wiarumus", - Comment = null, - }, - new() - { - Id = "tub", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Tübatulabal", - Comment = null, - }, - new() - { - Id = "tuc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mutu", - Comment = null, - }, - new() - { - Id = "tud", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Tuxá", - Comment = null, - }, - new() - { - Id = "tue", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tuyuca", - Comment = null, - }, - new() - { - Id = "tuf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Central Tunebo", - Comment = null, - }, - new() - { - Id = "tug", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tunia", - Comment = null, - }, - new() - { - Id = "tuh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Taulil", - Comment = null, - }, - new() - { - Id = "tui", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tupuri", - Comment = null, - }, - new() - { - Id = "tuj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tugutil", - Comment = null, - }, - new() - { - Id = "tuk", - Part2B = "tuk", - Part2T = "tuk", - Part1 = "tk", - Scope = "I", - LanguageType = "L", - RefName = "Turkmen", - Comment = null, - }, - new() - { - Id = "tul", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tula", - Comment = null, - }, - new() - { - Id = "tum", - Part2B = "tum", - Part2T = "tum", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tumbuka", - Comment = null, - }, - new() - { - Id = "tun", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tunica", - Comment = null, - }, - new() - { - Id = "tuo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tucano", - Comment = null, - }, - new() - { - Id = "tuq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tedaga", - Comment = null, - }, - new() - { - Id = "tur", - Part2B = "tur", - Part2T = "tur", - Part1 = "tr", - Scope = "I", - LanguageType = "L", - RefName = "Turkish", - Comment = null, - }, - new() - { - Id = "tus", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tuscarora", - Comment = null, - }, - new() - { - Id = "tuu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tututni", - Comment = null, - }, - new() - { - Id = "tuv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Turkana", - Comment = null, - }, - new() - { - Id = "tux", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Tuxináwa", - Comment = null, - }, - new() - { - Id = "tuy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tugen", - Comment = null, - }, - new() - { - Id = "tuz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Turka", - Comment = null, - }, - new() - { - Id = "tva", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Vaghua", - Comment = null, - }, - new() - { - Id = "tvd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tsuvadi", - Comment = null, - }, - new() - { - Id = "tve", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Te'un", - Comment = null, - }, - new() - { - Id = "tvg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Tugunese", - Comment = null, - }, - new() - { - Id = "tvi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tulai", - Comment = null, - }, - new() - { - Id = "tvk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southeast Ambrym", - Comment = null, - }, - new() - { - Id = "tvl", - Part2B = "tvl", - Part2T = "tvl", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tuvalu", - Comment = null, - }, - new() - { - Id = "tvm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tela-Masbuar", - Comment = null, - }, - new() - { - Id = "tvn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tavoyan", - Comment = null, - }, - new() - { - Id = "tvo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tidore", - Comment = null, - }, - new() - { - Id = "tvs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Taveta", - Comment = null, - }, - new() - { - Id = "tvt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tutsa Naga", - Comment = null, - }, - new() - { - Id = "tvu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tunen", - Comment = null, - }, - new() - { - Id = "tvw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sedoa", - Comment = null, - }, - new() - { - Id = "tvx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Taivoan", - Comment = null, - }, - new() - { - Id = "tvy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Timor Pidgin", - Comment = null, - }, - new() - { - Id = "twa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Twana", - Comment = null, - }, - new() - { - Id = "twb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Tawbuid", - Comment = null, - }, - new() - { - Id = "twc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Teshenawa", - Comment = null, - }, - new() - { - Id = "twd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Twents", - Comment = null, - }, - new() - { - Id = "twe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tewa (Indonesia)", - Comment = null, - }, - new() - { - Id = "twf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Tiwa", - Comment = null, - }, - new() - { - Id = "twg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tereweng", - Comment = null, - }, - new() - { - Id = "twh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tai Dón", - Comment = null, - }, - new() - { - Id = "twi", - Part2B = "twi", - Part2T = "twi", - Part1 = "tw", - Scope = "I", - LanguageType = "L", - RefName = "Twi", - Comment = null, - }, - new() - { - Id = "twl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tawara", - Comment = null, - }, - new() - { - Id = "twm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tawang Monpa", - Comment = null, - }, - new() - { - Id = "twn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Twendi", - Comment = null, - }, - new() - { - Id = "two", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tswapong", - Comment = null, - }, - new() - { - Id = "twp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ere", - Comment = null, - }, - new() - { - Id = "twq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tasawaq", - Comment = null, - }, - new() - { - Id = "twr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southwestern Tarahumara", - Comment = null, - }, - new() - { - Id = "twt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Turiwára", - Comment = null, - }, - new() - { - Id = "twu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Termanu", - Comment = null, - }, - new() - { - Id = "tww", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tuwari", - Comment = null, - }, - new() - { - Id = "twx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tewe", - Comment = null, - }, - new() - { - Id = "twy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tawoyan", - Comment = null, - }, - new() - { - Id = "txa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tombonuo", - Comment = null, - }, - new() - { - Id = "txb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Tokharian B", - Comment = null, - }, - new() - { - Id = "txc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Tsetsaut", - Comment = null, - }, - new() - { - Id = "txe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Totoli", - Comment = null, - }, - new() - { - Id = "txg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Tangut", - Comment = null, - }, - new() - { - Id = "txh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Thracian", - Comment = null, - }, - new() - { - Id = "txi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ikpeng", - Comment = null, - }, - new() - { - Id = "txj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tarjumo", - Comment = null, - }, - new() - { - Id = "txm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tomini", - Comment = null, - }, - new() - { - Id = "txn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "West Tarangan", - Comment = null, - }, - new() - { - Id = "txo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Toto", - Comment = null, - }, - new() - { - Id = "txq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tii", - Comment = null, - }, - new() - { - Id = "txr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Tartessian", - Comment = null, - }, - new() - { - Id = "txs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tonsea", - Comment = null, - }, - new() - { - Id = "txt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Citak", - Comment = null, - }, - new() - { - Id = "txu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kayapó", - Comment = null, - }, - new() - { - Id = "txx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tatana", - Comment = null, - }, - new() - { - Id = "txy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tanosy Malagasy", - Comment = null, - }, - new() - { - Id = "tya", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tauya", - Comment = null, - }, - new() - { - Id = "tye", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kyanga", - Comment = null, - }, - new() - { - Id = "tyh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "O'du", - Comment = null, - }, - new() - { - Id = "tyi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Teke-Tsaayi", - Comment = null, - }, - new() - { - Id = "tyj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tai Do", - Comment = null, - }, - new() - { - Id = "tyl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Thu Lao", - Comment = null, - }, - new() - { - Id = "tyn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kombai", - Comment = null, - }, - new() - { - Id = "typ", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Thaypan", - Comment = null, - }, - new() - { - Id = "tyr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tai Daeng", - Comment = null, - }, - new() - { - Id = "tys", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tày Sa Pa", - Comment = null, - }, - new() - { - Id = "tyt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tày Tac", - Comment = null, - }, - new() - { - Id = "tyu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kua", - Comment = null, - }, - new() - { - Id = "tyv", - Part2B = "tyv", - Part2T = "tyv", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tuvinian", - Comment = null, - }, - new() - { - Id = "tyx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Teke-Tyee", - Comment = null, - }, - new() - { - Id = "tyy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tiyaa", - Comment = null, - }, - new() - { - Id = "tyz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tày", - Comment = null, - }, - new() - { - Id = "tza", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tanzanian Sign Language", - Comment = null, - }, - new() - { - Id = "tzh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tzeltal", - Comment = null, - }, - new() - { - Id = "tzj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tz'utujil", - Comment = null, - }, - new() - { - Id = "tzl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "C", - RefName = "Talossan", - Comment = null, - }, - new() - { - Id = "tzm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Central Atlas Tamazight", - Comment = null, - }, - new() - { - Id = "tzn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tugun", - Comment = null, - }, - new() - { - Id = "tzo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tzotzil", - Comment = null, - }, - new() - { - Id = "tzx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tabriak", - Comment = null, - }, - new() - { - Id = "uam", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Uamué", - Comment = null, - }, - new() - { - Id = "uan", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kuan", - Comment = null, - }, - new() - { - Id = "uar", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tairuma", - Comment = null, - }, - new() - { - Id = "uba", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ubang", - Comment = null, - }, - new() - { - Id = "ubi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ubi", - Comment = null, - }, - new() - { - Id = "ubl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Buhi'non Bikol", - Comment = null, - }, - new() - { - Id = "ubr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ubir", - Comment = null, - }, - new() - { - Id = "ubu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Umbu-Ungu", - Comment = null, - }, - new() - { - Id = "uby", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Ubykh", - Comment = null, - }, - new() - { - Id = "uda", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Uda", - Comment = null, - }, - new() - { - Id = "ude", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Udihe", - Comment = null, - }, - new() - { - Id = "udg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Muduga", - Comment = null, - }, - new() - { - Id = "udi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Udi", - Comment = null, - }, - new() - { - Id = "udj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ujir", - Comment = null, - }, - new() - { - Id = "udl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wuzlam", - Comment = null, - }, - new() - { - Id = "udm", - Part2B = "udm", - Part2T = "udm", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Udmurt", - Comment = null, - }, - new() - { - Id = "udu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Uduk", - Comment = null, - }, - new() - { - Id = "ues", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kioko", - Comment = null, - }, - new() - { - Id = "ufi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ufim", - Comment = null, - }, - new() - { - Id = "uga", - Part2B = "uga", - Part2T = "uga", - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Ugaritic", - Comment = null, - }, - new() - { - Id = "ugb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Kuku-Ugbanh", - Comment = null, - }, - new() - { - Id = "uge", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ughele", - Comment = null, - }, - new() - { - Id = "ugh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kubachi", - Comment = null, - }, - new() - { - Id = "ugn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ugandan Sign Language", - Comment = null, - }, - new() - { - Id = "ugo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ugong", - Comment = null, - }, - new() - { - Id = "ugy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Uruguayan Sign Language", - Comment = null, - }, - new() - { - Id = "uha", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Uhami", - Comment = null, - }, - new() - { - Id = "uhn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Damal", - Comment = null, - }, - new() - { - Id = "uig", - Part2B = "uig", - Part2T = "uig", - Part1 = "ug", - Scope = "I", - LanguageType = "L", - RefName = "Uighur", - Comment = null, - }, - new() - { - Id = "uis", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Uisai", - Comment = null, - }, - new() - { - Id = "uiv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Iyive", - Comment = null, - }, - new() - { - Id = "uji", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tanjijili", - Comment = null, - }, - new() - { - Id = "uka", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kaburi", - Comment = null, - }, - new() - { - Id = "ukg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ukuriguma", - Comment = null, - }, - new() - { - Id = "ukh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ukhwejo", - Comment = null, - }, - new() - { - Id = "uki", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kui (India)", - Comment = null, - }, - new() - { - Id = "ukk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Muak Sa-aak", - Comment = null, - }, - new() - { - Id = "ukl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ukrainian Sign Language", - Comment = null, - }, - new() - { - Id = "ukp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ukpe-Bayobiri", - Comment = null, - }, - new() - { - Id = "ukq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ukwa", - Comment = null, - }, - new() - { - Id = "ukr", - Part2B = "ukr", - Part2T = "ukr", - Part1 = "uk", - Scope = "I", - LanguageType = "L", - RefName = "Ukrainian", - Comment = null, - }, - new() - { - Id = "uks", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Urubú-Kaapor Sign Language", - Comment = null, - }, - new() - { - Id = "uku", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ukue", - Comment = null, - }, - new() - { - Id = "ukv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kuku", - Comment = null, - }, - new() - { - Id = "ukw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ukwuani-Aboh-Ndoni", - Comment = null, - }, - new() - { - Id = "uky", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Kuuk-Yak", - Comment = null, - }, - new() - { - Id = "ula", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Fungwa", - Comment = null, - }, - new() - { - Id = "ulb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ulukwumi", - Comment = null, - }, - new() - { - Id = "ulc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ulch", - Comment = null, - }, - new() - { - Id = "ule", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Lule", - Comment = null, - }, - new() - { - Id = "ulf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Usku", - Comment = null, - }, - new() - { - Id = "uli", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ulithian", - Comment = null, - }, - new() - { - Id = "ulk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Meriam Mir", - Comment = null, - }, - new() - { - Id = "ull", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ullatan", - Comment = null, - }, - new() - { - Id = "ulm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ulumanda'", - Comment = null, - }, - new() - { - Id = "uln", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Unserdeutsch", - Comment = null, - }, - new() - { - Id = "ulu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Uma' Lung", - Comment = null, - }, - new() - { - Id = "ulw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ulwa", - Comment = null, - }, - new() - { - Id = "uly", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Buli", - Comment = null, - }, - new() - { - Id = "uma", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Umatilla", - Comment = null, - }, - new() - { - Id = "umb", - Part2B = "umb", - Part2T = "umb", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Umbundu", - Comment = null, - }, - new() - { - Id = "umc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Marrucinian", - Comment = null, - }, - new() - { - Id = "umd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Umbindhamu", - Comment = null, - }, - new() - { - Id = "umg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Morrobalama", - Comment = null, - }, - new() - { - Id = "umi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ukit", - Comment = null, - }, - new() - { - Id = "umm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Umon", - Comment = null, - }, - new() - { - Id = "umn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Makyan Naga", - Comment = null, - }, - new() - { - Id = "umo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Umotína", - Comment = null, - }, - new() - { - Id = "ump", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Umpila", - Comment = null, - }, - new() - { - Id = "umr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Umbugarla", - Comment = null, - }, - new() - { - Id = "ums", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pendau", - Comment = null, - }, - new() - { - Id = "umu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Munsee", - Comment = null, - }, - new() - { - Id = "una", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "North Watut", - Comment = null, - }, - new() - { - Id = "und", - Part2B = "und", - Part2T = "und", - Part1 = null, - Scope = "S", - LanguageType = "S", - RefName = "Undetermined", - Comment = null, - }, - new() - { - Id = "une", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Uneme", - Comment = null, - }, - new() - { - Id = "ung", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngarinyin", - Comment = null, - }, - new() - { - Id = "uni", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Uni", - Comment = null, - }, - new() - { - Id = "unk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Enawené-Nawé", - Comment = null, - }, - new() - { - Id = "unm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Unami", - Comment = null, - }, - new() - { - Id = "unn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kurnai", - Comment = null, - }, - new() - { - Id = "unr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mundari", - Comment = null, - }, - new() - { - Id = "unu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Unubahe", - Comment = null, - }, - new() - { - Id = "unx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Munda", - Comment = null, - }, - new() - { - Id = "unz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Unde Kaili", - Comment = null, - }, - new() - { - Id = "uon", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Kulon", - Comment = null, - }, - new() - { - Id = "upi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Umeda", - Comment = null, - }, - new() - { - Id = "upv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Uripiv-Wala-Rano-Atchin", - Comment = null, - }, - new() - { - Id = "ura", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Urarina", - Comment = null, - }, - new() - { - Id = "urb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Urubú-Kaapor", - Comment = null, - }, - new() - { - Id = "urc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Urningangg", - Comment = null, - }, - new() - { - Id = "urd", - Part2B = "urd", - Part2T = "urd", - Part1 = "ur", - Scope = "I", - LanguageType = "L", - RefName = "Urdu", - Comment = null, - }, - new() - { - Id = "ure", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Uru", - Comment = null, - }, - new() - { - Id = "urf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Uradhi", - Comment = null, - }, - new() - { - Id = "urg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Urigina", - Comment = null, - }, - new() - { - Id = "urh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Urhobo", - Comment = null, - }, - new() - { - Id = "uri", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Urim", - Comment = null, - }, - new() - { - Id = "urk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Urak Lawoi'", - Comment = null, - }, - new() - { - Id = "url", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Urali", - Comment = null, - }, - new() - { - Id = "urm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Urapmin", - Comment = null, - }, - new() - { - Id = "urn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Uruangnirin", - Comment = null, - }, - new() - { - Id = "uro", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ura (Papua New Guinea)", - Comment = null, - }, - new() - { - Id = "urp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Uru-Pa-In", - Comment = null, - }, - new() - { - Id = "urr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lehalurup", - Comment = null, - }, - new() - { - Id = "urt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Urat", - Comment = null, - }, - new() - { - Id = "uru", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Urumi", - Comment = null, - }, - new() - { - Id = "urv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Uruava", - Comment = null, - }, - new() - { - Id = "urw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sop", - Comment = null, - }, - new() - { - Id = "urx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Urimo", - Comment = null, - }, - new() - { - Id = "ury", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Orya", - Comment = null, - }, - new() - { - Id = "urz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Uru-Eu-Wau-Wau", - Comment = null, - }, - new() - { - Id = "usa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Usarufa", - Comment = null, - }, - new() - { - Id = "ush", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ushojo", - Comment = null, - }, - new() - { - Id = "usi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Usui", - Comment = null, - }, - new() - { - Id = "usk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Usaghade", - Comment = null, - }, - new() - { - Id = "usp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Uspanteco", - Comment = null, - }, - new() - { - Id = "uss", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "us-Saare", - Comment = null, - }, - new() - { - Id = "usu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Uya", - Comment = null, - }, - new() - { - Id = "uta", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Otank", - Comment = null, - }, - new() - { - Id = "ute", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ute-Southern Paiute", - Comment = null, - }, - new() - { - Id = "uth", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "ut-Hun", - Comment = null, - }, - new() - { - Id = "utp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Amba (Solomon Islands)", - Comment = null, - }, - new() - { - Id = "utr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Etulo", - Comment = null, - }, - new() - { - Id = "utu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Utu", - Comment = null, - }, - new() - { - Id = "uum", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Urum", - Comment = null, - }, - new() - { - Id = "uur", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ura (Vanuatu)", - Comment = null, - }, - new() - { - Id = "uuu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "U", - Comment = null, - }, - new() - { - Id = "uve", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "West Uvean", - Comment = null, - }, - new() - { - Id = "uvh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Uri", - Comment = null, - }, - new() - { - Id = "uvl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lote", - Comment = null, - }, - new() - { - Id = "uwa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kuku-Uwanh", - Comment = null, - }, - new() - { - Id = "uya", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Doko-Uyanga", - Comment = null, - }, - new() - { - Id = "uzb", - Part2B = "uzb", - Part2T = "uzb", - Part1 = "uz", - Scope = "M", - LanguageType = "L", - RefName = "Uzbek", - Comment = null, - }, - new() - { - Id = "uzn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Uzbek", - Comment = null, - }, - new() - { - Id = "uzs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Uzbek", - Comment = null, - }, - new() - { - Id = "vaa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Vaagri Booli", - Comment = null, - }, - new() - { - Id = "vae", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Vale", - Comment = null, - }, - new() - { - Id = "vaf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Vafsi", - Comment = null, - }, - new() - { - Id = "vag", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Vagla", - Comment = null, - }, - new() - { - Id = "vah", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Varhadi-Nagpuri", - Comment = null, - }, - new() - { - Id = "vai", - Part2B = "vai", - Part2T = "vai", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Vai", - Comment = null, - }, - new() - { - Id = "vaj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sekele", - Comment = null, - }, - new() - { - Id = "val", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Vehes", - Comment = null, - }, - new() - { - Id = "vam", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Vanimo", - Comment = null, - }, - new() - { - Id = "van", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Valman", - Comment = null, - }, - new() - { - Id = "vao", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Vao", - Comment = null, - }, - new() - { - Id = "vap", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Vaiphei", - Comment = null, - }, - new() - { - Id = "var", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Huarijio", - Comment = null, - }, - new() - { - Id = "vas", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Vasavi", - Comment = null, - }, - new() - { - Id = "vau", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Vanuma", - Comment = null, - }, - new() - { - Id = "vav", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Varli", - Comment = null, - }, - new() - { - Id = "vay", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wayu", - Comment = null, - }, - new() - { - Id = "vbb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southeast Babar", - Comment = null, - }, - new() - { - Id = "vbk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southwestern Bontok", - Comment = null, - }, - new() - { - Id = "vec", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Venetian", - Comment = null, - }, - new() - { - Id = "ved", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Veddah", - Comment = null, - }, - new() - { - Id = "vel", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Veluws", - Comment = null, - }, - new() - { - Id = "vem", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Vemgo-Mabas", - Comment = null, - }, - new() - { - Id = "ven", - Part2B = "ven", - Part2T = "ven", - Part1 = "ve", - Scope = "I", - LanguageType = "L", - RefName = "Venda", - Comment = null, - }, - new() - { - Id = "veo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Ventureño", - Comment = null, - }, - new() - { - Id = "vep", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Veps", - Comment = null, - }, - new() - { - Id = "ver", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mom Jango", - Comment = null, - }, - new() - { - Id = "vgr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Vaghri", - Comment = null, - }, - new() - { - Id = "vgt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Vlaamse Gebarentaal", - Comment = null, - }, - new() - { - Id = "vic", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Virgin Islands Creole English", - Comment = null, - }, - new() - { - Id = "vid", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Vidunda", - Comment = null, - }, - new() - { - Id = "vie", - Part2B = "vie", - Part2T = "vie", - Part1 = "vi", - Scope = "I", - LanguageType = "L", - RefName = "Vietnamese", - Comment = null, - }, - new() - { - Id = "vif", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Vili", - Comment = null, - }, - new() - { - Id = "vig", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Viemo", - Comment = null, - }, - new() - { - Id = "vil", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Vilela", - Comment = null, - }, - new() - { - Id = "vin", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Vinza", - Comment = null, - }, - new() - { - Id = "vis", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Vishavan", - Comment = null, - }, - new() - { - Id = "vit", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Viti", - Comment = null, - }, - new() - { - Id = "viv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Iduna", - Comment = null, - }, - new() - { - Id = "vjk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bajjika", - Comment = null, - }, - new() - { - Id = "vka", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Kariyarra", - Comment = null, - }, - new() - { - Id = "vkj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kujarge", - Comment = null, - }, - new() - { - Id = "vkk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kaur", - Comment = null, - }, - new() - { - Id = "vkl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kulisusu", - Comment = null, - }, - new() - { - Id = "vkm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Kamakan", - Comment = null, - }, - new() - { - Id = "vkn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Koro Nulu", - Comment = null, - }, - new() - { - Id = "vko", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kodeoha", - Comment = null, - }, - new() - { - Id = "vkp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Korlai Creole Portuguese", - Comment = null, - }, - new() - { - Id = "vkt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tenggarong Kutai Malay", - Comment = null, - }, - new() - { - Id = "vku", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kurrama", - Comment = null, - }, - new() - { - Id = "vkz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Koro Zuba", - Comment = null, - }, - new() - { - Id = "vlp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Valpei", - Comment = null, - }, - new() - { - Id = "vls", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Vlaams", - Comment = null, - }, - new() - { - Id = "vma", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Martuyhunira", - Comment = null, - }, - new() - { - Id = "vmb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Barbaram", - Comment = null, - }, - new() - { - Id = "vmc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Juxtlahuaca Mixtec", - Comment = null, - }, - new() - { - Id = "vmd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mudu Koraga", - Comment = null, - }, - new() - { - Id = "vme", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "East Masela", - Comment = null, - }, - new() - { - Id = "vmf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mainfränkisch", - Comment = null, - }, - new() - { - Id = "vmg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lungalunga", - Comment = null, - }, - new() - { - Id = "vmh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maraghei", - Comment = null, - }, - new() - { - Id = "vmi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Miwa", - Comment = null, - }, - new() - { - Id = "vmj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ixtayutla Mixtec", - Comment = null, - }, - new() - { - Id = "vmk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Makhuwa-Shirima", - Comment = null, - }, - new() - { - Id = "vml", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Malgana", - Comment = null, - }, - new() - { - Id = "vmm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mitlatongo Mixtec", - Comment = null, - }, - new() - { - Id = "vmp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Soyaltepec Mazatec", - Comment = null, - }, - new() - { - Id = "vmq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Soyaltepec Mixtec", - Comment = null, - }, - new() - { - Id = "vmr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Marenje", - Comment = null, - }, - new() - { - Id = "vms", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Moksela", - Comment = null, - }, - new() - { - Id = "vmu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Muluridyi", - Comment = null, - }, - new() - { - Id = "vmv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Valley Maidu", - Comment = null, - }, - new() - { - Id = "vmw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Makhuwa", - Comment = null, - }, - new() - { - Id = "vmx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tamazola Mixtec", - Comment = null, - }, - new() - { - Id = "vmy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ayautla Mazatec", - Comment = null, - }, - new() - { - Id = "vmz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mazatlán Mazatec", - Comment = null, - }, - new() - { - Id = "vnk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Vano", - Comment = null, - }, - new() - { - Id = "vnm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Vinmavis", - Comment = null, - }, - new() - { - Id = "vnp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Vunapu", - Comment = null, - }, - new() - { - Id = "vol", - Part2B = "vol", - Part2T = "vol", - Part1 = "vo", - Scope = "I", - LanguageType = "C", - RefName = "Volapük", - Comment = null, - }, - new() - { - Id = "vor", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Voro", - Comment = null, - }, - new() - { - Id = "vot", - Part2B = "vot", - Part2T = "vot", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Votic", - Comment = null, - }, - new() - { - Id = "vra", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Vera'a", - Comment = null, - }, - new() - { - Id = "vro", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Võro", - Comment = null, - }, - new() - { - Id = "vrs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Varisi", - Comment = null, - }, - new() - { - Id = "vrt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Burmbar", - Comment = null, - }, - new() - { - Id = "vsi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Moldova Sign Language", - Comment = null, - }, - new() - { - Id = "vsl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Venezuelan Sign Language", - Comment = null, - }, - new() - { - Id = "vsn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Vedic Sanskrit", - Comment = null, - }, - new() - { - Id = "vsv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Valencian Sign Language", - Comment = null, - }, - new() - { - Id = "vto", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Vitou", - Comment = null, - }, - new() - { - Id = "vum", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Vumbu", - Comment = null, - }, - new() - { - Id = "vun", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Vunjo", - Comment = null, - }, - new() - { - Id = "vut", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Vute", - Comment = null, - }, - new() - { - Id = "vwa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Awa (China)", - Comment = null, - }, - new() - { - Id = "waa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Walla Walla", - Comment = null, - }, - new() - { - Id = "wab", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yote", - Comment = null, - }, - new() - { - Id = "wac", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Wasco-Wishram", - Comment = null, - }, - new() - { - Id = "wad", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wamesa", - Comment = null, - }, - new() - { - Id = "wae", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Walser", - Comment = null, - }, - new() - { - Id = "waf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Wakoná", - Comment = null, - }, - new() - { - Id = "wag", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wa'ema", - Comment = null, - }, - new() - { - Id = "wah", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Watubela", - Comment = null, - }, - new() - { - Id = "wai", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wares", - Comment = null, - }, - new() - { - Id = "waj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Waffa", - Comment = null, - }, - new() - { - Id = "wal", - Part2B = "wal", - Part2T = "wal", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wolaytta", - Comment = null, - }, - new() - { - Id = "wam", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Wampanoag", - Comment = null, - }, - new() - { - Id = "wan", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wan", - Comment = null, - }, - new() - { - Id = "wao", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Wappo", - Comment = null, - }, - new() - { - Id = "wap", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wapishana", - Comment = null, - }, - new() - { - Id = "waq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wagiman", - Comment = null, - }, - new() - { - Id = "war", - Part2B = "war", - Part2T = "war", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Waray (Philippines)", - Comment = null, - }, - new() - { - Id = "was", - Part2B = "was", - Part2T = "was", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Washo", - Comment = null, - }, - new() - { - Id = "wat", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kaninuwa", - Comment = null, - }, - new() - { - Id = "wau", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Waurá", - Comment = null, - }, - new() - { - Id = "wav", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Waka", - Comment = null, - }, - new() - { - Id = "waw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Waiwai", - Comment = null, - }, - new() - { - Id = "wax", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Watam", - Comment = null, - }, - new() - { - Id = "way", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wayana", - Comment = null, - }, - new() - { - Id = "waz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wampur", - Comment = null, - }, - new() - { - Id = "wba", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Warao", - Comment = null, - }, - new() - { - Id = "wbb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wabo", - Comment = null, - }, - new() - { - Id = "wbe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Waritai", - Comment = null, - }, - new() - { - Id = "wbf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wara", - Comment = null, - }, - new() - { - Id = "wbh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wanda", - Comment = null, - }, - new() - { - Id = "wbi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Vwanji", - Comment = null, - }, - new() - { - Id = "wbj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Alagwa", - Comment = null, - }, - new() - { - Id = "wbk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Waigali", - Comment = null, - }, - new() - { - Id = "wbl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wakhi", - Comment = null, - }, - new() - { - Id = "wbm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wa", - Comment = null, - }, - new() - { - Id = "wbp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Warlpiri", - Comment = null, - }, - new() - { - Id = "wbq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Waddar", - Comment = null, - }, - new() - { - Id = "wbr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wagdi", - Comment = null, - }, - new() - { - Id = "wbs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "West Bengal Sign Language", - Comment = null, - }, - new() - { - Id = "wbt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Warnman", - Comment = null, - }, - new() - { - Id = "wbv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wajarri", - Comment = null, - }, - new() - { - Id = "wbw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Woi", - Comment = null, - }, - new() - { - Id = "wca", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yanomámi", - Comment = null, - }, - new() - { - Id = "wci", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Waci Gbe", - Comment = null, - }, - new() - { - Id = "wdd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wandji", - Comment = null, - }, - new() - { - Id = "wdg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wadaginam", - Comment = null, - }, - new() - { - Id = "wdj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wadjiginy", - Comment = null, - }, - new() - { - Id = "wdk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Wadikali", - Comment = null, - }, - new() - { - Id = "wdt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wendat", - Comment = null, - }, - new() - { - Id = "wdu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Wadjigu", - Comment = null, - }, - new() - { - Id = "wdy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Wadjabangayi", - Comment = null, - }, - new() - { - Id = "wea", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Wewaw", - Comment = null, - }, - new() - { - Id = "wec", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wè Western", - Comment = null, - }, - new() - { - Id = "wed", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wedau", - Comment = null, - }, - new() - { - Id = "weg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wergaia", - Comment = null, - }, - new() - { - Id = "weh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Weh", - Comment = null, - }, - new() - { - Id = "wei", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kiunum", - Comment = null, - }, - new() - { - Id = "wem", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Weme Gbe", - Comment = null, - }, - new() - { - Id = "weo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wemale", - Comment = null, - }, - new() - { - Id = "wep", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Westphalien", - Comment = null, - }, - new() - { - Id = "wer", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Weri", - Comment = null, - }, - new() - { - Id = "wes", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cameroon Pidgin", - Comment = null, - }, - new() - { - Id = "wet", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Perai", - Comment = null, - }, - new() - { - Id = "weu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rawngtu Chin", - Comment = null, - }, - new() - { - Id = "wew", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wejewa", - Comment = null, - }, - new() - { - Id = "wfg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yafi", - Comment = null, - }, - new() - { - Id = "wga", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Wagaya", - Comment = null, - }, - new() - { - Id = "wgb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wagawaga", - Comment = null, - }, - new() - { - Id = "wgg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Wangkangurru", - Comment = null, - }, - new() - { - Id = "wgi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wahgi", - Comment = null, - }, - new() - { - Id = "wgo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Waigeo", - Comment = null, - }, - new() - { - Id = "wgu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Wirangu", - Comment = null, - }, - new() - { - Id = "wgy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Warrgamay", - Comment = null, - }, - new() - { - Id = "wha", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sou Upaa", - Comment = null, - }, - new() - { - Id = "whg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "North Wahgi", - Comment = null, - }, - new() - { - Id = "whk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wahau Kenyah", - Comment = null, - }, - new() - { - Id = "whu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wahau Kayan", - Comment = null, - }, - new() - { - Id = "wib", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Toussian", - Comment = null, - }, - new() - { - Id = "wic", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Wichita", - Comment = null, - }, - new() - { - Id = "wie", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Wik-Epa", - Comment = null, - }, - new() - { - Id = "wif", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Wik-Keyangan", - Comment = null, - }, - new() - { - Id = "wig", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wik Ngathan", - Comment = null, - }, - new() - { - Id = "wih", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wik-Me'anha", - Comment = null, - }, - new() - { - Id = "wii", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Minidien", - Comment = null, - }, - new() - { - Id = "wij", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wik-Iiyanh", - Comment = null, - }, - new() - { - Id = "wik", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wikalkan", - Comment = null, - }, - new() - { - Id = "wil", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Wilawila", - Comment = null, - }, - new() - { - Id = "wim", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wik-Mungkan", - Comment = null, - }, - new() - { - Id = "win", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ho-Chunk", - Comment = null, - }, - new() - { - Id = "wir", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Wiraféd", - Comment = null, - }, - new() - { - Id = "wiu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wiru", - Comment = null, - }, - new() - { - Id = "wiv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Vitu", - Comment = null, - }, - new() - { - Id = "wiy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Wiyot", - Comment = null, - }, - new() - { - Id = "wja", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Waja", - Comment = null, - }, - new() - { - Id = "wji", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Warji", - Comment = null, - }, - new() - { - Id = "wka", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Kw'adza", - Comment = null, - }, - new() - { - Id = "wkb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kumbaran", - Comment = null, - }, - new() - { - Id = "wkd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wakde", - Comment = null, - }, - new() - { - Id = "wkl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kalanadi", - Comment = null, - }, - new() - { - Id = "wkr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Keerray-Woorroong", - Comment = null, - }, - new() - { - Id = "wku", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kunduvadi", - Comment = null, - }, - new() - { - Id = "wkw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Wakawaka", - Comment = null, - }, - new() - { - Id = "wky", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Wangkayutyuru", - Comment = null, - }, - new() - { - Id = "wla", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Walio", - Comment = null, - }, - new() - { - Id = "wlc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mwali Comorian", - Comment = null, - }, - new() - { - Id = "wle", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wolane", - Comment = null, - }, - new() - { - Id = "wlg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kunbarlang", - Comment = null, - }, - new() - { - Id = "wlh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Welaun", - Comment = null, - }, - new() - { - Id = "wli", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Waioli", - Comment = null, - }, - new() - { - Id = "wlk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Wailaki", - Comment = null, - }, - new() - { - Id = "wll", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wali (Sudan)", - Comment = null, - }, - new() - { - Id = "wlm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Middle Welsh", - Comment = null, - }, - new() - { - Id = "wln", - Part2B = "wln", - Part2T = "wln", - Part1 = "wa", - Scope = "I", - LanguageType = "L", - RefName = "Walloon", - Comment = null, - }, - new() - { - Id = "wlo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wolio", - Comment = null, - }, - new() - { - Id = "wlr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wailapa", - Comment = null, - }, - new() - { - Id = "wls", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wallisian", - Comment = null, - }, - new() - { - Id = "wlu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Wuliwuli", - Comment = null, - }, - new() - { - Id = "wlv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wichí Lhamtés Vejoz", - Comment = null, - }, - new() - { - Id = "wlw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Walak", - Comment = null, - }, - new() - { - Id = "wlx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wali (Ghana)", - Comment = null, - }, - new() - { - Id = "wly", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Waling", - Comment = null, - }, - new() - { - Id = "wma", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Mawa (Nigeria)", - Comment = null, - }, - new() - { - Id = "wmb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wambaya", - Comment = null, - }, - new() - { - Id = "wmc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wamas", - Comment = null, - }, - new() - { - Id = "wmd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mamaindé", - Comment = null, - }, - new() - { - Id = "wme", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wambule", - Comment = null, - }, - new() - { - Id = "wmg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Minyag", - Comment = null, - }, - new() - { - Id = "wmh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Waima'a", - Comment = null, - }, - new() - { - Id = "wmi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Wamin", - Comment = null, - }, - new() - { - Id = "wmm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maiwa (Indonesia)", - Comment = null, - }, - new() - { - Id = "wmn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Waamwang", - Comment = null, - }, - new() - { - Id = "wmo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wom (Papua New Guinea)", - Comment = null, - }, - new() - { - Id = "wms", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wambon", - Comment = null, - }, - new() - { - Id = "wmt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Walmajarri", - Comment = null, - }, - new() - { - Id = "wmw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mwani", - Comment = null, - }, - new() - { - Id = "wmx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Womo", - Comment = null, - }, - new() - { - Id = "wnb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mokati", - Comment = null, - }, - new() - { - Id = "wnc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wantoat", - Comment = null, - }, - new() - { - Id = "wnd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Wandarang", - Comment = null, - }, - new() - { - Id = "wne", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Waneci", - Comment = null, - }, - new() - { - Id = "wng", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wanggom", - Comment = null, - }, - new() - { - Id = "wni", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ndzwani Comorian", - Comment = null, - }, - new() - { - Id = "wnk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wanukaka", - Comment = null, - }, - new() - { - Id = "wnm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Wanggamala", - Comment = null, - }, - new() - { - Id = "wnn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Wunumara", - Comment = null, - }, - new() - { - Id = "wno", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wano", - Comment = null, - }, - new() - { - Id = "wnp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wanap", - Comment = null, - }, - new() - { - Id = "wnu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Usan", - Comment = null, - }, - new() - { - Id = "wnw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wintu", - Comment = null, - }, - new() - { - Id = "wny", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wanyi", - Comment = null, - }, - new() - { - Id = "woa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kuwema", - Comment = null, - }, - new() - { - Id = "wob", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wè Northern", - Comment = null, - }, - new() - { - Id = "woc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wogeo", - Comment = null, - }, - new() - { - Id = "wod", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wolani", - Comment = null, - }, - new() - { - Id = "woe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Woleaian", - Comment = null, - }, - new() - { - Id = "wof", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gambian Wolof", - Comment = null, - }, - new() - { - Id = "wog", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wogamusin", - Comment = null, - }, - new() - { - Id = "woi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kamang", - Comment = null, - }, - new() - { - Id = "wok", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Longto", - Comment = null, - }, - new() - { - Id = "wol", - Part2B = "wol", - Part2T = "wol", - Part1 = "wo", - Scope = "I", - LanguageType = "L", - RefName = "Wolof", - Comment = null, - }, - new() - { - Id = "wom", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wom (Nigeria)", - Comment = null, - }, - new() - { - Id = "won", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wongo", - Comment = null, - }, - new() - { - Id = "woo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Manombai", - Comment = null, - }, - new() - { - Id = "wor", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Woria", - Comment = null, - }, - new() - { - Id = "wos", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hanga Hundi", - Comment = null, - }, - new() - { - Id = "wow", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wawonii", - Comment = null, - }, - new() - { - Id = "woy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Weyto", - Comment = null, - }, - new() - { - Id = "wpc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maco", - Comment = null, - }, - new() - { - Id = "wrb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Waluwarra", - Comment = null, - }, - new() - { - Id = "wrg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Warungu", - Comment = null, - }, - new() - { - Id = "wrh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Wiradjuri", - Comment = null, - }, - new() - { - Id = "wri", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Wariyangga", - Comment = null, - }, - new() - { - Id = "wrk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Garrwa", - Comment = null, - }, - new() - { - Id = "wrl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Warlmanpa", - Comment = null, - }, - new() - { - Id = "wrm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Warumungu", - Comment = null, - }, - new() - { - Id = "wrn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Warnang", - Comment = null, - }, - new() - { - Id = "wro", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Worrorra", - Comment = null, - }, - new() - { - Id = "wrp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Waropen", - Comment = null, - }, - new() - { - Id = "wrr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wardaman", - Comment = null, - }, - new() - { - Id = "wrs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Waris", - Comment = null, - }, - new() - { - Id = "wru", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Waru", - Comment = null, - }, - new() - { - Id = "wrv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Waruna", - Comment = null, - }, - new() - { - Id = "wrw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Gugu Warra", - Comment = null, - }, - new() - { - Id = "wrx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wae Rana", - Comment = null, - }, - new() - { - Id = "wry", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Merwari", - Comment = null, - }, - new() - { - Id = "wrz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Waray (Australia)", - Comment = null, - }, - new() - { - Id = "wsa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Warembori", - Comment = null, - }, - new() - { - Id = "wsg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Adilabad Gondi", - Comment = null, - }, - new() - { - Id = "wsi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wusi", - Comment = null, - }, - new() - { - Id = "wsk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Waskia", - Comment = null, - }, - new() - { - Id = "wsr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Owenia", - Comment = null, - }, - new() - { - Id = "wss", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wasa", - Comment = null, - }, - new() - { - Id = "wsu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Wasu", - Comment = null, - }, - new() - { - Id = "wsv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Wotapuri-Katarqalai", - Comment = null, - }, - new() - { - Id = "wtb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Matambwe", - Comment = null, - }, - new() - { - Id = "wtf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Watiwa", - Comment = null, - }, - new() - { - Id = "wth", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Wathawurrung", - Comment = null, - }, - new() - { - Id = "wti", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Berta", - Comment = null, - }, - new() - { - Id = "wtk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Watakataui", - Comment = null, - }, - new() - { - Id = "wtm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mewati", - Comment = null, - }, - new() - { - Id = "wtw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wotu", - Comment = null, - }, - new() - { - Id = "wua", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wikngenchera", - Comment = null, - }, - new() - { - Id = "wub", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wunambal", - Comment = null, - }, - new() - { - Id = "wud", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wudu", - Comment = null, - }, - new() - { - Id = "wuh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wutunhua", - Comment = null, - }, - new() - { - Id = "wul", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Silimo", - Comment = null, - }, - new() - { - Id = "wum", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wumbvu", - Comment = null, - }, - new() - { - Id = "wun", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bungu", - Comment = null, - }, - new() - { - Id = "wur", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Wurrugu", - Comment = null, - }, - new() - { - Id = "wut", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wutung", - Comment = null, - }, - new() - { - Id = "wuu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wu Chinese", - Comment = null, - }, - new() - { - Id = "wuv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wuvulu-Aua", - Comment = null, - }, - new() - { - Id = "wux", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wulna", - Comment = null, - }, - new() - { - Id = "wuy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wauyai", - Comment = null, - }, - new() - { - Id = "wwa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Waama", - Comment = null, - }, - new() - { - Id = "wwb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Wakabunga", - Comment = null, - }, - new() - { - Id = "wwo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wetamut", - Comment = null, - }, - new() - { - Id = "wwr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Warrwa", - Comment = null, - }, - new() - { - Id = "www", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wawa", - Comment = null, - }, - new() - { - Id = "wxa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Waxianghua", - Comment = null, - }, - new() - { - Id = "wxw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Wardandi", - Comment = null, - }, - new() - { - Id = "wyb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wangaaybuwan-Ngiyambaa", - Comment = null, - }, - new() - { - Id = "wyi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Woiwurrung", - Comment = null, - }, - new() - { - Id = "wym", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wymysorys", - Comment = null, - }, - new() - { - Id = "wyn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wyandot", - Comment = null, - }, - new() - { - Id = "wyr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wayoró", - Comment = null, - }, - new() - { - Id = "wyy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Fijian", - Comment = null, - }, - new() - { - Id = "xaa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Andalusian Arabic", - Comment = null, - }, - new() - { - Id = "xab", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sambe", - Comment = null, - }, - new() - { - Id = "xac", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kachari", - Comment = null, - }, - new() - { - Id = "xad", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Adai", - Comment = null, - }, - new() - { - Id = "xae", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Aequian", - Comment = null, - }, - new() - { - Id = "xag", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Aghwan", - Comment = null, - }, - new() - { - Id = "xai", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Kaimbé", - Comment = null, - }, - new() - { - Id = "xaj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Ararandewára", - Comment = null, - }, - new() - { - Id = "xak", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Máku", - Comment = null, - }, - new() - { - Id = "xal", - Part2B = "xal", - Part2T = "xal", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kalmyk", - Comment = null, - }, - new() - { - Id = "xam", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "ǀXam", - Comment = null, - }, - new() - { - Id = "xan", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Xamtanga", - Comment = null, - }, - new() - { - Id = "xao", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Khao", - Comment = null, - }, - new() - { - Id = "xap", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Apalachee", - Comment = null, - }, - new() - { - Id = "xaq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Aquitanian", - Comment = null, - }, - new() - { - Id = "xar", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Karami", - Comment = null, - }, - new() - { - Id = "xas", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Kamas", - Comment = null, - }, - new() - { - Id = "xat", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Katawixi", - Comment = null, - }, - new() - { - Id = "xau", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kauwera", - Comment = null, - }, - new() - { - Id = "xav", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Xavánte", - Comment = null, - }, - new() - { - Id = "xaw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kawaiisu", - Comment = null, - }, - new() - { - Id = "xay", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kayan Mahakam", - Comment = null, - }, - new() - { - Id = "xbb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Lower Burdekin", - Comment = null, - }, - new() - { - Id = "xbc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Bactrian", - Comment = null, - }, - new() - { - Id = "xbd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Bindal", - Comment = null, - }, - new() - { - Id = "xbe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Bigambal", - Comment = null, - }, - new() - { - Id = "xbg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Bunganditj", - Comment = null, - }, - new() - { - Id = "xbi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kombio", - Comment = null, - }, - new() - { - Id = "xbj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Birrpayi", - Comment = null, - }, - new() - { - Id = "xbm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Middle Breton", - Comment = null, - }, - new() - { - Id = "xbn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Kenaboi", - Comment = null, - }, - new() - { - Id = "xbo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Bolgarian", - Comment = null, - }, - new() - { - Id = "xbp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Bibbulman", - Comment = null, - }, - new() - { - Id = "xbr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kambera", - Comment = null, - }, - new() - { - Id = "xbw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Kambiwá", - Comment = null, - }, - new() - { - Id = "xby", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Batjala", - Comment = null, - }, - new() - { - Id = "xcb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Cumbric", - Comment = null, - }, - new() - { - Id = "xcc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Camunic", - Comment = null, - }, - new() - { - Id = "xce", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Celtiberian", - Comment = null, - }, - new() - { - Id = "xcg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Cisalpine Gaulish", - Comment = null, - }, - new() - { - Id = "xch", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Chemakum", - Comment = null, - }, - new() - { - Id = "xcl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Classical Armenian", - Comment = null, - }, - new() - { - Id = "xcm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Comecrudo", - Comment = null, - }, - new() - { - Id = "xcn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Cotoname", - Comment = null, - }, - new() - { - Id = "xco", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Chorasmian", - Comment = null, - }, - new() - { - Id = "xcr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Carian", - Comment = null, - }, - new() - { - Id = "xct", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Classical Tibetan", - Comment = null, - }, - new() - { - Id = "xcu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Curonian", - Comment = null, - }, - new() - { - Id = "xcv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Chuvantsy", - Comment = null, - }, - new() - { - Id = "xcw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Coahuilteco", - Comment = null, - }, - new() - { - Id = "xcy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Cayuse", - Comment = null, - }, - new() - { - Id = "xda", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Darkinyung", - Comment = null, - }, - new() - { - Id = "xdc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Dacian", - Comment = null, - }, - new() - { - Id = "xdk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Dharuk", - Comment = null, - }, - new() - { - Id = "xdm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Edomite", - Comment = null, - }, - new() - { - Id = "xdo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kwandu", - Comment = null, - }, - new() - { - Id = "xdq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kaitag", - Comment = null, - }, - new() - { - Id = "xdy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Malayic Dayak", - Comment = null, - }, - new() - { - Id = "xeb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Eblan", - Comment = null, - }, - new() - { - Id = "xed", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hdi", - Comment = null, - }, - new() - { - Id = "xeg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "ǁXegwi", - Comment = null, - }, - new() - { - Id = "xel", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kelo", - Comment = null, - }, - new() - { - Id = "xem", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kembayan", - Comment = null, - }, - new() - { - Id = "xep", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Epi-Olmec", - Comment = null, - }, - new() - { - Id = "xer", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Xerénte", - Comment = null, - }, - new() - { - Id = "xes", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kesawai", - Comment = null, - }, - new() - { - Id = "xet", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Xetá", - Comment = null, - }, - new() - { - Id = "xeu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Keoru-Ahia", - Comment = null, - }, - new() - { - Id = "xfa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Faliscan", - Comment = null, - }, - new() - { - Id = "xga", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Galatian", - Comment = null, - }, - new() - { - Id = "xgb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Gbin", - Comment = null, - }, - new() - { - Id = "xgd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Gudang", - Comment = null, - }, - new() - { - Id = "xgf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Gabrielino-Fernandeño", - Comment = null, - }, - new() - { - Id = "xgg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Goreng", - Comment = null, - }, - new() - { - Id = "xgi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Garingbal", - Comment = null, - }, - new() - { - Id = "xgl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Galindan", - Comment = null, - }, - new() - { - Id = "xgm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Dharumbal", - Comment = null, - }, - new() - { - Id = "xgr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Garza", - Comment = null, - }, - new() - { - Id = "xgu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Unggumi", - Comment = null, - }, - new() - { - Id = "xgw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Guwa", - Comment = null, - }, - new() - { - Id = "xha", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Harami", - Comment = null, - }, - new() - { - Id = "xhc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Hunnic", - Comment = null, - }, - new() - { - Id = "xhd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Hadrami", - Comment = null, - }, - new() - { - Id = "xhe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Khetrani", - Comment = null, - }, - new() - { - Id = "xhm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Middle Khmer (1400 to 1850 CE)", - Comment = null, - }, - new() - { - Id = "xho", - Part2B = "xho", - Part2T = "xho", - Part1 = "xh", - Scope = "I", - LanguageType = "L", - RefName = "Xhosa", - Comment = null, - }, - new() - { - Id = "xhr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Hernican", - Comment = null, - }, - new() - { - Id = "xht", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Hattic", - Comment = null, - }, - new() - { - Id = "xhu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Hurrian", - Comment = null, - }, - new() - { - Id = "xhv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Khua", - Comment = null, - }, - new() - { - Id = "xib", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Iberian", - Comment = null, - }, - new() - { - Id = "xii", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Xiri", - Comment = null, - }, - new() - { - Id = "xil", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Illyrian", - Comment = null, - }, - new() - { - Id = "xin", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Xinca", - Comment = null, - }, - new() - { - Id = "xir", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Xiriâna", - Comment = null, - }, - new() - { - Id = "xis", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kisan", - Comment = null, - }, - new() - { - Id = "xiv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Indus Valley Language", - Comment = null, - }, - new() - { - Id = "xiy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Xipaya", - Comment = null, - }, - new() - { - Id = "xjb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Minjungbal", - Comment = null, - }, - new() - { - Id = "xjt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Jaitmatang", - Comment = null, - }, - new() - { - Id = "xka", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kalkoti", - Comment = null, - }, - new() - { - Id = "xkb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Nago", - Comment = null, - }, - new() - { - Id = "xkc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kho'ini", - Comment = null, - }, - new() - { - Id = "xkd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mendalam Kayan", - Comment = null, - }, - new() - { - Id = "xke", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kereho", - Comment = null, - }, - new() - { - Id = "xkf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Khengkha", - Comment = null, - }, - new() - { - Id = "xkg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kagoro", - Comment = null, - }, - new() - { - Id = "xki", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kenyan Sign Language", - Comment = null, - }, - new() - { - Id = "xkj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kajali", - Comment = null, - }, - new() - { - Id = "xkk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kachok", - Comment = null, - }, - new() - { - Id = "xkl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mainstream Kenyah", - Comment = null, - }, - new() - { - Id = "xkn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kayan River Kayan", - Comment = null, - }, - new() - { - Id = "xko", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kiorr", - Comment = null, - }, - new() - { - Id = "xkp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kabatei", - Comment = null, - }, - new() - { - Id = "xkq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Koroni", - Comment = null, - }, - new() - { - Id = "xkr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Xakriabá", - Comment = null, - }, - new() - { - Id = "xks", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kumbewaha", - Comment = null, - }, - new() - { - Id = "xkt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kantosi", - Comment = null, - }, - new() - { - Id = "xku", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kaamba", - Comment = null, - }, - new() - { - Id = "xkv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kgalagadi", - Comment = null, - }, - new() - { - Id = "xkw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kembra", - Comment = null, - }, - new() - { - Id = "xkx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Karore", - Comment = null, - }, - new() - { - Id = "xky", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Uma' Lasan", - Comment = null, - }, - new() - { - Id = "xkz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kurtokha", - Comment = null, - }, - new() - { - Id = "xla", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kamula", - Comment = null, - }, - new() - { - Id = "xlb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Loup B", - Comment = null, - }, - new() - { - Id = "xlc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Lycian", - Comment = null, - }, - new() - { - Id = "xld", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Lydian", - Comment = null, - }, - new() - { - Id = "xle", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Lemnian", - Comment = null, - }, - new() - { - Id = "xlg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Ligurian (Ancient)", - Comment = null, - }, - new() - { - Id = "xli", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Liburnian", - Comment = null, - }, - new() - { - Id = "xln", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Alanic", - Comment = null, - }, - new() - { - Id = "xlo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Loup A", - Comment = null, - }, - new() - { - Id = "xlp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Lepontic", - Comment = null, - }, - new() - { - Id = "xls", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Lusitanian", - Comment = null, - }, - new() - { - Id = "xlu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Cuneiform Luwian", - Comment = null, - }, - new() - { - Id = "xly", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Elymian", - Comment = null, - }, - new() - { - Id = "xma", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mushungulu", - Comment = null, - }, - new() - { - Id = "xmb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mbonga", - Comment = null, - }, - new() - { - Id = "xmc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Makhuwa-Marrevone", - Comment = null, - }, - new() - { - Id = "xmd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mbudum", - Comment = null, - }, - new() - { - Id = "xme", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Median", - Comment = null, - }, - new() - { - Id = "xmf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mingrelian", - Comment = null, - }, - new() - { - Id = "xmg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mengaka", - Comment = null, - }, - new() - { - Id = "xmh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kugu-Muminh", - Comment = null, - }, - new() - { - Id = "xmj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Majera", - Comment = null, - }, - new() - { - Id = "xmk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Ancient Macedonian", - Comment = null, - }, - new() - { - Id = "xml", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Malaysian Sign Language", - Comment = null, - }, - new() - { - Id = "xmm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Manado Malay", - Comment = null, - }, - new() - { - Id = "xmn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Manichaean Middle Persian", - Comment = null, - }, - new() - { - Id = "xmo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Morerebi", - Comment = null, - }, - new() - { - Id = "xmp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Kuku-Mu'inh", - Comment = null, - }, - new() - { - Id = "xmq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Kuku-Mangk", - Comment = null, - }, - new() - { - Id = "xmr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Meroitic", - Comment = null, - }, - new() - { - Id = "xms", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Moroccan Sign Language", - Comment = null, - }, - new() - { - Id = "xmt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Matbat", - Comment = null, - }, - new() - { - Id = "xmu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Kamu", - Comment = null, - }, - new() - { - Id = "xmv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Antankarana Malagasy", - Comment = null, - }, - new() - { - Id = "xmw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tsimihety Malagasy", - Comment = null, - }, - new() - { - Id = "xmx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Salawati", - Comment = null, - }, - new() - { - Id = "xmy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mayaguduna", - Comment = null, - }, - new() - { - Id = "xmz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mori Bawah", - Comment = null, - }, - new() - { - Id = "xna", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Ancient North Arabian", - Comment = null, - }, - new() - { - Id = "xnb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kanakanabu", - Comment = null, - }, - new() - { - Id = "xng", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Middle Mongolian", - Comment = null, - }, - new() - { - Id = "xnh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kuanhua", - Comment = null, - }, - new() - { - Id = "xni", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Ngarigu", - Comment = null, - }, - new() - { - Id = "xnj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngoni (Tanzania)", - Comment = null, - }, - new() - { - Id = "xnk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Nganakarti", - Comment = null, - }, - new() - { - Id = "xnm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Ngumbarl", - Comment = null, - }, - new() - { - Id = "xnn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Kankanay", - Comment = null, - }, - new() - { - Id = "xno", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Anglo-Norman", - Comment = null, - }, - new() - { - Id = "xnq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngoni (Mozambique)", - Comment = null, - }, - new() - { - Id = "xnr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kangri", - Comment = null, - }, - new() - { - Id = "xns", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kanashi", - Comment = null, - }, - new() - { - Id = "xnt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Narragansett", - Comment = null, - }, - new() - { - Id = "xnu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Nukunul", - Comment = null, - }, - new() - { - Id = "xny", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nyiyaparli", - Comment = null, - }, - new() - { - Id = "xnz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kenzi", - Comment = null, - }, - new() - { - Id = "xoc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "O'chi'chi'", - Comment = null, - }, - new() - { - Id = "xod", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kokoda", - Comment = null, - }, - new() - { - Id = "xog", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Soga", - Comment = null, - }, - new() - { - Id = "xoi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kominimung", - Comment = null, - }, - new() - { - Id = "xok", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Xokleng", - Comment = null, - }, - new() - { - Id = "xom", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Komo (Sudan)", - Comment = null, - }, - new() - { - Id = "xon", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Konkomba", - Comment = null, - }, - new() - { - Id = "xoo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Xukurú", - Comment = null, - }, - new() - { - Id = "xop", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kopar", - Comment = null, - }, - new() - { - Id = "xor", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Korubo", - Comment = null, - }, - new() - { - Id = "xow", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kowaki", - Comment = null, - }, - new() - { - Id = "xpa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Pirriya", - Comment = null, - }, - new() - { - Id = "xpb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Northeastern Tasmanian", - Comment = null, - }, - new() - { - Id = "xpc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Pecheneg", - Comment = null, - }, - new() - { - Id = "xpd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Oyster Bay Tasmanian", - Comment = null, - }, - new() - { - Id = "xpe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Liberia Kpelle", - Comment = null, - }, - new() - { - Id = "xpf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Southeast Tasmanian", - Comment = null, - }, - new() - { - Id = "xpg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Phrygian", - Comment = null, - }, - new() - { - Id = "xph", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "North Midlands Tasmanian", - Comment = null, - }, - new() - { - Id = "xpi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Pictish", - Comment = null, - }, - new() - { - Id = "xpj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Mpalitjanh", - Comment = null, - }, - new() - { - Id = "xpk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kulina Pano", - Comment = null, - }, - new() - { - Id = "xpl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Port Sorell Tasmanian", - Comment = null, - }, - new() - { - Id = "xpm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Pumpokol", - Comment = null, - }, - new() - { - Id = "xpn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Kapinawá", - Comment = null, - }, - new() - { - Id = "xpo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Pochutec", - Comment = null, - }, - new() - { - Id = "xpp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Puyo-Paekche", - Comment = null, - }, - new() - { - Id = "xpq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Mohegan-Pequot", - Comment = null, - }, - new() - { - Id = "xpr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Parthian", - Comment = null, - }, - new() - { - Id = "xps", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Pisidian", - Comment = null, - }, - new() - { - Id = "xpt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Punthamara", - Comment = null, - }, - new() - { - Id = "xpu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Punic", - Comment = null, - }, - new() - { - Id = "xpv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Northern Tasmanian", - Comment = null, - }, - new() - { - Id = "xpw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Northwestern Tasmanian", - Comment = null, - }, - new() - { - Id = "xpx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Southwestern Tasmanian", - Comment = null, - }, - new() - { - Id = "xpy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Puyo", - Comment = null, - }, - new() - { - Id = "xpz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Bruny Island Tasmanian", - Comment = null, - }, - new() - { - Id = "xqa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Karakhanid", - Comment = null, - }, - new() - { - Id = "xqt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Qatabanian", - Comment = null, - }, - new() - { - Id = "xra", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Krahô", - Comment = null, - }, - new() - { - Id = "xrb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Karaboro", - Comment = null, - }, - new() - { - Id = "xrd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Gundungurra", - Comment = null, - }, - new() - { - Id = "xre", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kreye", - Comment = null, - }, - new() - { - Id = "xrg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Minang", - Comment = null, - }, - new() - { - Id = "xri", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Krikati-Timbira", - Comment = null, - }, - new() - { - Id = "xrm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Armazic", - Comment = null, - }, - new() - { - Id = "xrn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Arin", - Comment = null, - }, - new() - { - Id = "xrr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Raetic", - Comment = null, - }, - new() - { - Id = "xrt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Aranama-Tamique", - Comment = null, - }, - new() - { - Id = "xru", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Marriammu", - Comment = null, - }, - new() - { - Id = "xrw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Karawa", - Comment = null, - }, - new() - { - Id = "xsa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Sabaean", - Comment = null, - }, - new() - { - Id = "xsb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sambal", - Comment = null, - }, - new() - { - Id = "xsc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Scythian", - Comment = null, - }, - new() - { - Id = "xsd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Sidetic", - Comment = null, - }, - new() - { - Id = "xse", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sempan", - Comment = null, - }, - new() - { - Id = "xsh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Shamang", - Comment = null, - }, - new() - { - Id = "xsi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sio", - Comment = null, - }, - new() - { - Id = "xsj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Subi", - Comment = null, - }, - new() - { - Id = "xsl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "South Slavey", - Comment = null, - }, - new() - { - Id = "xsm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kasem", - Comment = null, - }, - new() - { - Id = "xsn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sanga (Nigeria)", - Comment = null, - }, - new() - { - Id = "xso", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Solano", - Comment = null, - }, - new() - { - Id = "xsp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Silopi", - Comment = null, - }, - new() - { - Id = "xsq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Makhuwa-Saka", - Comment = null, - }, - new() - { - Id = "xsr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sherpa", - Comment = null, - }, - new() - { - Id = "xsu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sanumá", - Comment = null, - }, - new() - { - Id = "xsv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Sudovian", - Comment = null, - }, - new() - { - Id = "xsy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Saisiyat", - Comment = null, - }, - new() - { - Id = "xta", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Alcozauca Mixtec", - Comment = null, - }, - new() - { - Id = "xtb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chazumba Mixtec", - Comment = null, - }, - new() - { - Id = "xtc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Katcha-Kadugli-Miri", - Comment = null, - }, - new() - { - Id = "xtd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Diuxi-Tilantongo Mixtec", - Comment = null, - }, - new() - { - Id = "xte", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ketengban", - Comment = null, - }, - new() - { - Id = "xtg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Transalpine Gaulish", - Comment = null, - }, - new() - { - Id = "xth", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Yitha Yitha", - Comment = null, - }, - new() - { - Id = "xti", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sinicahua Mixtec", - Comment = null, - }, - new() - { - Id = "xtj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "San Juan Teita Mixtec", - Comment = null, - }, - new() - { - Id = "xtl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tijaltepec Mixtec", - Comment = null, - }, - new() - { - Id = "xtm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Magdalena Peñasco Mixtec", - Comment = null, - }, - new() - { - Id = "xtn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Tlaxiaco Mixtec", - Comment = null, - }, - new() - { - Id = "xto", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Tokharian A", - Comment = null, - }, - new() - { - Id = "xtp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "San Miguel Piedras Mixtec", - Comment = null, - }, - new() - { - Id = "xtq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Tumshuqese", - Comment = null, - }, - new() - { - Id = "xtr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Early Tripuri", - Comment = null, - }, - new() - { - Id = "xts", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sindihui Mixtec", - Comment = null, - }, - new() - { - Id = "xtt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tacahua Mixtec", - Comment = null, - }, - new() - { - Id = "xtu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cuyamecalco Mixtec", - Comment = null, - }, - new() - { - Id = "xtv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Thawa", - Comment = null, - }, - new() - { - Id = "xtw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tawandê", - Comment = null, - }, - new() - { - Id = "xty", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yoloxochitl Mixtec", - Comment = null, - }, - new() - { - Id = "xua", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Alu Kurumba", - Comment = null, - }, - new() - { - Id = "xub", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Betta Kurumba", - Comment = null, - }, - new() - { - Id = "xud", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Umiida", - Comment = null, - }, - new() - { - Id = "xug", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kunigami", - Comment = null, - }, - new() - { - Id = "xuj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Jennu Kurumba", - Comment = null, - }, - new() - { - Id = "xul", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Ngunawal", - Comment = null, - }, - new() - { - Id = "xum", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Umbrian", - Comment = null, - }, - new() - { - Id = "xun", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Unggaranggu", - Comment = null, - }, - new() - { - Id = "xuo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kuo", - Comment = null, - }, - new() - { - Id = "xup", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Upper Umpqua", - Comment = null, - }, - new() - { - Id = "xur", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Urartian", - Comment = null, - }, - new() - { - Id = "xut", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Kuthant", - Comment = null, - }, - new() - { - Id = "xuu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kxoe", - Comment = null, - }, - new() - { - Id = "xve", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Venetic", - Comment = null, - }, - new() - { - Id = "xvi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kamviri", - Comment = null, - }, - new() - { - Id = "xvn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Vandalic", - Comment = null, - }, - new() - { - Id = "xvo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Volscian", - Comment = null, - }, - new() - { - Id = "xvs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Vestinian", - Comment = null, - }, - new() - { - Id = "xwa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kwaza", - Comment = null, - }, - new() - { - Id = "xwc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Woccon", - Comment = null, - }, - new() - { - Id = "xwd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Wadi Wadi", - Comment = null, - }, - new() - { - Id = "xwe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Xwela Gbe", - Comment = null, - }, - new() - { - Id = "xwg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kwegu", - Comment = null, - }, - new() - { - Id = "xwj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Wajuk", - Comment = null, - }, - new() - { - Id = "xwk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Wangkumara", - Comment = null, - }, - new() - { - Id = "xwl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Xwla Gbe", - Comment = null, - }, - new() - { - Id = "xwo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Written Oirat", - Comment = null, - }, - new() - { - Id = "xwr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kwerba Mamberamo", - Comment = null, - }, - new() - { - Id = "xwt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Wotjobaluk", - Comment = null, - }, - new() - { - Id = "xww", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Wemba Wemba", - Comment = null, - }, - new() - { - Id = "xxb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Boro (Ghana)", - Comment = null, - }, - new() - { - Id = "xxk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ke'o", - Comment = null, - }, - new() - { - Id = "xxm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Minkin", - Comment = null, - }, - new() - { - Id = "xxr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Koropó", - Comment = null, - }, - new() - { - Id = "xxt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Tambora", - Comment = null, - }, - new() - { - Id = "xya", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Yaygir", - Comment = null, - }, - new() - { - Id = "xyb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Yandjibara", - Comment = null, - }, - new() - { - Id = "xyj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Mayi-Yapi", - Comment = null, - }, - new() - { - Id = "xyk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Mayi-Kulan", - Comment = null, - }, - new() - { - Id = "xyl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Yalakalore", - Comment = null, - }, - new() - { - Id = "xyt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Mayi-Thakurti", - Comment = null, - }, - new() - { - Id = "xyy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yorta Yorta", - Comment = null, - }, - new() - { - Id = "xzh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Zhang-Zhung", - Comment = null, - }, - new() - { - Id = "xzm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Zemgalian", - Comment = null, - }, - new() - { - Id = "xzp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Ancient Zapotec", - Comment = null, - }, - new() - { - Id = "yaa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yaminahua", - Comment = null, - }, - new() - { - Id = "yab", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yuhup", - Comment = null, - }, - new() - { - Id = "yac", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pass Valley Yali", - Comment = null, - }, - new() - { - Id = "yad", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yagua", - Comment = null, - }, - new() - { - Id = "yae", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pumé", - Comment = null, - }, - new() - { - Id = "yaf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yaka (Democratic Republic of Congo)", - Comment = null, - }, - new() - { - Id = "yag", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yámana", - Comment = null, - }, - new() - { - Id = "yah", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yazgulyam", - Comment = null, - }, - new() - { - Id = "yai", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yagnobi", - Comment = null, - }, - new() - { - Id = "yaj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Banda-Yangere", - Comment = null, - }, - new() - { - Id = "yak", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yakama", - Comment = null, - }, - new() - { - Id = "yal", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yalunka", - Comment = null, - }, - new() - { - Id = "yam", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yamba", - Comment = null, - }, - new() - { - Id = "yan", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mayangna", - Comment = null, - }, - new() - { - Id = "yao", - Part2B = "yao", - Part2T = "yao", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yao", - Comment = null, - }, - new() - { - Id = "yap", - Part2B = "yap", - Part2T = "yap", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yapese", - Comment = null, - }, - new() - { - Id = "yaq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yaqui", - Comment = null, - }, - new() - { - Id = "yar", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yabarana", - Comment = null, - }, - new() - { - Id = "yas", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nugunu (Cameroon)", - Comment = null, - }, - new() - { - Id = "yat", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yambeta", - Comment = null, - }, - new() - { - Id = "yau", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yuwana", - Comment = null, - }, - new() - { - Id = "yav", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yangben", - Comment = null, - }, - new() - { - Id = "yaw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yawalapití", - Comment = null, - }, - new() - { - Id = "yax", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yauma", - Comment = null, - }, - new() - { - Id = "yay", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Agwagwune", - Comment = null, - }, - new() - { - Id = "yaz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lokaa", - Comment = null, - }, - new() - { - Id = "yba", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yala", - Comment = null, - }, - new() - { - Id = "ybb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yemba", - Comment = null, - }, - new() - { - Id = "ybe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "West Yugur", - Comment = null, - }, - new() - { - Id = "ybh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yakha", - Comment = null, - }, - new() - { - Id = "ybi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yamphu", - Comment = null, - }, - new() - { - Id = "ybj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hasha", - Comment = null, - }, - new() - { - Id = "ybk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bokha", - Comment = null, - }, - new() - { - Id = "ybl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yukuben", - Comment = null, - }, - new() - { - Id = "ybm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yaben", - Comment = null, - }, - new() - { - Id = "ybn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Yabaâna", - Comment = null, - }, - new() - { - Id = "ybo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yabong", - Comment = null, - }, - new() - { - Id = "ybx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yawiyo", - Comment = null, - }, - new() - { - Id = "yby", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yaweyuha", - Comment = null, - }, - new() - { - Id = "ych", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chesu", - Comment = null, - }, - new() - { - Id = "ycl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lolopo", - Comment = null, - }, - new() - { - Id = "ycn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yucuna", - Comment = null, - }, - new() - { - Id = "ycp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chepya", - Comment = null, - }, - new() - { - Id = "ycr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yilan Creole", - Comment = null, - }, - new() - { - Id = "yda", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Yanda", - Comment = null, - }, - new() - { - Id = "ydd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Yiddish", - Comment = null, - }, - new() - { - Id = "yde", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yangum Dey", - Comment = null, - }, - new() - { - Id = "ydg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yidgha", - Comment = null, - }, - new() - { - Id = "ydk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yoidik", - Comment = null, - }, - new() - { - Id = "yea", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ravula", - Comment = null, - }, - new() - { - Id = "yec", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yeniche", - Comment = null, - }, - new() - { - Id = "yee", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yimas", - Comment = null, - }, - new() - { - Id = "yei", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Yeni", - Comment = null, - }, - new() - { - Id = "yej", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yevanic", - Comment = null, - }, - new() - { - Id = "yel", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yela", - Comment = null, - }, - new() - { - Id = "yer", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tarok", - Comment = null, - }, - new() - { - Id = "yes", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nyankpa", - Comment = null, - }, - new() - { - Id = "yet", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yetfa", - Comment = null, - }, - new() - { - Id = "yeu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yerukula", - Comment = null, - }, - new() - { - Id = "yev", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yapunda", - Comment = null, - }, - new() - { - Id = "yey", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yeyi", - Comment = null, - }, - new() - { - Id = "yga", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Malyangapa", - Comment = null, - }, - new() - { - Id = "ygi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Yiningayi", - Comment = null, - }, - new() - { - Id = "ygl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yangum Gel", - Comment = null, - }, - new() - { - Id = "ygm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yagomi", - Comment = null, - }, - new() - { - Id = "ygp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Gepo", - Comment = null, - }, - new() - { - Id = "ygr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yagaria", - Comment = null, - }, - new() - { - Id = "ygs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yolŋu Sign Language", - Comment = null, - }, - new() - { - Id = "ygu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yugul", - Comment = null, - }, - new() - { - Id = "ygw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yagwoia", - Comment = null, - }, - new() - { - Id = "yha", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Baha Buyang", - Comment = null, - }, - new() - { - Id = "yhd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Judeo-Iraqi Arabic", - Comment = null, - }, - new() - { - Id = "yhl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Hlepho Phowa", - Comment = null, - }, - new() - { - Id = "yhs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yan-nhaŋu Sign Language", - Comment = null, - }, - new() - { - Id = "yia", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yinggarda", - Comment = null, - }, - new() - { - Id = "yid", - Part2B = "yid", - Part2T = "yid", - Part1 = "yi", - Scope = "M", - LanguageType = "L", - RefName = "Yiddish", - Comment = null, - }, - new() - { - Id = "yif", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ache", - Comment = null, - }, - new() - { - Id = "yig", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wusa Nasu", - Comment = null, - }, - new() - { - Id = "yih", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Western Yiddish", - Comment = null, - }, - new() - { - Id = "yii", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yidiny", - Comment = null, - }, - new() - { - Id = "yij", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yindjibarndi", - Comment = null, - }, - new() - { - Id = "yik", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dongshanba Lalo", - Comment = null, - }, - new() - { - Id = "yil", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Yindjilandji", - Comment = null, - }, - new() - { - Id = "yim", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yimchungru Naga", - Comment = null, - }, - new() - { - Id = "yin", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Riang Lai", - Comment = null, - }, - new() - { - Id = "yip", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Pholo", - Comment = null, - }, - new() - { - Id = "yiq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Miqie", - Comment = null, - }, - new() - { - Id = "yir", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "North Awyu", - Comment = null, - }, - new() - { - Id = "yis", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yis", - Comment = null, - }, - new() - { - Id = "yit", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Lalu", - Comment = null, - }, - new() - { - Id = "yiu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Awu", - Comment = null, - }, - new() - { - Id = "yiv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Nisu", - Comment = null, - }, - new() - { - Id = "yix", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Axi Yi", - Comment = null, - }, - new() - { - Id = "yiz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Azhe", - Comment = null, - }, - new() - { - Id = "yka", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yakan", - Comment = null, - }, - new() - { - Id = "ykg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Yukaghir", - Comment = null, - }, - new() - { - Id = "ykh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Khamnigan Mongol", - Comment = null, - }, - new() - { - Id = "yki", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yoke", - Comment = null, - }, - new() - { - Id = "ykk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yakaikeke", - Comment = null, - }, - new() - { - Id = "ykl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Khlula", - Comment = null, - }, - new() - { - Id = "ykm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kap", - Comment = null, - }, - new() - { - Id = "ykn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kua-nsi", - Comment = null, - }, - new() - { - Id = "yko", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Iyasa", - Comment = null, - }, - new() - { - Id = "ykr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yekora", - Comment = null, - }, - new() - { - Id = "ykt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kathu", - Comment = null, - }, - new() - { - Id = "yku", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kuamasi", - Comment = null, - }, - new() - { - Id = "yky", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yakoma", - Comment = null, - }, - new() - { - Id = "yla", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yaul", - Comment = null, - }, - new() - { - Id = "ylb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yaleba", - Comment = null, - }, - new() - { - Id = "yle", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yele", - Comment = null, - }, - new() - { - Id = "ylg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yelogu", - Comment = null, - }, - new() - { - Id = "yli", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Angguruk Yali", - Comment = null, - }, - new() - { - Id = "yll", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yil", - Comment = null, - }, - new() - { - Id = "ylm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Limi", - Comment = null, - }, - new() - { - Id = "yln", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Langnian Buyang", - Comment = null, - }, - new() - { - Id = "ylo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Naluo Yi", - Comment = null, - }, - new() - { - Id = "ylr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Yalarnnga", - Comment = null, - }, - new() - { - Id = "ylu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aribwaung", - Comment = null, - }, - new() - { - Id = "yly", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nyâlayu", - Comment = null, - }, - new() - { - Id = "ymb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yambes", - Comment = null, - }, - new() - { - Id = "ymc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Muji", - Comment = null, - }, - new() - { - Id = "ymd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Muda", - Comment = null, - }, - new() - { - Id = "yme", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Yameo", - Comment = null, - }, - new() - { - Id = "ymg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yamongeri", - Comment = null, - }, - new() - { - Id = "ymh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mili", - Comment = null, - }, - new() - { - Id = "ymi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Moji", - Comment = null, - }, - new() - { - Id = "ymk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Makwe", - Comment = null, - }, - new() - { - Id = "yml", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Iamalele", - Comment = null, - }, - new() - { - Id = "ymm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maay", - Comment = null, - }, - new() - { - Id = "ymn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yamna", - Comment = null, - }, - new() - { - Id = "ymo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yangum Mon", - Comment = null, - }, - new() - { - Id = "ymp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yamap", - Comment = null, - }, - new() - { - Id = "ymq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Qila Muji", - Comment = null, - }, - new() - { - Id = "ymr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Malasar", - Comment = null, - }, - new() - { - Id = "yms", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Mysian", - Comment = null, - }, - new() - { - Id = "ymx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Northern Muji", - Comment = null, - }, - new() - { - Id = "ymz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Muzi", - Comment = null, - }, - new() - { - Id = "yna", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aluo", - Comment = null, - }, - new() - { - Id = "ynb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yamben", - Comment = null, - }, - new() - { - Id = "ynd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Yandruwandha", - Comment = null, - }, - new() - { - Id = "yne", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lang'e", - Comment = null, - }, - new() - { - Id = "yng", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yango", - Comment = null, - }, - new() - { - Id = "ynk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Naukan Yupik", - Comment = null, - }, - new() - { - Id = "ynl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yangulam", - Comment = null, - }, - new() - { - Id = "ynn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Yana", - Comment = null, - }, - new() - { - Id = "yno", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yong", - Comment = null, - }, - new() - { - Id = "ynq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yendang", - Comment = null, - }, - new() - { - Id = "yns", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yansi", - Comment = null, - }, - new() - { - Id = "ynu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Yahuna", - Comment = null, - }, - new() - { - Id = "yob", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Yoba", - Comment = null, - }, - new() - { - Id = "yog", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yogad", - Comment = null, - }, - new() - { - Id = "yoi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yonaguni", - Comment = null, - }, - new() - { - Id = "yok", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yokuts", - Comment = null, - }, - new() - { - Id = "yom", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yombe", - Comment = null, - }, - new() - { - Id = "yon", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yongkom", - Comment = null, - }, - new() - { - Id = "yor", - Part2B = "yor", - Part2T = "yor", - Part1 = "yo", - Scope = "I", - LanguageType = "L", - RefName = "Yoruba", - Comment = null, - }, - new() - { - Id = "yot", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yotti", - Comment = null, - }, - new() - { - Id = "yox", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yoron", - Comment = null, - }, - new() - { - Id = "yoy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yoy", - Comment = null, - }, - new() - { - Id = "ypa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Phala", - Comment = null, - }, - new() - { - Id = "ypb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Labo Phowa", - Comment = null, - }, - new() - { - Id = "ypg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Phola", - Comment = null, - }, - new() - { - Id = "yph", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Phupha", - Comment = null, - }, - new() - { - Id = "ypm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Phuma", - Comment = null, - }, - new() - { - Id = "ypn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ani Phowa", - Comment = null, - }, - new() - { - Id = "ypo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Alo Phola", - Comment = null, - }, - new() - { - Id = "ypp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Phupa", - Comment = null, - }, - new() - { - Id = "ypz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Phuza", - Comment = null, - }, - new() - { - Id = "yra", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yerakai", - Comment = null, - }, - new() - { - Id = "yrb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yareba", - Comment = null, - }, - new() - { - Id = "yre", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yaouré", - Comment = null, - }, - new() - { - Id = "yrk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nenets", - Comment = null, - }, - new() - { - Id = "yrl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nhengatu", - Comment = null, - }, - new() - { - Id = "yrm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yirrk-Mel", - Comment = null, - }, - new() - { - Id = "yrn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yerong", - Comment = null, - }, - new() - { - Id = "yro", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yaroamë", - Comment = null, - }, - new() - { - Id = "yrs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yarsun", - Comment = null, - }, - new() - { - Id = "yrw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yarawata", - Comment = null, - }, - new() - { - Id = "yry", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yarluyandi", - Comment = null, - }, - new() - { - Id = "ysc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Yassic", - Comment = null, - }, - new() - { - Id = "ysd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Samatao", - Comment = null, - }, - new() - { - Id = "ysg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sonaga", - Comment = null, - }, - new() - { - Id = "ysl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yugoslavian Sign Language", - Comment = null, - }, - new() - { - Id = "ysm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Myanmar Sign Language", - Comment = null, - }, - new() - { - Id = "ysn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sani", - Comment = null, - }, - new() - { - Id = "yso", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nisi (China)", - Comment = null, - }, - new() - { - Id = "ysp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Lolopo", - Comment = null, - }, - new() - { - Id = "ysr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Sirenik Yupik", - Comment = null, - }, - new() - { - Id = "yss", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yessan-Mayo", - Comment = null, - }, - new() - { - Id = "ysy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sanie", - Comment = null, - }, - new() - { - Id = "yta", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Talu", - Comment = null, - }, - new() - { - Id = "ytl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tanglang", - Comment = null, - }, - new() - { - Id = "ytp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Thopho", - Comment = null, - }, - new() - { - Id = "ytw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yout Wam", - Comment = null, - }, - new() - { - Id = "yty", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Yatay", - Comment = null, - }, - new() - { - Id = "yua", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yucateco", - Comment = null, - }, - new() - { - Id = "yub", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Yugambal", - Comment = null, - }, - new() - { - Id = "yuc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yuchi", - Comment = null, - }, - new() - { - Id = "yud", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Judeo-Tripolitanian Arabic", - Comment = null, - }, - new() - { - Id = "yue", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yue Chinese", - Comment = null, - }, - new() - { - Id = "yuf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Havasupai-Walapai-Yavapai", - Comment = null, - }, - new() - { - Id = "yug", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Yug", - Comment = null, - }, - new() - { - Id = "yui", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yurutí", - Comment = null, - }, - new() - { - Id = "yuj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Karkar-Yuri", - Comment = null, - }, - new() - { - Id = "yuk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Yuki", - Comment = null, - }, - new() - { - Id = "yul", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yulu", - Comment = null, - }, - new() - { - Id = "yum", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Quechan", - Comment = null, - }, - new() - { - Id = "yun", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bena (Nigeria)", - Comment = null, - }, - new() - { - Id = "yup", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yukpa", - Comment = null, - }, - new() - { - Id = "yuq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yuqui", - Comment = null, - }, - new() - { - Id = "yur", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Yurok", - Comment = null, - }, - new() - { - Id = "yut", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yopno", - Comment = null, - }, - new() - { - Id = "yuw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yau (Morobe Province)", - Comment = null, - }, - new() - { - Id = "yux", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Yukaghir", - Comment = null, - }, - new() - { - Id = "yuy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "East Yugur", - Comment = null, - }, - new() - { - Id = "yuz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yuracare", - Comment = null, - }, - new() - { - Id = "yva", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yawa", - Comment = null, - }, - new() - { - Id = "yvt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Yavitero", - Comment = null, - }, - new() - { - Id = "ywa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kalou", - Comment = null, - }, - new() - { - Id = "ywg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yinhawangka", - Comment = null, - }, - new() - { - Id = "ywl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Lalu", - Comment = null, - }, - new() - { - Id = "ywn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yawanawa", - Comment = null, - }, - new() - { - Id = "ywq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wuding-Luquan Yi", - Comment = null, - }, - new() - { - Id = "ywr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yawuru", - Comment = null, - }, - new() - { - Id = "ywt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Xishanba Lalo", - Comment = null, - }, - new() - { - Id = "ywu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Wumeng Nasu", - Comment = null, - }, - new() - { - Id = "yww", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Yawarawarga", - Comment = null, - }, - new() - { - Id = "yxa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Mayawali", - Comment = null, - }, - new() - { - Id = "yxg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Yagara", - Comment = null, - }, - new() - { - Id = "yxl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Yardliyawarra", - Comment = null, - }, - new() - { - Id = "yxm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Yinwum", - Comment = null, - }, - new() - { - Id = "yxu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Yuyu", - Comment = null, - }, - new() - { - Id = "yxy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Yabula Yabula", - Comment = null, - }, - new() - { - Id = "yyr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Yir Yoront", - Comment = null, - }, - new() - { - Id = "yyu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yau (Sandaun Province)", - Comment = null, - }, - new() - { - Id = "yyz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ayizi", - Comment = null, - }, - new() - { - Id = "yzg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "E'ma Buyang", - Comment = null, - }, - new() - { - Id = "yzk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zokhuo", - Comment = null, - }, - new() - { - Id = "zaa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sierra de Juárez Zapotec", - Comment = null, - }, - new() - { - Id = "zab", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Western Tlacolula Valley Zapotec", - Comment = null, - }, - new() - { - Id = "zac", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ocotlán Zapotec", - Comment = null, - }, - new() - { - Id = "zad", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Cajonos Zapotec", - Comment = null, - }, - new() - { - Id = "zae", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yareni Zapotec", - Comment = null, - }, - new() - { - Id = "zaf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ayoquesco Zapotec", - Comment = null, - }, - new() - { - Id = "zag", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zaghawa", - Comment = null, - }, - new() - { - Id = "zah", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zangwal", - Comment = null, - }, - new() - { - Id = "zai", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Isthmus Zapotec", - Comment = null, - }, - new() - { - Id = "zaj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zaramo", - Comment = null, - }, - new() - { - Id = "zak", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zanaki", - Comment = null, - }, - new() - { - Id = "zal", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zauzou", - Comment = null, - }, - new() - { - Id = "zam", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Miahuatlán Zapotec", - Comment = null, - }, - new() - { - Id = "zao", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ozolotepec Zapotec", - Comment = null, - }, - new() - { - Id = "zap", - Part2B = "zap", - Part2T = "zap", - Part1 = null, - Scope = "M", - LanguageType = "L", - RefName = "Zapotec", - Comment = null, - }, - new() - { - Id = "zaq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Aloápam Zapotec", - Comment = null, - }, - new() - { - Id = "zar", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rincón Zapotec", - Comment = null, - }, - new() - { - Id = "zas", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Santo Domingo Albarradas Zapotec", - Comment = null, - }, - new() - { - Id = "zat", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tabaa Zapotec", - Comment = null, - }, - new() - { - Id = "zau", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zangskari", - Comment = null, - }, - new() - { - Id = "zav", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yatzachi Zapotec", - Comment = null, - }, - new() - { - Id = "zaw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mitla Zapotec", - Comment = null, - }, - new() - { - Id = "zax", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Xadani Zapotec", - Comment = null, - }, - new() - { - Id = "zay", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zayse-Zergulla", - Comment = null, - }, - new() - { - Id = "zaz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zari", - Comment = null, - }, - new() - { - Id = "zba", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "C", - RefName = "Balaibalan", - Comment = null, - }, - new() - { - Id = "zbc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Central Berawan", - Comment = null, - }, - new() - { - Id = "zbe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "East Berawan", - Comment = null, - }, - new() - { - Id = "zbl", - Part2B = "zbl", - Part2T = "zbl", - Part1 = null, - Scope = "I", - LanguageType = "C", - RefName = "Blissymbols", - Comment = null, - }, - new() - { - Id = "zbt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Batui", - Comment = null, - }, - new() - { - Id = "zbu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bu (Bauchi State)", - Comment = null, - }, - new() - { - Id = "zbw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "West Berawan", - Comment = null, - }, - new() - { - Id = "zca", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Coatecas Altas Zapotec", - Comment = null, - }, - new() - { - Id = "zcd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Las Delicias Zapotec", - Comment = null, - }, - new() - { - Id = "zch", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Central Hongshuihe Zhuang", - Comment = null, - }, - new() - { - Id = "zdj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Ngazidja Comorian", - Comment = null, - }, - new() - { - Id = "zea", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zeeuws", - Comment = null, - }, - new() - { - Id = "zeg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zenag", - Comment = null, - }, - new() - { - Id = "zeh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Eastern Hongshuihe Zhuang", - Comment = null, - }, - new() - { - Id = "zem", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zeem", - Comment = null, - }, - new() - { - Id = "zen", - Part2B = "zen", - Part2T = "zen", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zenaga", - Comment = null, - }, - new() - { - Id = "zga", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kinga", - Comment = null, - }, - new() - { - Id = "zgb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Guibei Zhuang", - Comment = null, - }, - new() - { - Id = "zgh", - Part2B = "zgh", - Part2T = "zgh", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Standard Moroccan Tamazight", - Comment = null, - }, - new() - { - Id = "zgm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Minz Zhuang", - Comment = null, - }, - new() - { - Id = "zgn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Guibian Zhuang", - Comment = null, - }, - new() - { - Id = "zgr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Magori", - Comment = null, - }, - new() - { - Id = "zha", - Part2B = "zha", - Part2T = "zha", - Part1 = "za", - Scope = "M", - LanguageType = "L", - RefName = "Zhuang", - Comment = null, - }, - new() - { - Id = "zhb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zhaba", - Comment = null, - }, - new() - { - Id = "zhd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Dai Zhuang", - Comment = null, - }, - new() - { - Id = "zhi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zhire", - Comment = null, - }, - new() - { - Id = "zhk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kurdish Sign Language", - Comment = null, - }, - new() - { - Id = "zhn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Nong Zhuang", - Comment = null, - }, - new() - { - Id = "zho", - Part2B = "chi", - Part2T = "zho", - Part1 = "zh", - Scope = "M", - LanguageType = "L", - RefName = "Chinese", - Comment = null, - }, - new() - { - Id = "zhw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zhoa", - Comment = null, - }, - new() - { - Id = "zia", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zia", - Comment = null, - }, - new() - { - Id = "zib", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zimbabwe Sign Language", - Comment = null, - }, - new() - { - Id = "zik", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zimakani", - Comment = null, - }, - new() - { - Id = "zil", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zialo", - Comment = null, - }, - new() - { - Id = "zim", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mesme", - Comment = null, - }, - new() - { - Id = "zin", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zinza", - Comment = null, - }, - new() - { - Id = "ziw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zigula", - Comment = null, - }, - new() - { - Id = "ziz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zizilivakan", - Comment = null, - }, - new() - { - Id = "zka", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kaimbulawa", - Comment = null, - }, - new() - { - Id = "zkd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kadu", - Comment = null, - }, - new() - { - Id = "zkg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Koguryo", - Comment = null, - }, - new() - { - Id = "zkh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Khorezmian", - Comment = null, - }, - new() - { - Id = "zkk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Karankawa", - Comment = null, - }, - new() - { - Id = "zkn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kanan", - Comment = null, - }, - new() - { - Id = "zko", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Kott", - Comment = null, - }, - new() - { - Id = "zkp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "São Paulo Kaingáng", - Comment = null, - }, - new() - { - Id = "zkr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zakhring", - Comment = null, - }, - new() - { - Id = "zkt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Kitan", - Comment = null, - }, - new() - { - Id = "zku", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kaurna", - Comment = null, - }, - new() - { - Id = "zkv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Krevinian", - Comment = null, - }, - new() - { - Id = "zkz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Khazar", - Comment = null, - }, - new() - { - Id = "zla", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zula", - Comment = null, - }, - new() - { - Id = "zlj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Liujiang Zhuang", - Comment = null, - }, - new() - { - Id = "zlm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Malay (individual language)", - Comment = null, - }, - new() - { - Id = "zln", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lianshan Zhuang", - Comment = null, - }, - new() - { - Id = "zlq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Liuqian Zhuang", - Comment = null, - }, - new() - { - Id = "zlu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zul", - Comment = null, - }, - new() - { - Id = "zma", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Manda (Australia)", - Comment = null, - }, - new() - { - Id = "zmb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zimba", - Comment = null, - }, - new() - { - Id = "zmc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Margany", - Comment = null, - }, - new() - { - Id = "zmd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maridan", - Comment = null, - }, - new() - { - Id = "zme", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Mangerr", - Comment = null, - }, - new() - { - Id = "zmf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mfinu", - Comment = null, - }, - new() - { - Id = "zmg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Marti Ke", - Comment = null, - }, - new() - { - Id = "zmh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Makolkol", - Comment = null, - }, - new() - { - Id = "zmi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Negeri Sembilan Malay", - Comment = null, - }, - new() - { - Id = "zmj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maridjabin", - Comment = null, - }, - new() - { - Id = "zmk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Mandandanyi", - Comment = null, - }, - new() - { - Id = "zml", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Matngala", - Comment = null, - }, - new() - { - Id = "zmm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Marimanindji", - Comment = null, - }, - new() - { - Id = "zmn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mbangwe", - Comment = null, - }, - new() - { - Id = "zmo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Molo", - Comment = null, - }, - new() - { - Id = "zmp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mbuun", - Comment = null, - }, - new() - { - Id = "zmq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mituku", - Comment = null, - }, - new() - { - Id = "zmr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maranunggu", - Comment = null, - }, - new() - { - Id = "zms", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mbesa", - Comment = null, - }, - new() - { - Id = "zmt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Maringarr", - Comment = null, - }, - new() - { - Id = "zmu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Muruwari", - Comment = null, - }, - new() - { - Id = "zmv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Mbariman-Gudhinma", - Comment = null, - }, - new() - { - Id = "zmw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mbo (Democratic Republic of Congo)", - Comment = null, - }, - new() - { - Id = "zmx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Bomitaba", - Comment = null, - }, - new() - { - Id = "zmy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mariyedi", - Comment = null, - }, - new() - { - Id = "zmz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mbandja", - Comment = null, - }, - new() - { - Id = "zna", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zan Gula", - Comment = null, - }, - new() - { - Id = "zne", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zande (individual language)", - Comment = null, - }, - new() - { - Id = "zng", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mang", - Comment = null, - }, - new() - { - Id = "znk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Manangkari", - Comment = null, - }, - new() - { - Id = "zns", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mangas", - Comment = null, - }, - new() - { - Id = "zoc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Copainalá Zoque", - Comment = null, - }, - new() - { - Id = "zoh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chimalapa Zoque", - Comment = null, - }, - new() - { - Id = "zom", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zou", - Comment = null, - }, - new() - { - Id = "zoo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Asunción Mixtepec Zapotec", - Comment = null, - }, - new() - { - Id = "zoq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tabasco Zoque", - Comment = null, - }, - new() - { - Id = "zor", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Rayón Zoque", - Comment = null, - }, - new() - { - Id = "zos", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Francisco León Zoque", - Comment = null, - }, - new() - { - Id = "zpa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lachiguiri Zapotec", - Comment = null, - }, - new() - { - Id = "zpb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yautepec Zapotec", - Comment = null, - }, - new() - { - Id = "zpc", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Choapan Zapotec", - Comment = null, - }, - new() - { - Id = "zpd", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southeastern Ixtlán Zapotec", - Comment = null, - }, - new() - { - Id = "zpe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Petapa Zapotec", - Comment = null, - }, - new() - { - Id = "zpf", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "San Pedro Quiatoni Zapotec", - Comment = null, - }, - new() - { - Id = "zpg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Guevea De Humboldt Zapotec", - Comment = null, - }, - new() - { - Id = "zph", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Totomachapan Zapotec", - Comment = null, - }, - new() - { - Id = "zpi", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Santa María Quiegolani Zapotec", - Comment = null, - }, - new() - { - Id = "zpj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Quiavicuzas Zapotec", - Comment = null, - }, - new() - { - Id = "zpk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tlacolulita Zapotec", - Comment = null, - }, - new() - { - Id = "zpl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lachixío Zapotec", - Comment = null, - }, - new() - { - Id = "zpm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mixtepec Zapotec", - Comment = null, - }, - new() - { - Id = "zpn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Santa Inés Yatzechi Zapotec", - Comment = null, - }, - new() - { - Id = "zpo", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Amatlán Zapotec", - Comment = null, - }, - new() - { - Id = "zpp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "El Alto Zapotec", - Comment = null, - }, - new() - { - Id = "zpq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zoogocho Zapotec", - Comment = null, - }, - new() - { - Id = "zpr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Santiago Xanica Zapotec", - Comment = null, - }, - new() - { - Id = "zps", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Coatlán Zapotec", - Comment = null, - }, - new() - { - Id = "zpt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "San Vicente Coatlán Zapotec", - Comment = null, - }, - new() - { - Id = "zpu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yalálag Zapotec", - Comment = null, - }, - new() - { - Id = "zpv", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Chichicapan Zapotec", - Comment = null, - }, - new() - { - Id = "zpw", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zaniza Zapotec", - Comment = null, - }, - new() - { - Id = "zpx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "San Baltazar Loxicha Zapotec", - Comment = null, - }, - new() - { - Id = "zpy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mazaltepec Zapotec", - Comment = null, - }, - new() - { - Id = "zpz", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Texmelucan Zapotec", - Comment = null, - }, - new() - { - Id = "zqe", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Qiubei Zhuang", - Comment = null, - }, - new() - { - Id = "zra", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Kara (Korea)", - Comment = null, - }, - new() - { - Id = "zrg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mirgan", - Comment = null, - }, - new() - { - Id = "zrn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zerenkel", - Comment = null, - }, - new() - { - Id = "zro", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Záparo", - Comment = null, - }, - new() - { - Id = "zrp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "E", - RefName = "Zarphatic", - Comment = null, - }, - new() - { - Id = "zrs", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Mairasi", - Comment = null, - }, - new() - { - Id = "zsa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sarasira", - Comment = null, - }, - new() - { - Id = "zsk", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "H", - RefName = "Kaskean", - Comment = null, - }, - new() - { - Id = "zsl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zambian Sign Language", - Comment = null, - }, - new() - { - Id = "zsm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Standard Malay", - Comment = null, - }, - new() - { - Id = "zsr", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Southern Rincon Zapotec", - Comment = null, - }, - new() - { - Id = "zsu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Sukurum", - Comment = null, - }, - new() - { - Id = "zte", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Elotepec Zapotec", - Comment = null, - }, - new() - { - Id = "ztg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Xanaguía Zapotec", - Comment = null, - }, - new() - { - Id = "ztl", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Lapaguía-Guivini Zapotec", - Comment = null, - }, - new() - { - Id = "ztm", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "San Agustín Mixtepec Zapotec", - Comment = null, - }, - new() - { - Id = "ztn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Santa Catarina Albarradas Zapotec", - Comment = null, - }, - new() - { - Id = "ztp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Loxicha Zapotec", - Comment = null, - }, - new() - { - Id = "ztq", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Quioquitani-Quierí Zapotec", - Comment = null, - }, - new() - { - Id = "zts", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tilquiapan Zapotec", - Comment = null, - }, - new() - { - Id = "ztt", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tejalapan Zapotec", - Comment = null, - }, - new() - { - Id = "ztu", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Güilá Zapotec", - Comment = null, - }, - new() - { - Id = "ztx", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zaachila Zapotec", - Comment = null, - }, - new() - { - Id = "zty", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yatee Zapotec", - Comment = null, - }, - new() - { - Id = "zuh", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Tokano", - Comment = null, - }, - new() - { - Id = "zul", - Part2B = "zul", - Part2T = "zul", - Part1 = "zu", - Scope = "I", - LanguageType = "L", - RefName = "Zulu", - Comment = null, - }, - new() - { - Id = "zum", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Kumzari", - Comment = null, - }, - new() - { - Id = "zun", - Part2B = "zun", - Part2T = "zun", - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zuni", - Comment = null, - }, - new() - { - Id = "zuy", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zumaya", - Comment = null, - }, - new() - { - Id = "zwa", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zay", - Comment = null, - }, - new() - { - Id = "zxx", - Part2B = "zxx", - Part2T = "zxx", - Part1 = null, - Scope = "S", - LanguageType = "S", - RefName = "No linguistic content", - Comment = null, - }, - new() - { - Id = "zyb", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yongbei Zhuang", - Comment = null, - }, - new() - { - Id = "zyg", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yang Zhuang", - Comment = null, - }, - new() - { - Id = "zyj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Youjiang Zhuang", - Comment = null, - }, - new() - { - Id = "zyn", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Yongnan Zhuang", - Comment = null, - }, - new() - { - Id = "zyp", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zyphe Chin", - Comment = null, - }, - new() - { - Id = "zza", - Part2B = "zza", - Part2T = "zza", - Part1 = null, - Scope = "M", - LanguageType = "L", - RefName = "Zaza", - Comment = null, - }, - new() - { - Id = "zzj", - Part2B = null, - Part2T = null, - Part1 = null, - Scope = "I", - LanguageType = "L", - RefName = "Zuojiang Zhuang", - Comment = null, - }, - ], - }; -} diff --git a/LanguageTags/LanguageLookup.cs b/LanguageTags/LanguageLookup.cs deleted file mode 100644 index 3e66700..0000000 --- a/LanguageTags/LanguageLookup.cs +++ /dev/null @@ -1,379 +0,0 @@ -namespace ptr727.LanguageTags; - -/// -/// Provides language code lookup and conversion functionality between IETF and ISO standards. -/// -public sealed class LanguageLookup -{ - /// - /// The language code for undetermined languages ("und"). - /// - public const string Undetermined = "und"; - - private readonly Lazy _logger = new(LogOptions.CreateLogger); - internal ILogger Log => _logger.Value; - private readonly Iso6392Data _iso6392 = Iso6392Data.Create(); - private readonly Iso6393Data _iso6393 = Iso6393Data.Create(); - private readonly Rfc5646Data _rfc5646 = Rfc5646Data.Create(); - private readonly UnM49Data _unM49 = UnM49Data.Create(); - private readonly List<(string ietf, string iso)> _overrides = []; - - private static CultureInfo? CreateCultureInfo(string languageTag) - { - // Cultures are created on the fly in .NET, we can't rely on an exception - // RFC 5646 defines Zzzz as "Code for uncoded script" - // .NET uses "zzz" for a similar purpose - // https://stackoverflow.com/questions/35074033/invalid-cultureinfo-no-longer-throws-culturenotfoundexception/ - const string missing = "zzz"; - - try - { - // Get a CultureInfo representation - CultureInfo cultureInfo = CultureInfo.GetCultureInfo(languageTag, true); - - // Make sure the culture was not custom created - return - cultureInfo.ThreeLetterWindowsLanguageName.Equals( - missing, - StringComparison.OrdinalIgnoreCase - ) - || (cultureInfo.CultureTypes & CultureTypes.UserCustomCulture) - == CultureTypes.UserCustomCulture - ? null - : cultureInfo; - } - catch (CultureNotFoundException) { } - return null; - } - - /// - /// Gets the list of manual override mappings between IETF and ISO language codes. - /// - public IList<(string ietf, string iso)> Overrides => _overrides; - - /// - /// Converts an ISO language code to its IETF BCP 47 equivalent. - /// - /// The ISO language code to convert. - /// The IETF BCP 47 language tag, or "und" if the conversion fails. - public string GetIetfFromIso(string languageTag) - { - // Undetermined - if (string.IsNullOrEmpty(languageTag)) - { - return Undetermined; - } - - // Manual overrides - (string ietf, string iso) match = _overrides.FirstOrDefault(item => - item.iso.Equals(languageTag, StringComparison.OrdinalIgnoreCase) - ); - if (match != default) - { - return match.ietf; - } - - // Find a matching subtag record - Rfc5646Record? subtag = _rfc5646.Find(languageTag, false); - if (subtag != null) - { - return subtag.TagValue; - } - - // Find a matching ISO 639-3 record - Iso6393Record? iso6393 = _iso6393.Find(languageTag, false); - if (iso6393 != null) - { - // Find a matching subtag record from the ISO 639-3 or ISO 639-1 tag - if (!string.IsNullOrEmpty(iso6393.Id)) - { - subtag = _rfc5646.Find(iso6393.Id, false); - } - if (subtag == null && !string.IsNullOrEmpty(iso6393.Part1)) - { - subtag = _rfc5646.Find(iso6393.Part1, false); - } - if (subtag != null) - { - return subtag.TagValue; - } - } - - // Find a matching ISO 639-2 record - Iso6392Record? iso6392 = _iso6392.Find(languageTag, false); - if (iso6392 != null) - { - // Find a matching RFC 5646 record from the ISO 639-2 or ISO 639-1 tag - if (!string.IsNullOrEmpty(iso6392.Part2B)) - { - subtag = _rfc5646.Find(iso6392.Part2B, false); - } - if (subtag == null && !string.IsNullOrEmpty(iso6392.Part1)) - { - subtag = _rfc5646.Find(iso6392.Part1, false); - } - if (subtag != null) - { - return subtag.TagValue; - } - } - - // Try CultureInfo - CultureInfo? cultureInfo = CreateCultureInfo(languageTag); - if (cultureInfo != null) - { - return cultureInfo.IetfLanguageTag; - } - - Log.LogUndeterminedFallback(languageTag, nameof(GetIetfFromIso)); - return Undetermined; - } - - /// - /// Converts an IETF BCP 47 language tag to its ISO equivalent. - /// - /// The IETF BCP 47 language tag to convert. - /// The ISO 639-2/B language code, or "und" if the conversion fails. - public string GetIsoFromIetf(string languageTag) - { - // Undetermined - if (string.IsNullOrEmpty(languageTag)) - { - return Undetermined; - } - - // Manual overrides - (string ietf, string iso) match = _overrides.FirstOrDefault(item => - item.ietf.Equals(languageTag, StringComparison.OrdinalIgnoreCase) - ); - if (match != default) - { - return match.iso; - } - - // TODO: Conditional parse and normalize before processing - - // Find a matching subtag record - Rfc5646Record? subtag = _rfc5646.Find(languageTag, false); - if (subtag != null) - { - // Use expanded form if Redundant, or just use TagAny - // E.g. cmn-Hant -> zh-cmn-Hant - languageTag = subtag.TagValue; - } - - // TODO: Convert to use Parse() - - // Split language tags and resolve in parts - // language-extlang-script-region-variant-extension-privateuse - // E.g. zh-cmn-Hant-x-foo -> zh-cmn-Hant -> zh-cmn -> zh - string[] parts = languageTag.Split('-'); - languageTag = parts[0]; - - // Get ISO 639-3 record - Iso6393Record? iso6393 = _iso6393.Find(languageTag, false); - if (iso6393 != null) - { - // Return the Part 2B code - return iso6393.Part2B!; - } - - // Get ISO 639-2 record - Iso6392Record? iso6392 = _iso6392.Find(languageTag, false); - if (iso6392 != null) - { - // Return the Part 2B code - return iso6392.Part2B!; - } - - // Try cultureInfo - CultureInfo? cultureInfo = CreateCultureInfo(languageTag); - if (cultureInfo == null) - { - Log.LogUndeterminedFallback(languageTag, nameof(GetIsoFromIetf)); - return Undetermined; - } - - // Get ISO 639-3 record from cultureInfo ISO code - iso6393 = _iso6393.Find(cultureInfo.ThreeLetterISOLanguageName, false); - if (iso6393 != null) - { - // Return the Part 2B code - return iso6393.Part2B!; - } - - Log.LogUndeterminedFallback(languageTag, nameof(GetIsoFromIetf)); - return Undetermined; - } - - /// - /// Determines whether a language tag matches or starts with the specified prefix. - /// - /// The prefix to match against. - /// The language tag to test. - /// true if the language tag matches or starts with the prefix; otherwise, false. - /// Thrown when or is null. - public bool IsMatch(string prefix, string languageTag) => IsMatch(prefix, languageTag, false); - - /// - /// Determines whether a language tag matches or starts with the specified prefix, optionally - /// treating a UN M.49 region group in the prefix as matching any contained region. - /// - /// - /// When is true and plain prefix matching fails, a prefix - /// with a UN M.49 region group (e.g. "es-419") matches a tag whose region is contained within - /// that group (e.g. "es-MX"). Matching is directional, the broad group in the prefix matches the - /// specific region in the tag, not the reverse. Note that "001" (World) contains every region, so - /// a prefix such as "es-001" matches any "es" tag with a region. - /// - /// The prefix to match against. - /// The language tag to test. - /// true to also match UN M.49 region containment; otherwise, false. - /// true if the language tag matches the prefix; otherwise, false. - /// Thrown when or is null. - public bool IsMatch(string prefix, string languageTag, bool regionContainment) - { - ArgumentNullException.ThrowIfNull(prefix); - ArgumentNullException.ThrowIfNull(languageTag); - - string originalPrefix = prefix; - string originalTag = languageTag; - - // TODO: Conditional parse and normalize before processing - - // https://r12a.github.io/app-subtags/ - // zh match: zh: zh, zh-Hant, zh-Hans, zh-cmn-Hant - // zho not: zh - // zho match: zho - // zh-Hant match: zh-Hant, zh-Hant-foo - while (true) - { - // The tag matches the prefix exactly - if (languageTag.Equals(prefix, StringComparison.OrdinalIgnoreCase)) - { - // Exact match - return true; - } - - // The tag starts with the prefix, and the next character is a - - if ( - languageTag.StartsWith(prefix, StringComparison.OrdinalIgnoreCase) - && languageTag[prefix.Length..].StartsWith('-') - ) - { - // Prefix match - return true; - } - - // Get the extended format of the language - // E.g. cmn-Hant should be expanded to zh-cmn-Hant else zh will not match - - // Find a matching subtag record - Rfc5646Record? subtag = _rfc5646.Find(languageTag, false); - if (subtag != null) - { - // If the subtag is different then rematch - if ( - !string.Equals(languageTag, subtag.TagValue, StringComparison.OrdinalIgnoreCase) - ) - { - // Rematch - languageTag = subtag.TagValue; - continue; - } - } - - // Fall back to UN M.49 region containment, e.g. es-419 matches es-MX - if (regionContainment && IsRegionContainmentMatch(originalPrefix, originalTag)) - { - return true; - } - - // No match - Log.LogPrefixMatchFailed(originalPrefix, originalTag); - return false; - } - } - - private bool IsRegionContainmentMatch(string prefix, string languageTag) - { - // The candidate must parse and have a region to expand - LanguageTag? candidateTag = LanguageTag.Parse(languageTag); - if (candidateTag == null || string.IsNullOrEmpty(candidateTag.Region)) - { - return false; - } - - // Substitute the candidate region with each containing UN M.49 group and retry a plain match - // E.g. es-MX -> es-419, then prefix es-419 matches via the existing prefix rules - // Reusing the plain match keeps the variant, extension, and private use semantics intact - foreach (string ancestor in _unM49.GetAncestors(candidateTag.Region)) - { - LanguageTag candidateGroup = new(candidateTag) { Region = ancestor }; - if (IsMatch(prefix, candidateGroup.ToString(), false)) - { - return true; - } - } - - // No containing group matched - return false; - } - - /// - /// Expands the region of a language tag into the tag plus a region substituted tag for each containing UN M.49 group. - /// - /// - /// For example "es-MX" expands to "es-MX", "es-013", "es-419", "es-019", and "es-001". A tag with - /// no region, or one that cannot be parsed, yields only the original tag. The expanded tags can be - /// matched with plain string comparison without enabling region containment in . - /// - /// The language tag to expand. - /// The original tag followed by a tag with the region replaced by each containing group. - /// Thrown when is null. - public IEnumerable ExpandRegion(string languageTag) - { - ArgumentNullException.ThrowIfNull(languageTag); - - // Always include the original tag - List expanded = [languageTag]; - - // Parse and expand the region into its containing UN M.49 groups - LanguageTag? parsed = LanguageTag.Parse(languageTag); - if (parsed == null || string.IsNullOrEmpty(parsed.Region)) - { - return expanded; - } - - // Substitute each ancestor region, e.g. es-MX -> es-013, es-419, es-019, es-001 - foreach (string ancestor in _unM49.GetAncestors(parsed.Region)) - { - LanguageTag variant = new(parsed) { Region = ancestor }; - expanded.Add(variant.ToString()); - } - return expanded; - } - - /// - /// Determines if two language tags are equivalent (case-insensitive). - /// - /// The first language tag. - /// The second language tag. - /// true when the tags are equal ignoring case; otherwise, false. - public static bool AreEquivalent(string tag1, string tag2) => - string.Equals(tag1, tag2, StringComparison.OrdinalIgnoreCase); - - /// - /// Normalizes and compares two language tags for equivalence. - /// - /// The first language tag. - /// The second language tag. - /// true when both tags can be parsed and normalize to the same value; otherwise, false. - public static bool AreEquivalentNormalized(string tag1, string tag2) - { - LanguageTag? parsed1 = LanguageTag.Parse(tag1)?.Normalize(); - LanguageTag? parsed2 = LanguageTag.Parse(tag2)?.Normalize(); - return parsed1?.ToString().Equals(parsed2?.ToString(), StringComparison.OrdinalIgnoreCase) - ?? false; - } -} diff --git a/LanguageTags/LanguageSchema.cs b/LanguageTags/LanguageSchema.cs deleted file mode 100644 index b507611..0000000 --- a/LanguageTags/LanguageSchema.cs +++ /dev/null @@ -1,39 +0,0 @@ -using System.Text.Json.Serialization; - -namespace ptr727.LanguageTags; - -internal static class LanguageSchema -{ - internal static string GetCodeGenString(string? text) => - string.IsNullOrEmpty(text) ? "null" : $"\"{text}\""; - - internal static string GetCodeGenString(DateOnly? date) => - date == null - ? "null" - : $"new DateOnly({date.Value.Year}, {date.Value.Month}, {date.Value.Day})"; - - internal static string GetCodeGenString(Rfc5646Record.RecordType type) => - $"Rfc5646Record.RecordType.{type}"; - - internal static string GetCodeGenString(Rfc5646Record.RecordScope scope) => - $"Rfc5646Record.RecordScope.{scope}"; - - internal static string GetCodeGenString(IEnumerable list) => - $"[{string.Join(", ", list.Select(item => $"@\"{item.Replace("\"", "\"\"", StringComparison.Ordinal)}\""))}]"; -} - -[JsonSourceGenerationOptions( - AllowTrailingCommas = true, - DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull, - IncludeFields = true, - NumberHandling = JsonNumberHandling.AllowReadingFromString, - PreferredObjectCreationHandling = JsonObjectCreationHandling.Populate, - ReadCommentHandling = JsonCommentHandling.Skip, - WriteIndented = true, - NewLine = "\r\n" -)] -[JsonSerializable(typeof(Iso6392Data))] -[JsonSerializable(typeof(Iso6393Data))] -[JsonSerializable(typeof(Rfc5646Data))] -[JsonSerializable(typeof(UnM49Data))] -internal partial class LanguageJsonContext : JsonSerializerContext; diff --git a/LanguageTags/LanguageTag.cs b/LanguageTags/LanguageTag.cs deleted file mode 100644 index 6b5fffa..0000000 --- a/LanguageTags/LanguageTag.cs +++ /dev/null @@ -1,393 +0,0 @@ -using System.Diagnostics.CodeAnalysis; - -namespace ptr727.LanguageTags; - -/// -/// Represents a language tag conforming to RFC 5646 / BCP 47. -/// -public sealed class LanguageTag : IEquatable -{ - internal LanguageTag() - { - Language = string.Empty; - ExtendedLanguage = string.Empty; - Script = string.Empty; - Region = string.Empty; - _variants = []; - _extensions = []; - PrivateUse = new PrivateUseTag(); - } - - internal LanguageTag(LanguageTag languageTag) - { - ArgumentNullException.ThrowIfNull(languageTag); - Language = languageTag.Language; - ExtendedLanguage = languageTag.ExtendedLanguage; - Script = languageTag.Script; - Region = languageTag.Region; - _variants = [.. languageTag._variants]; - _extensions = [.. languageTag._extensions]; - PrivateUse = languageTag.PrivateUse; - } - - /// - /// Gets or sets the primary language subtag (ISO 639 language code). - /// - public string Language { get; internal set; } - - /// - /// Gets or sets the extended language subtag. - /// - public string ExtendedLanguage { get; internal set; } - - /// - /// Gets or sets the script subtag (ISO 15924 script code). - /// - public string Script { get; internal set; } - - /// - /// Gets or sets the region subtag (ISO 3166-1 country code or UN M.49 region code). - /// - public string Region { get; internal set; } - - /// - /// Gets the list of variant subtags. - /// - public ImmutableArray Variants => [.. _variants]; - internal List _variants { get; init; } - - /// - /// Gets the list of extension subtags. - /// - public ImmutableArray Extensions => [.. _extensions]; - internal List _extensions { get; init; } - - /// - /// Gets the private use subtag. - /// - public PrivateUseTag PrivateUse { get; internal set; } - - /// - /// Parses a language tag string into a instance. - /// - /// The language tag string to parse (e.g., "en-US", "zh-Hans-CN"). - /// The parsed language tag, or null if parsing fails. - public static LanguageTag? Parse(string tag) => new LanguageTagParser().Parse(tag); - - /// - /// Parses a language tag string, returning a default tag if parsing fails. - /// - /// The language tag string to parse. - /// The default tag to return if parsing fails (defaults to "und"). - /// The parsed tag, the supplied default tag, or "und" if parsing fails and no default is provided. - public static LanguageTag ParseOrDefault(string tag, LanguageTag? defaultTag = null) - { - LanguageTag? parsed = Parse(tag); - return parsed ?? defaultTag ?? Parse(LanguageLookup.Undetermined)!; - } - - /// - /// Parses and normalizes a language tag string. - /// - /// The language tag string. - /// A normalized language tag, or null if parsing fails. - public static LanguageTag? ParseAndNormalize(string tag) - { - LanguageTag? parsed = Parse(tag); - return parsed == null ? null : new LanguageTagParser().Normalize(parsed); - } - - /// - /// Tries to parse a language tag string into a instance. - /// - /// The language tag string to parse (e.g., "en-US", "zh-Hans-CN"). - /// When this method returns, contains the parsed language tag if successful, or null if parsing fails. - /// true if the tag was successfully parsed; otherwise, false. - public static bool TryParse(string tag, [NotNullWhen(true)] out LanguageTag? result) - { - result = Parse(tag); - return result != null; - } - - /// - /// Creates a new LanguageTagBuilder for fluent construction of language tags. - /// - /// A new LanguageTagBuilder instance. - public static LanguageTagBuilder CreateBuilder() => new(); - - /// - /// Validates this language tag for RFC 5646 structural correctness. - /// - /// - /// This method validates structure and duplication rules only; it does not validate subtags against the registry. - /// - /// true if the tag is structurally valid; otherwise, false. - public bool Validate() => LanguageTagParser.Validate(this); - - /// - /// Gets whether this language tag is structurally valid according to RFC 5646 rules. - /// - public bool IsValid => Validate(); - - /// - /// Normalizes this language tag according to RFC 5646 rules. - /// - /// A normalized copy of this language tag. - public LanguageTag Normalize() => new LanguageTagParser().Normalize(this); - - /// - /// Converts this language tag to its string representation. - /// - /// - /// A string representation of the language tag (e.g., "en-US", "zh-Hans-CN"), or an empty string - /// when no subtags are present. - /// - public override string ToString() - { - StringBuilder stringBuilder = new(); - if (!string.IsNullOrEmpty(Language)) - { - _ = stringBuilder.Append(Language); - } - if (!string.IsNullOrEmpty(ExtendedLanguage)) - { - _ = stringBuilder.Append('-').Append(ExtendedLanguage); - } - if (!string.IsNullOrEmpty(Script)) - { - _ = stringBuilder.Append('-').Append(Script); - } - if (!string.IsNullOrEmpty(Region)) - { - _ = stringBuilder.Append('-').Append(Region); - } - if (_variants.Count > 0) - { - _ = stringBuilder.Append( - CultureInfo.InvariantCulture, - $"-{string.Join('-', _variants)}" - ); - } - if (_extensions.Count > 0) - { - _ = stringBuilder.Append( - CultureInfo.InvariantCulture, - $"-{string.Join('-', _extensions.Select(item => item.ToString()))}" - ); - } - if (!PrivateUse.Tags.IsEmpty) - { - if (stringBuilder.Length > 0) - { - _ = stringBuilder.Append('-'); - } - _ = stringBuilder.Append(PrivateUse); - } - return stringBuilder.ToString(); - } - - /// - /// Determines whether this instance is equal to another . - /// - /// The to compare with. - /// true if the tags are equal (case-insensitive); otherwise, false. - public bool Equals(LanguageTag? other) => - other is not null - && ( - ReferenceEquals(this, other) - || string.Equals(ToString(), other.ToString(), StringComparison.OrdinalIgnoreCase) - ); - - /// - /// Determines whether this instance is equal to another object. - /// - /// The object to compare with. - /// true if the objects are equal; otherwise, false. - public override bool Equals(object? obj) => Equals(obj as LanguageTag); - - /// - /// Returns the hash code for this language tag. - /// - /// A hash code for the current language tag. - public override int GetHashCode() => StringComparer.OrdinalIgnoreCase.GetHashCode(ToString()); - - /// - /// Determines whether two language tags are equal. - /// - /// The first language tag to compare. - /// The second language tag to compare. - /// true if the tags are equal; otherwise, false. - public static bool operator ==(LanguageTag? left, LanguageTag? right) => - left?.Equals(right) ?? (right is null); - - /// - /// Determines whether two language tags are not equal. - /// - /// The first language tag to compare. - /// The second language tag to compare. - /// true if the tags are not equal; otherwise, false. - public static bool operator !=(LanguageTag? left, LanguageTag? right) => !(left == right); - - /// - /// Creates a simple language tag with just a language code. - /// - /// The ISO 639 language code. - /// A new with the specified language. - public static LanguageTag FromLanguage(string language) => - CreateBuilder().Language(language).Build(); - - /// - /// Creates a language tag with language and region. - /// - /// The ISO 639 language code. - /// The ISO 3166-1 country code or UN M.49 region code. - /// A new with the specified language and region. - public static LanguageTag FromLanguageRegion(string language, string region) => - CreateBuilder().Language(language).Region(region).Build(); - - /// - /// Creates a language tag with language, script, and region. - /// - /// The ISO 639 language code. - /// The ISO 15924 script code. - /// The ISO 3166-1 country code or UN M.49 region code. - /// A new with the specified language, script, and region. - public static LanguageTag FromLanguageScriptRegion( - string language, - string script, - string region - ) => CreateBuilder().Language(language).Script(script).Region(region).Build(); -} - -/// -/// Represents an extension subtag in a language tag. -/// -/// The single-character prefix for the extension (e.g., 'u' for Unicode extensions). -/// The list of extension subtag values. -public sealed record ExtensionTag(char Prefix, ImmutableArray Tags) -{ - /// - /// Creates an extension tag with a prefix and tags from an enumerable collection. - /// - /// The single-character prefix. - /// The extension subtag values. - public ExtensionTag(char prefix, IEnumerable tags) - : this(prefix, [.. tags]) { } - - /// - /// Creates an empty extension tag. - /// - public ExtensionTag() - : this('\0', []) { } - - /// - /// Converts this extension tag to its string representation. - /// - /// A string representation of the extension tag (e.g., "u-ca-buddhist"), or an empty string when no tags are present. - public override string ToString() => - Tags.IsEmpty ? string.Empty : $"{Prefix}-{string.Join('-', Tags)}"; - - internal ExtensionTag Normalize() => - this with - { - Prefix = char.ToLowerInvariant(Prefix), - Tags = - [ - .. Tags.Select(t => t.ToLowerInvariant()).OrderBy(t => t, StringComparer.Ordinal), - ], - }; - - /// - /// Determines whether this instance is equal to another . - /// - /// The to compare with. - /// true if the extension tags are equal; otherwise, false. - public bool Equals(ExtensionTag? other) => - ReferenceEquals(this, other) - || ( - other is not null - && char.ToLowerInvariant(Prefix) == char.ToLowerInvariant(other.Prefix) - && Tags.SequenceEqual(other.Tags, StringComparer.OrdinalIgnoreCase) - ); - - /// - /// Returns the hash code for this extension tag. - /// - /// A hash code for the current extension tag. - public override int GetHashCode() - { - HashCode hashCode = new(); - hashCode.Add(char.ToLowerInvariant(Prefix)); - foreach (string tag in Tags) - { - hashCode.Add(tag, StringComparer.OrdinalIgnoreCase); - } - - return hashCode.ToHashCode(); - } -} - -/// -/// Represents a private use subtag in a language tag. -/// -/// The list of private use subtag values. -public sealed record PrivateUseTag(ImmutableArray Tags) -{ - /// - /// The prefix character for private use subtags ('x'). - /// - public const char Prefix = 'x'; - - /// - /// Creates a private use tag from an enumerable collection. - /// - /// The private use subtag values. - public PrivateUseTag(IEnumerable tags) - : this([.. tags]) { } - - /// - /// Creates an empty private use tag. - /// - public PrivateUseTag() - : this([]) { } - - /// - /// Converts this private use tag to its string representation. - /// - /// A string representation of the private use tag (e.g., "x-private"), or an empty string when no tags are present. - public override string ToString() => - Tags.IsEmpty ? string.Empty : $"{Prefix}-{string.Join('-', Tags)}"; - - internal PrivateUseTag Normalize() => - this with - { - Tags = - [ - .. Tags.Select(t => t.ToLowerInvariant()).OrderBy(t => t, StringComparer.Ordinal), - ], - }; - - /// - /// Determines whether this instance is equal to another . - /// - /// The to compare with. - /// true if the private use tags are equal; otherwise, false. - public bool Equals(PrivateUseTag? other) => - ReferenceEquals(this, other) - || (other is not null && Tags.SequenceEqual(other.Tags, StringComparer.OrdinalIgnoreCase)); - - /// - /// Returns the hash code for this private use tag. - /// - /// A hash code for the current private use tag. - public override int GetHashCode() - { - HashCode hashCode = new(); - foreach (string tag in Tags) - { - hashCode.Add(tag, StringComparer.OrdinalIgnoreCase); - } - - return hashCode.ToHashCode(); - } -} diff --git a/LanguageTags/LanguageTagBuilder.cs b/LanguageTags/LanguageTagBuilder.cs deleted file mode 100644 index c5f53bf..0000000 --- a/LanguageTags/LanguageTagBuilder.cs +++ /dev/null @@ -1,139 +0,0 @@ -namespace ptr727.LanguageTags; - -/// -/// Provides a fluent API for building RFC 5646 / BCP 47 language tags. -/// -public sealed class LanguageTagBuilder -{ - private readonly LanguageTag _languageTag = new(); - - /// - /// Sets the primary language subtag without validation. - /// - /// The language code (e.g., "en", "zh"). - /// The builder instance for method chaining. - public LanguageTagBuilder Language(string value) - { - _languageTag.Language = value; - return this; - } - - /// - /// Sets the extended language subtag without validation. - /// - /// The extended language code (e.g., "yue" for zh-yue). - /// The builder instance for method chaining. - public LanguageTagBuilder ExtendedLanguage(string value) - { - _languageTag.ExtendedLanguage = value; - return this; - } - - /// - /// Sets the script subtag without validation. - /// - /// The ISO 15924 script code (e.g., "Hans", "Latn"). - /// The builder instance for method chaining. - public LanguageTagBuilder Script(string value) - { - _languageTag.Script = value; - return this; - } - - /// - /// Sets the region subtag without validation. - /// - /// The ISO 3166-1 country code or UN M.49 region code (e.g., "US", "CN"). - /// The builder instance for method chaining. - public LanguageTagBuilder Region(string value) - { - _languageTag.Region = value; - return this; - } - - /// - /// Adds a variant subtag without validation. - /// - /// The variant code to add. - /// The builder instance for method chaining. - public LanguageTagBuilder VariantAdd(string value) - { - _languageTag._variants.Add(value); - return this; - } - - /// - /// Adds multiple variant subtags without validation. - /// - /// The variant codes to add. - /// The builder instance for method chaining. - /// Thrown when is null. - public LanguageTagBuilder VariantAddRange(IEnumerable values) - { - ArgumentNullException.ThrowIfNull(values); - _languageTag._variants.AddRange(values); - return this; - } - - /// - /// Adds an extension subtag with the specified prefix and values without validation. - /// - /// The single-character extension prefix (e.g., 'u' for Unicode extensions). - /// The extension values. - /// The builder instance for method chaining. - /// Thrown when is null. - /// Thrown when is empty. - public LanguageTagBuilder ExtensionAdd(char prefix, IEnumerable values) - { - ArgumentNullException.ThrowIfNull(values); - ImmutableArray tags = [.. values]; - if (tags.IsEmpty) - { - throw new ArgumentException("Extension tags cannot be empty.", nameof(values)); - } - - _languageTag._extensions.Add(new ExtensionTag(prefix, tags)); - return this; - } - - /// - /// Adds a private use subtag without validation. - /// - /// The private use value to add. - /// The builder instance for method chaining. - public LanguageTagBuilder PrivateUseAdd(string value) - { - List tags = [.. _languageTag.PrivateUse.Tags, value]; - _languageTag.PrivateUse = new PrivateUseTag(tags); - return this; - } - - /// - /// Adds multiple private use subtags without validation. - /// - /// The private use values to add. - /// The builder instance for method chaining. - /// Thrown when is null. - public LanguageTagBuilder PrivateUseAddRange(IEnumerable values) - { - ArgumentNullException.ThrowIfNull(values); - List tags = [.. _languageTag.PrivateUse.Tags, .. values]; - _languageTag.PrivateUse = new PrivateUseTag(tags); - return this; - } - - /// - /// Builds and returns the constructed language tag without validation or normalization. - /// - /// The constructed instance; the builder continues to mutate this instance. - public LanguageTag Build() => _languageTag; - - /// - /// Builds and normalizes the constructed language tag according to RFC 5646 rules. - /// - /// - /// Normalization does not validate the tag; call on the result if needed. - /// - /// A normalized . - public LanguageTag Normalize() => new LanguageTagParser().Normalize(_languageTag); -} diff --git a/LanguageTags/LanguageTagParser.cs b/LanguageTags/LanguageTagParser.cs deleted file mode 100644 index 40c4ce4..0000000 --- a/LanguageTags/LanguageTagParser.cs +++ /dev/null @@ -1,839 +0,0 @@ -using System.Diagnostics; - -namespace ptr727.LanguageTags; - -// Parse the tag per RFC 5646 2.1 -// https://www.rfc-editor.org/rfc/rfc5646#section-2.1 - -// Examples -// https://www.rfc-editor.org/rfc/rfc5646#appendix-A - -// TODO: Use a BNF parser or parse code generator vs. hand parsing -// https://github.com/antlr/antlr4 -// https://github.com/gabriele-tomassetti/antlr-mega-tutorial -// https://github.com/picoe/Eto.Parse -// https://github.com/i-e-b/Gool -// https://www.parse2.com/manual-cs.shtml - -// TODO: Implement subtag content validation by comparing values with the registry data - -internal sealed class LanguageTagParser -{ - private readonly Lazy _logger = new(LogOptions.CreateLogger); - internal ILogger Log => _logger.Value; - private readonly Rfc5646Data _rfc5646 = Rfc5646Data.Create(); - private readonly List _tagList = []; - private LanguageTag _languageTag = new(); - - private string ParseGrandfathered(string languageTag) - { - // Grandfathered and Redundant Registrations - // https://www.rfc-editor.org/rfc/rfc5646#section-2.2.8 - - // Search tag registry - // Type = Grandfathered, Tag = i-navajo, PreferredValue = nv - List recordList = - [ - .. _rfc5646.RecordList.Where(record => - record.Type == Rfc5646Record.RecordType.Grandfathered - && !string.IsNullOrEmpty(record.Tag) - && record.Tag.Equals(languageTag, StringComparison.OrdinalIgnoreCase) - ), - ]; - Debug.Assert(recordList.Count <= 1); - if (recordList.Count == 1) - { - Debug.Assert(!string.IsNullOrEmpty(recordList[0].PreferredValue)); - return recordList[0].PreferredValue!; - } - - // No match - return languageTag; - } - - private static void SetCase(LanguageTag languageTag) - { - // Language lowercase - if (!string.IsNullOrEmpty(languageTag.Language)) - { - languageTag.Language = languageTag.Language.ToLowerInvariant(); - } - - // Extended language lowercase - if (!string.IsNullOrEmpty(languageTag.ExtendedLanguage)) - { - languageTag.ExtendedLanguage = languageTag.ExtendedLanguage.ToLowerInvariant(); - } - - // Script title case - if (!string.IsNullOrEmpty(languageTag.Script)) - { - languageTag.Script = CultureInfo.InvariantCulture.TextInfo.ToTitleCase( - languageTag.Script.ToLowerInvariant() - ); - } - - // Region uppercase - if (!string.IsNullOrEmpty(languageTag.Region)) - { - languageTag.Region = languageTag.Region.ToUpperInvariant(); - } - - // Variants lowercase - for (int i = 0; i < languageTag._variants.Count; i++) - { - languageTag._variants[i] = languageTag._variants[i].ToLowerInvariant(); - } - - // Extensions lowercase and normalize - for (int i = 0; i < languageTag._extensions.Count; i++) - { - languageTag._extensions[i] = languageTag._extensions[i].Normalize(); - } - - // Private use lowercase and normalize - languageTag.PrivateUse = languageTag.PrivateUse.Normalize(); - } - - private static void Sort(LanguageTag languageTag) - { - // Sort variants - languageTag._variants.Sort(); - - // Sort extensions by prefix - languageTag._extensions.Sort((x, y) => x.Prefix.CompareTo(y.Prefix)); - - // Note: Extension tags and private use tags are already sorted by Normalize() - } - - private static bool ValidateLanguage(string tag) => - // 2 to 8 chars - !string.IsNullOrEmpty(tag) && tag.Length is >= 2 and <= 8; - - private bool ParseLanguage() - { - // Primary Language Subtag - // https://www.rfc-editor.org/rfc/rfc5646#section-2.2.1 - - /* - language = 2*3ALPHA ; shortest ISO 639 code - ["-" extlang] ; sometimes followed by - ; extended language subtags - / 4ALPHA ; or reserved for future use - / 5*8ALPHA ; or registered language subtag - */ - - // 2 chars ISO 639-1 - // 3 chars ISO 639-2/3/5 - // qaa - qtz reserved private use - // 4 chars reserved future use - // 5 - 8 chars registered use - if (!ValidateLanguage(_tagList[0])) - { - return false; - } - - _languageTag.Language = _tagList[0]; - _tagList.RemoveAt(0); - - // Done - return true; - } - - private static bool ValidateExtendedLanguage(string tag) => - // 3 alpha - // A 3 digit value is a UN M.49 region, not an extended language - !string.IsNullOrEmpty(tag) && tag.Length == 3 && tag.All(char.IsAsciiLetter); - - private bool ParseExtendedLanguage() - { - // Extended Language Subtags - // https://www.rfc-editor.org/rfc/rfc5646#section-2.2.2 - - /* - extlang = 3ALPHA ; selected ISO 639 codes - *2("-" 3ALPHA) ; permanently reserved - */ - - // Extended language - // 3 chars ISO 639-3/5 - // Language is 2 or 3 chars - if (!ValidateExtendedLanguage(_tagList[0]) || _languageTag.Language.Length is < 2 or > 3) - { - // Done - return true; - } - - _languageTag.ExtendedLanguage = _tagList[0]; - _tagList.RemoveAt(0); - - // Done - return true; - } - - private static bool ValidateScript(string tag) => - // 4 chars - !string.IsNullOrEmpty(tag) && tag.Length == 4; - - private bool ParseScript() - { - // Script Subtag - // https://www.rfc-editor.org/rfc/rfc5646#section-2.2.3 - - /* - script = 4ALPHA ; ISO 15924 code - */ - - // Script - // 4 chars ISO 15924 - // Qaaa - Qabx reserved private use - if (!ValidateScript(_tagList[0])) - { - // Done - return true; - } - - _languageTag.Script = _tagList[0]; - _tagList.RemoveAt(0); - - // Done - return true; - } - - private static bool ValidateRegion(string tag) => - // 2 alpha or 3 digit - !string.IsNullOrEmpty(tag) - && ( - (tag.Length == 2 && tag.All(char.IsAsciiLetter)) - || (tag.Length == 3 && tag.All(char.IsAsciiDigit)) - ); - - private bool ParseRegion() - { - // Region Subtag - // https://www.rfc-editor.org/rfc/rfc5646#section-2.2.4 - - /* - region = 2ALPHA ; ISO 3166-1 code - / 3DIGIT ; UN M.49 code - */ - - // TODO: RFC says theoretically 3 regions but practically only 1, e.g. sgn-BE-FR - - // Region - // 2 alpha ISO 3166-1 - // AA, QM - QZ, XA - XZ, ZZ reserved private use - // 3 digit UN M.49 - if (!ValidateRegion(_tagList[0])) - { - // Done - return true; - } - - _languageTag.Region = _tagList[0]; - _tagList.RemoveAt(0); - - // Done - return true; - } - - private static bool ValidateVariant(string tag) => - // 5 - 8 chars start with alpha - // 4 - 8 chars start with digit - !string.IsNullOrEmpty(tag) - && ( - (tag.Length is >= 5 and <= 8 && char.IsAsciiLetter(tag[0])) - || (tag.Length is >= 4 and <= 8 && char.IsAsciiDigit(tag[0])) - ); - - private bool ParseVariant() - { - // Variant Subtags - // https://www.rfc-editor.org/rfc/rfc5646#section-2.2.5 - - /* - variant = 5*8alphanum ; registered variants - / (DIGIT 3alphanum) - */ - - // Multiple variants - while (_tagList.Count > 0) - { - // Variant - // begin with alpha 5 - 8 chars - // begin with digit 4 = 8 chars - if (!ValidateVariant(_tagList[0])) - { - // Done - return true; - } - - // Variant may not repeat - if (_languageTag._variants.Contains(_tagList[0], StringComparer.OrdinalIgnoreCase)) - { - return false; - } - - // Add variant tag - _languageTag._variants.Add(_tagList[0]); - _tagList.RemoveAt(0); - } - - // Done - return true; - } - - private static bool ValidateExtensionPrefix(string tag) => - // 1 char not x - !string.IsNullOrEmpty(tag) && tag.Length == 1 && tag[0] != PrivateUseTag.Prefix; - - private static bool ValidateExtension(string tag) => - // 2 - 8 chars - !string.IsNullOrWhiteSpace(tag) - && tag.Length is >= 2 and <= 8 - && !tag.Any(char.IsWhiteSpace); - - private bool ParseExtension() - { - // Extension Subtags - // https://www.rfc-editor.org/rfc/rfc5646#section-2.2.6 - - /* - extension = singleton 1*("-" (2*8alphanum)) - ; Single alphanumerics - ; "x" reserved for private use - */ - - // Multiple extensions - while (_tagList.Count > 0) - { - // Extension - // 1 char (not x) - if (!ValidateExtensionPrefix(_tagList[0])) - { - // Done - return true; - } - - // Prefix may not repeat - if (_languageTag._extensions.Any(item => item.Prefix == _tagList[0][0])) - { - return false; - } - - char prefix = _tagList[0][0]; - _tagList.RemoveAt(0); - - // 1 or more tags remaining - if (_tagList.Count == 0) - { - return false; - } - - // Collect tags for this extension - List extensionTags = []; - - // 2 to 8 chars - // Stop when no more tags match - while (_tagList.Count > 0 && ValidateExtension(_tagList[0])) - { - // Tag may not repeat - if (extensionTags.Contains(_tagList[0], StringComparer.OrdinalIgnoreCase)) - { - return false; - } - - // Add extension tag - extensionTags.Add(_tagList[0]); - _tagList.RemoveAt(0); - } - - // Must have some matches - if (extensionTags.Count == 0) - { - return false; - } - - // Add extension tag - _languageTag._extensions.Add(new ExtensionTag(prefix, extensionTags)); - } - - // Done - return true; - } - - private static bool ValidatePrivateUsePrefix(string tag) => - // x - !string.IsNullOrEmpty(tag) && tag is [PrivateUseTag.Prefix]; - - private static bool ValidatePrivateUse(string tag) => - // 1 to 8 chars - !string.IsNullOrEmpty(tag) && tag.Length is >= 1 and <= 8; - - private bool ParsePrivateUse() - { - // Private Use Subtags - // https://www.rfc-editor.org/rfc/rfc5646#section-2.2.7 - - /* - privateuse = "x" 1*("-" (1*8alphanum)) - */ - - // x-[private]-[private] - if (!ValidatePrivateUsePrefix(_tagList[0])) - { - // Done - return true; - } - - // Prefix may not repeat - if (!_languageTag.PrivateUse.Tags.IsEmpty) - { - return false; - } - - // x - _tagList.RemoveAt(0); - - // 1 or more tags remaining - if (_tagList.Count == 0) - { - return false; - } - - // Collect all private use tags - List privateTags = []; - - // Read all tags - while (_tagList.Count > 0) - { - // 1 to 8 chars - // All remaining tags must be valid - if (!ValidatePrivateUse(_tagList[0])) - { - return false; - } - - // Tag may not repeat - if (privateTags.Contains(_tagList[0], StringComparer.OrdinalIgnoreCase)) - { - return false; - } - - // Add private use tag - privateTags.Add(_tagList[0]); - _tagList.RemoveAt(0); - } - - // Must have some matches - if (privateTags.Count == 0) - { - return false; - } - - // Create private use tag - _languageTag.PrivateUse = new PrivateUseTag(privateTags); - - // Done - return true; - } - - internal LanguageTag? Parse(string languageTag) - { - // Parse the tag per RFC 5646 2.1 - // https://www.rfc-editor.org/rfc/rfc5646#section-2.1 - - /* - The syntax of the language tag in ABNF [RFC5234] is: - Language-Tag = langtag ; normal language tags - / privateuse ; private use tag - / grandfathered ; grandfathered tags - - langtag = language - ["-" script] - ["-" region] - *("-" variant) - *("-" extension) - ["-" privateuse] - */ - - // Init - _languageTag = new(); - _tagList.Clear(); - string originalTag = languageTag; - - // Must be non-empty - if (string.IsNullOrEmpty(languageTag)) - { - Log.LogParseFailure(originalTag, "Tag is null or empty."); - return null; - } - - // Must be all ASCII - if (languageTag.Any(c => !char.IsAscii(c))) - { - Log.LogParseFailure(originalTag, "Tag contains non-ASCII characters."); - return null; - } - - // Grandfathered - languageTag = ParseGrandfathered(languageTag); - - // Split by - - _tagList.AddRange([.. languageTag.Split('-')]); - if (_tagList.Count == 0) - { - Log.LogParseFailure(originalTag, "Tag split resulted in no segments."); - return null; - } - - // All parts must be non-empty - if (_tagList.Any(string.IsNullOrEmpty)) - { - Log.LogParseFailure(originalTag, "Tag contains empty segments."); - return null; - } - - // Private use - if (!ParsePrivateUse()) - { - Log.LogParseFailure(originalTag, "Invalid private use section."); - return null; - } - if (_tagList.Count == 0) - { - return _languageTag; - } - - // Language - if (!ParseLanguage()) - { - Log.LogParseFailure(originalTag, "Invalid primary language subtag."); - return null; - } - if (_tagList.Count == 0) - { - return _languageTag; - } - - // Extended language - if (!ParseExtendedLanguage()) - { - Log.LogParseFailure(originalTag, "Invalid extended language subtag."); - return null; - } - if (_tagList.Count == 0) - { - return _languageTag; - } - - // Script - if (!ParseScript()) - { - Log.LogParseFailure(originalTag, "Invalid script subtag."); - return null; - } - if (_tagList.Count == 0) - { - return _languageTag; - } - - // Region - if (!ParseRegion()) - { - Log.LogParseFailure(originalTag, "Invalid region subtag."); - return null; - } - if (_tagList.Count == 0) - { - return _languageTag; - } - - // Variant - if (!ParseVariant()) - { - Log.LogParseFailure(originalTag, "Invalid variant subtag."); - return null; - } - if (_tagList.Count == 0) - { - return _languageTag; - } - - // Extension - if (!ParseExtension()) - { - Log.LogParseFailure(originalTag, "Invalid extension subtag."); - return null; - } - if (_tagList.Count == 0) - { - return _languageTag; - } - - // Private use - if (!ParsePrivateUse()) - { - Log.LogParseFailure(originalTag, "Invalid private use subtag."); - return null; - } - if (_tagList.Count == 0) - { - return _languageTag; - } - - // Should be done - Log.LogParseFailure(originalTag, "Unexpected trailing segments."); - return null; - } - - internal LanguageTag? Normalize(string languageTag) - { - LanguageTag? parsedTag = Parse(languageTag); - return parsedTag == null ? null : Normalize(parsedTag); - } - - internal LanguageTag Normalize(LanguageTag languageTag) - { - ArgumentNullException.ThrowIfNull(languageTag); - - // Canonicalization of Language Tags - // https://www.rfc-editor.org/rfc/rfc5646#section-4.5 - - // Create a copy and do not modify the original - string originalTag = languageTag.ToString(); - LanguageTag normalizeTag = new(languageTag); - - // Language with preferred value - // iw -> he - // in -> id - if (!string.IsNullOrEmpty(normalizeTag.Language)) - { - // Type = Language, SubTag = iw, PreferredValue = he - List recordList = - [ - .. _rfc5646.RecordList.Where(record => - record.Type == Rfc5646Record.RecordType.Language - && !string.IsNullOrEmpty(record.PreferredValue) - && normalizeTag.Language.Equals( - record.SubTag, - StringComparison.OrdinalIgnoreCase - ) - ), - ]; - Debug.Assert(recordList.Count <= 1); - if (recordList.Count == 1) - { - Debug.Assert(!string.IsNullOrEmpty(recordList[0].PreferredValue)); - normalizeTag.Language = recordList[0].PreferredValue!; - } - } - - // Extended language with preferred value - // ar-afb -> afb - // zh-yue -> yue - if ( - !string.IsNullOrEmpty(normalizeTag.Language) - && !string.IsNullOrEmpty(normalizeTag.ExtendedLanguage) - ) - { - // Type = ExtLanguage, Prefix = ar, SubTag = afb, PreferredValue = afb - List recordList = - [ - .. _rfc5646.RecordList.Where(record => - record.Type == Rfc5646Record.RecordType.ExtLanguage - && !string.IsNullOrEmpty(record.PreferredValue) - && string.Equals( - record.SubTag, - normalizeTag.ExtendedLanguage, - StringComparison.OrdinalIgnoreCase - ) - && record.Prefix.Any(prefix => - prefix.Equals(normalizeTag.Language, StringComparison.OrdinalIgnoreCase) - ) - ), - ]; - Debug.Assert(recordList.Count <= 1); - if (recordList.Count == 1) - { - Debug.Assert(!string.IsNullOrEmpty(recordList[0].PreferredValue)); - normalizeTag.Language = recordList[0].PreferredValue!; - normalizeTag.ExtendedLanguage = string.Empty; - } - } - - // Redundant tags - // zh-cmn-Hant -> cmn-Hant - // zh-gan -> gan - // sgn-CO -> csn - - // TODO: What to do with tags with no preferred value? - // de-CH-1901 -> ? - // iu-Latn -> ? - string tagString = normalizeTag.ToString(); - if (tagString.Contains('-', StringComparison.Ordinal)) - { - // Type = Redundant, Tag = zh-cmn-Hant, PreferredValue = cmn-Hant - List recordList = - [ - .. _rfc5646.RecordList.Where(record => - record.Type == Rfc5646Record.RecordType.Redundant - && !string.IsNullOrEmpty(record.PreferredValue) - && !string.IsNullOrEmpty(record.Tag) - && tagString.StartsWith(record.Tag, StringComparison.OrdinalIgnoreCase) - ), - ]; - Debug.Assert(recordList.Count <= 1); - if (recordList.Count == 1) - { - // Replace the tag with the preferred value - Debug.Assert(!string.IsNullOrEmpty(recordList[0].Tag)); - Debug.Assert(!string.IsNullOrEmpty(recordList[0].PreferredValue)); - tagString = tagString.Replace( - recordList[0].Tag!, - recordList[0].PreferredValue, - StringComparison.OrdinalIgnoreCase - ); - - // Reparse the new tag string - LanguageTag? preferredTag = Parse(tagString); - Debug.Assert(preferredTag != null); - normalizeTag.Language = preferredTag.Language; - normalizeTag.ExtendedLanguage = preferredTag.ExtendedLanguage; - normalizeTag.Script = preferredTag.Script; - normalizeTag.Region = preferredTag.Region; - } - } - - // Redundant script - // af-Latn -> af - // en-Latn -> en - if ( - !string.IsNullOrEmpty(normalizeTag.Language) - && !string.IsNullOrEmpty(normalizeTag.Script) - ) - { - // Type = Language, SubTag = en, SuppressScript = Latn - List recordList = - [ - .. _rfc5646.RecordList.Where(record => - record.Type == Rfc5646Record.RecordType.Language - && !string.IsNullOrEmpty(record.SuppressScript) - && normalizeTag.Language.Equals( - record.SubTag, - StringComparison.OrdinalIgnoreCase - ) - ), - ]; - Debug.Assert(recordList.Count <= 1); - if (recordList.Count == 1) - { - normalizeTag.Script = string.Empty; - } - } - - // TODO: Any tags that have macrolanguage and not yet normalized? - // "Scope": "macrolanguage", -> "zh-cmn-Hant" -> "cmn-Hant" - - // Set case and sort - SetCase(normalizeTag); - Sort(normalizeTag); - - string normalizedTag = normalizeTag.ToString(); - if (!string.Equals(originalTag, normalizedTag, StringComparison.OrdinalIgnoreCase)) - { - Log.LogNormalizedTag(originalTag, normalizedTag); - } - - // Done - return normalizeTag; - } - - internal static bool Validate(LanguageTag languageTag) - { - ArgumentNullException.ThrowIfNull(languageTag); - - // Classes of Conformance - // https://www.rfc-editor.org/rfc/rfc5646#section-2.2.9 - - // Validate tags - if (!string.IsNullOrEmpty(languageTag.Language) && !ValidateLanguage(languageTag.Language)) - { - return false; - } - if ( - !string.IsNullOrEmpty(languageTag.ExtendedLanguage) - && !ValidateExtendedLanguage(languageTag.ExtendedLanguage) - ) - { - return false; - } - if (!string.IsNullOrEmpty(languageTag.Script) && !ValidateScript(languageTag.Script)) - { - return false; - } - if (!string.IsNullOrEmpty(languageTag.Region) && !ValidateRegion(languageTag.Region)) - { - return false; - } - if (languageTag._variants.Any(tag => !ValidateVariant(tag))) - { - return false; - } - if ( - languageTag._extensions.Any(extension => - extension.Tags.IsEmpty - || !ValidateExtensionPrefix(extension.Prefix.ToString()) - || extension.Tags.Any(tag => !ValidateExtension(tag)) - ) - ) - { - return false; - } - if (languageTag.PrivateUse.Tags.Any(tag => !ValidatePrivateUse(tag))) - { - return false; - } - - // No duplicate variants - if (languageTag._variants.GroupBy(tag => tag).Any(group => group.Count() > 1)) - { - return false; - } - - // No duplicate extension prefixes - if ( - languageTag - ._extensions.GroupBy(extension => extension.Prefix) - .Any(group => group.Count() > 1) - ) - { - return false; - } - - // No duplicate extensions per prefix - if ( - languageTag._extensions.Any(extension => - extension.Tags.GroupBy(tag => tag).Any(group => group.Count() > 1) - ) - ) - { - return false; - } - - // No duplicate private use tags - if (languageTag.PrivateUse.Tags.GroupBy(tag => tag).Any(group => group.Count() > 1)) - { - return false; - } - - // No empty tags - if (string.IsNullOrEmpty(languageTag.ToString())) - { - return false; - } - - // Done - return true; - } -} diff --git a/LanguageTags/LanguageTags.csproj b/LanguageTags/LanguageTags.csproj deleted file mode 100644 index 59ee5d6..0000000 --- a/LanguageTags/LanguageTags.csproj +++ /dev/null @@ -1,41 +0,0 @@ - - - LanguageTags - 1.0.0.0 - Pieter Viljoen - Pieter Viljoen - Pieter Viljoen - C# .NET library for ISO 639-2, ISO 639-3, RFC 5646 / BCP 47 language tags - true - 1.0.0.0 - true - true - true - 1.0.0-pre - true - true - en - true - ptr727.LanguageTags - MIT - https://github.com/ptr727/LanguageTags - README.md - ISO639 RFC5646 BCP47 LanguageTags - 1.0.0-pre - true - ptr727.LanguageTags - snupkg - 1.0.0.0 - - - - - - - - - - - - - diff --git a/LanguageTags/LogOptions.cs b/LanguageTags/LogOptions.cs deleted file mode 100644 index ce154dc..0000000 --- a/LanguageTags/LogOptions.cs +++ /dev/null @@ -1,84 +0,0 @@ -namespace ptr727.LanguageTags; - -/// -/// Provides global logging configuration for the library. -/// -/// -/// -/// This class manages static logger configuration used by all library classes. -/// When a logger is requested, it is resolved using the following priority order: -/// -/// -/// -/// - The global logger factory, when set to a non- instance. Creates a logger for the requested category. -/// -/// -/// - The default fallback when no logger factory is configured. -/// -/// -/// -/// Note that loggers are created and cached at the time of use by each class instance. Changes to -/// after a logger has been created will not affect existing cached loggers. Only new logger requests will use the updated configuration. -/// -/// -public static class LogOptions -{ - private static ILoggerFactory s_loggerFactory = NullLoggerFactory.Instance; - - /// - /// Gets or sets the logger factory used to create category loggers. - /// - /// - /// Changes to this property after loggers have been created will not affect existing cached loggers. - /// - public static ILoggerFactory LoggerFactory - { - get => Volatile.Read(ref s_loggerFactory); - set => _ = Interlocked.Exchange(ref s_loggerFactory, value ?? NullLoggerFactory.Instance); - } - - /// - /// Configures the library to use the specified logger factory. - /// - /// The factory to use for new loggers. - /// - /// This will only affect loggers created after this call. - /// Existing cached loggers remain unchanged. - /// - public static void SetFactory(ILoggerFactory loggerFactory) => LoggerFactory = loggerFactory; - - /// - /// Attempts to configure the library to use the specified logger factory if none is set. - /// - /// The factory to use for new loggers. - /// - /// true when the factory was set because no factory was configured; otherwise, false. - /// - /// - /// Use this method for one-time initialization to avoid overwriting an existing factory. - /// - public static bool TrySetFactory(ILoggerFactory loggerFactory) - { - ILoggerFactory candidate = loggerFactory ?? NullLoggerFactory.Instance; - ILoggerFactory original = Interlocked.CompareExchange( - ref s_loggerFactory, - candidate, - NullLoggerFactory.Instance - ); - - return ReferenceEquals(original, NullLoggerFactory.Instance); - } - - internal static ILogger CreateLogger() => CreateLogger(typeof(T).FullName ?? typeof(T).Name); - - internal static ILogger CreateLogger(string categoryName) - { - ArgumentException.ThrowIfNullOrWhiteSpace(categoryName); - - // Read once so a concurrent swap cannot split the check and the create across two instances. - ILoggerFactory factory = LoggerFactory; - return !ReferenceEquals(factory, NullLoggerFactory.Instance) - ? factory.CreateLogger(categoryName) - : NullLogger.Instance; - } -} diff --git a/LanguageTags/Rfc5646Data.cs b/LanguageTags/Rfc5646Data.cs deleted file mode 100644 index 1362104..0000000 --- a/LanguageTags/Rfc5646Data.cs +++ /dev/null @@ -1,696 +0,0 @@ -using System.Runtime.CompilerServices; -using System.Text.Json.Serialization; - -namespace ptr727.LanguageTags; - -/// -/// Provides access to RFC 5646 / BCP 47 language subtag registry data. -/// -public sealed partial class Rfc5646Data -{ - internal const string DataUri = - "https://www.iana.org/assignments/language-subtag-registry/language-subtag-registry"; - internal const string DataFileName = "rfc5646"; - - private readonly Lazy _logger = new(LogOptions.CreateLogger); - internal ILogger Log => _logger.Value; - - [JsonConstructor] - internal Rfc5646Data() { } - - /// - /// Gets the file date of the language subtag registry. - /// - [JsonInclude] - public DateOnly? FileDate { get; internal set; } - - /// - /// Gets the collection of RFC 5646 language subtag records. - /// - [JsonInclude] - public ImmutableArray RecordList { get; internal set; } = []; - - /// - /// Creates a instance from a data file asynchronously. - /// - /// The path to the data file. - /// The loaded . - /// Thrown when the file cannot be read. - /// Thrown when the file contains invalid data. - public static async Task FromDataAsync(string fileName) - { - Rfc5646Data rfc5646Data = new(); - await rfc5646Data.LoadDataAsync(fileName).ConfigureAwait(false); - return rfc5646Data; - } - - [System.Diagnostics.CodeAnalysis.SuppressMessage( - "Reliability", - "CA2007:Consider calling ConfigureAwait on the awaited task", - Justification = "https://github.com/dotnet/roslyn-analyzers/issues/7185" - )] - private async Task LoadDataAsync(string fileName) - { - // File Format - // https://www.rfc-editor.org/rfc/rfc5646#section-3.1 - - // https://www.w3.org/International/articles/language-tags - // https://datatracker.ietf.org/doc/html/draft-phillips-record-jar-02 - - try - { - List recordList = []; - Parser parser = new(); - await using FileStream fileStream = new( - fileName, - FileMode.Open, - FileAccess.Read, - FileShare.Read, - 4096, - FileOptions.Asynchronous | FileOptions.SequentialScan - ); - using StreamReader lineReader = new(fileStream); - - // First record is file date - _ = await parser.ReadAttributesAsync(lineReader).ConfigureAwait(false); - DateOnly fileDate = parser.GetFileDate(); - - // Read all record attributes separated by %% until EOF - while (await parser.ReadAttributesAsync(lineReader).ConfigureAwait(false)) - { - recordList.Add(parser.GetRecord()); - } - recordList.Add(parser.GetRecord()); - - if (recordList.Count == 0) - { - Log.LogDataLoadEmpty(nameof(Rfc5646Data), fileName); - throw new InvalidDataException($"No data found in RFC 5646 file: {fileName}"); - } - - FileDate = fileDate; - RecordList = [.. recordList]; - Log.LogDataLoaded(nameof(Rfc5646Data), fileName, RecordList.Length); - } - catch (Exception exception) - { - Log.LogDataLoadFailed(nameof(Rfc5646Data), fileName, exception); - throw; - } - } - - /// - /// Creates a instance from a JSON file asynchronously. - /// - /// The path to the JSON file. - /// The loaded . - /// Thrown when the file cannot be read. - /// Thrown when the JSON is invalid. - /// Thrown when the file contains invalid data. - [System.Diagnostics.CodeAnalysis.SuppressMessage( - "Reliability", - "CA2007:Consider calling ConfigureAwait on the awaited task", - Justification = "https://github.com/dotnet/roslyn-analyzers/issues/7185" - )] - public static async Task FromJsonAsync(string fileName) - { - ILogger logger = LogOptions.CreateLogger(); - try - { - await using FileStream fileStream = new( - fileName, - FileMode.Open, - FileAccess.Read, - FileShare.Read, - 4096, - FileOptions.Asynchronous | FileOptions.SequentialScan - ); - Rfc5646Data? data = await JsonSerializer - .DeserializeAsync(fileStream, LanguageJsonContext.Default.Rfc5646Data) - .ConfigureAwait(false); - if (data == null) - { - logger.LogDataLoadEmpty(nameof(Rfc5646Data), fileName); - throw new InvalidDataException($"No data found in RFC 5646 file: {fileName}"); - } - - logger.LogDataLoaded(nameof(Rfc5646Data), fileName, data.RecordList.Length); - return data; - } - catch (Exception exception) - { - logger.LogDataLoadFailed(nameof(Rfc5646Data), fileName, exception); - throw; - } - } - - [System.Diagnostics.CodeAnalysis.SuppressMessage( - "Reliability", - "CA2007:Consider calling ConfigureAwait on the awaited task", - Justification = "https://github.com/dotnet/roslyn-analyzers/issues/7185" - )] - internal async Task SaveJsonAsync(string fileName) - { - await using FileStream fileStream = new( - fileName, - FileMode.Create, - FileAccess.Write, - FileShare.None, - 4096, - FileOptions.Asynchronous | FileOptions.SequentialScan - ); - await JsonSerializer - .SerializeAsync(fileStream, this, LanguageJsonContext.Default.Rfc5646Data) - .ConfigureAwait(false); - } - - internal async Task SaveCodeAsync(string fileName) - { - using StreamWriter writer = new( - new FileStream( - fileName, - FileMode.Create, - FileAccess.Write, - FileShare.None, - 4096, - FileOptions.Asynchronous | FileOptions.SequentialScan - ), - new UTF8Encoding(false) - ) - { - NewLine = "\r\n", - }; - - await WriteLineAsync("namespace ptr727.LanguageTags;"); - await WriteLineAsync(string.Empty); - await WriteLineAsync("/// "); - await WriteLineAsync( - "/// Provides access to RFC 5646 / BCP 47 language subtag registry data." - ); - await WriteLineAsync("/// "); - await WriteLineAsync( - $"[System.CodeDom.Compiler.GeneratedCode(\"{typeof(Rfc5646Data).FullName}\", \"1.0\")]" - ); - await WriteLineAsync("public sealed partial class Rfc5646Data"); - await WriteLineAsync("{"); - await WriteLineAsync(" /// "); - await WriteLineAsync( - " /// Creates an instance loaded from the embedded RFC 5646 subtag registry dataset." - ); - await WriteLineAsync(" /// "); - await WriteLineAsync( - " /// The populated instance." - ); - await WriteLineAsync(" public static Rfc5646Data Create() =>"); - await WriteLineAsync(" new()"); - await WriteLineAsync(" {"); - await WriteLineAsync( - $" FileDate = {LanguageSchema.GetCodeGenString(FileDate)}," - ); - await WriteLineAsync(" RecordList ="); - await WriteLineAsync(" ["); - - foreach (Rfc5646Record record in RecordList) - { - await WriteLineAsync(" new()"); - await WriteLineAsync(" {"); - await WriteLineAsync( - $" Type = {LanguageSchema.GetCodeGenString(record.Type)}," - ); - await WriteLineAsync( - $" SubTag = {LanguageSchema.GetCodeGenString(record.SubTag)}," - ); - await WriteLineAsync( - $" Added = {LanguageSchema.GetCodeGenString(record.Added)}," - ); - await WriteLineAsync( - $" SuppressScript = {LanguageSchema.GetCodeGenString(record.SuppressScript)}," - ); - await WriteLineAsync( - $" Scope = {LanguageSchema.GetCodeGenString(record.Scope)}," - ); - await WriteLineAsync( - $" MacroLanguage = {LanguageSchema.GetCodeGenString(record.MacroLanguage)}," - ); - await WriteLineAsync( - $" Deprecated = {LanguageSchema.GetCodeGenString(record.Deprecated)}," - ); - await WriteLineAsync( - $" PreferredValue = {LanguageSchema.GetCodeGenString(record.PreferredValue)}," - ); - await WriteLineAsync( - $" Tag = {LanguageSchema.GetCodeGenString(record.Tag)}," - ); - await WriteLineAsync( - $" Description = {LanguageSchema.GetCodeGenString(record.Description)}," - ); - await WriteLineAsync( - $" Comments = {LanguageSchema.GetCodeGenString(record.Comments)}," - ); - await WriteLineAsync( - $" Prefix = {LanguageSchema.GetCodeGenString(record.Prefix)}," - ); - await WriteLineAsync(" },"); - } - - await WriteLineAsync(" ],"); - await WriteLineAsync(" };"); - await WriteLineAsync("}"); - return; - - ConfiguredTaskAwaitable WriteLineAsync(string value) => - writer.WriteLineAsync(value).ConfigureAwait(false); - } - - internal sealed class Parser - { - private readonly List> _attributeList = []; - private string? _pendingLine; - - public async Task ReadAttributesAsync(StreamReader lineReader) - { - // Read until %% or EOF - _attributeList.Clear(); - bool eof = false; - while (true) - { - // Read next line - string? line = await ReadLineAsync(lineReader).ConfigureAwait(false); - if (string.IsNullOrEmpty(line)) - { - // End of file - eof = true; - break; - } - if (line.Equals("%%", StringComparison.Ordinal)) - { - // End of record - break; - } - - // First line should not be multiline - if (line.StartsWith(" ", StringComparison.Ordinal)) - { - throw new InvalidDataException( - $"Invalid data found in RFC 5646 record: {line}" - ); - } - - // Multiline record starts with two spaces - // Peek at the next line and look for a space - while (true) - { - // Read next line to check for multiline continuation - string? multiLine = await ReadLineAsync(lineReader).ConfigureAwait(false); - if (string.IsNullOrEmpty(multiLine)) - { - _pendingLine = multiLine; - break; - } - - if (!multiLine.StartsWith(" ", StringComparison.Ordinal)) - { - _pendingLine = multiLine; - break; - } - - line = $"{line.Trim()} {multiLine.Trim()}"; - } - - // Create attribute pair - int divider = line.IndexOf(':', StringComparison.Ordinal); - string key = line[..divider]; - string value = line[(divider + 1)..].Trim(); - - // Add to attribute list - _attributeList.Add(new KeyValuePair(key, value)); - } - - return !eof; - } - - private async Task ReadLineAsync(StreamReader lineReader) - { - if (_pendingLine is not null) - { - string? line = _pendingLine; - _pendingLine = null; - return line; - } - - return await lineReader.ReadLineAsync().ConfigureAwait(false); - } - - public Rfc5646Record GetRecord() - { - // Create a mutable tuple as placeholder - ( - Rfc5646Record.RecordType Type, - string? SubTag, - List Description, - DateOnly? Added, - string? SuppressScript, - Rfc5646Record.RecordScope Scope, - string? MacroLanguage, - DateOnly? Deprecated, - List Comments, - List Prefix, - string? PreferredValue, - string? Tag - ) record = ( - Type: Rfc5646Record.RecordType.None, - SubTag: null, - Description: [], - Added: null, - SuppressScript: null, - Scope: Rfc5646Record.RecordScope.None, - MacroLanguage: null, - Deprecated: null, - Comments: [], - Prefix: [], - PreferredValue: null, - Tag: null - ); - - if (_attributeList.Count == 0) - { - throw new InvalidDataException("No data found in RFC 5646 record."); - } - foreach (KeyValuePair pair in _attributeList) - { - switch (pair.Key.ToUpperInvariant()) - { - case "TYPE": - record.Type = TypeFromString(pair.Value); - break; - case "SUBTAG": - record.SubTag = pair.Value; - break; - case "DESCRIPTION": - record.Description.Add(pair.Value); - break; - case "ADDED": - record.Added = DateFromString(pair.Value); - break; - case "SUPPRESS-SCRIPT": - record.SuppressScript = pair.Value; - break; - case "SCOPE": - record.Scope = ScopeFromString(pair.Value); - break; - case "MACROLANGUAGE": - record.MacroLanguage = pair.Value; - break; - case "DEPRECATED": - record.Deprecated = DateFromString(pair.Value); - break; - case "COMMENTS": - record.Comments.Add(pair.Value); - break; - case "PREFIX": - record.Prefix.Add(pair.Value); - break; - case "PREFERRED-VALUE": - record.PreferredValue = pair.Value; - break; - case "TAG": - record.Tag = pair.Value; - break; - default: - throw new InvalidDataException( - $"Invalid data found in RFC 5646 record: {pair.Key}" - ); - } - } - return - record.Type == Rfc5646Record.RecordType.None - || (string.IsNullOrEmpty(record.Tag) && string.IsNullOrEmpty(record.SubTag)) - || record.Description.Count == 0 - ? throw new InvalidDataException("Invalid data found in RFC 5646 record") - : new Rfc5646Record - { - Type = record.Type, - SubTag = record.SubTag, - Description = [.. record.Description], - Added = record.Added, - SuppressScript = record.SuppressScript, - Scope = record.Scope, - MacroLanguage = record.MacroLanguage, - Deprecated = record.Deprecated, - Comments = [.. record.Comments], - Prefix = [.. record.Prefix], - PreferredValue = record.PreferredValue, - Tag = record.Tag, - }; - } - - public DateOnly GetFileDate() - { - // First attribute is the date - KeyValuePair pair = _attributeList.First(); - return !pair.Key.Equals("File-Date", StringComparison.Ordinal) - ? throw new InvalidDataException( - $"Invalid data found in RFC 5646 record: {pair.Key}" - ) - : DateFromString(pair.Value); - } - - private static DateOnly DateFromString(string value) => - DateOnly.ParseExact(value, "yyyy-MM-dd", CultureInfo.InvariantCulture); - } - - private static Rfc5646Record.RecordType TypeFromString(string value) => - value.ToUpperInvariant() switch - { - "LANGUAGE" => Rfc5646Record.RecordType.Language, - "EXTLANG" => Rfc5646Record.RecordType.ExtLanguage, - "SCRIPT" => Rfc5646Record.RecordType.Script, - "VARIANT" => Rfc5646Record.RecordType.Variant, - "GRANDFATHERED" => Rfc5646Record.RecordType.Grandfathered, - "REGION" => Rfc5646Record.RecordType.Region, - "REDUNDANT" => Rfc5646Record.RecordType.Redundant, - _ => throw new InvalidDataException($"Invalid data found in RFC 5646 record: {value}"), - }; - - private static Rfc5646Record.RecordScope ScopeFromString(string value) => - value.ToUpperInvariant() switch - { - "MACROLANGUAGE" => Rfc5646Record.RecordScope.MacroLanguage, - "COLLECTION" => Rfc5646Record.RecordScope.Collection, - "SPECIAL" => Rfc5646Record.RecordScope.Special, - "PRIVATE-USE" => Rfc5646Record.RecordScope.PrivateUse, - _ => throw new InvalidDataException($"Invalid data found in RFC 5646 record: {value}"), - }; - - /// - /// Finds a language subtag record by tag, subtag, preferred value, or description. - /// - /// - /// Matching is case-insensitive and checks Tag, SubTag, PreferredValue, then (optionally) Description. - /// Null or empty values return null. - /// - /// The language tag, subtag, or description to search for. - /// If true, searches in the description field; otherwise, only searches tags and subtags. - /// The matching or null if not found. - public Rfc5646Record? Find(string languageTag, bool includeDescription) - { - if (string.IsNullOrEmpty(languageTag)) - { - Log.LogFindRecordNotFound(nameof(Rfc5646Data), languageTag, includeDescription); - return null; - } - - // Find the matching language entry - Rfc5646Record? record = null; - - // Tag - record = RecordList.FirstOrDefault(item => - !string.IsNullOrEmpty(item.Tag) - && item.Tag.Equals(languageTag, StringComparison.OrdinalIgnoreCase) - ); - if (record != null) - { - Log.LogFindRecordFound(nameof(Rfc5646Data), languageTag, includeDescription); - return record; - } - - // SubTag - record = RecordList.FirstOrDefault(item => - !string.IsNullOrEmpty(item.SubTag) - && item.SubTag.Equals(languageTag, StringComparison.OrdinalIgnoreCase) - ); - if (record != null) - { - Log.LogFindRecordFound(nameof(Rfc5646Data), languageTag, includeDescription); - return record; - } - - // PreferredValue - record = RecordList.FirstOrDefault(item => - !string.IsNullOrEmpty(item.PreferredValue) - && item.PreferredValue.Equals(languageTag, StringComparison.OrdinalIgnoreCase) - ); - if (record != null) - { - Log.LogFindRecordFound(nameof(Rfc5646Data), languageTag, includeDescription); - return record; - } - - // Description - if (includeDescription) - { - // Exact match - record = RecordList.FirstOrDefault(item => - item.Description.Any(description => - description.Equals(languageTag, StringComparison.OrdinalIgnoreCase) - ) - ); - if (record != null) - { - Log.LogFindRecordFound(nameof(Rfc5646Data), languageTag, includeDescription); - return record; - } - - // Partial match - record = RecordList.FirstOrDefault(item => - item.Description.Any(description => - description.Contains(languageTag, StringComparison.OrdinalIgnoreCase) - ) - ); - if (record != null) - { - Log.LogFindRecordFound(nameof(Rfc5646Data), languageTag, includeDescription); - return record; - } - } - - // Not found - Log.LogFindRecordNotFound(nameof(Rfc5646Data), languageTag, includeDescription); - return null; - } -} - -/// -/// Represents a record from the RFC 5646 / BCP 47 language subtag registry. -/// -public sealed record Rfc5646Record -{ - /// - /// Defines the type of language subtag record. - /// - public enum RecordType - { - /// No type specified. - None, - - /// Primary language subtag. - Language, - - /// Extended language subtag. - ExtLanguage, - - /// Script subtag (ISO 15924). - Script, - - /// Variant subtag. - Variant, - - /// Grandfathered tag. - Grandfathered, - - /// Region subtag (ISO 3166-1 or UN M.49). - Region, - - /// Redundant tag. - Redundant, - } - - /// - /// Defines the scope of a language subtag. - /// - public enum RecordScope - { - /// No scope specified. - None, - - /// Macrolanguage scope. - MacroLanguage, - - /// Collection scope. - Collection, - - /// Special scope. - Special, - - /// Private use scope. - PrivateUse, - } - - /// - /// Gets the type of this record (Language, Script, Region, etc.). - /// - [JsonConverter(typeof(JsonStringEnumConverter))] - public RecordType Type { get; init; } - - /// - /// Gets the complete tag for grandfathered or redundant entries. - /// - public string? Tag { get; init; } - - /// - /// Gets the subtag value (for language, script, region, variant, or extended language). - /// - public string? SubTag { get; init; } - - /// - /// Gets the human-readable description(s) of this subtag. - /// - public ImmutableArray Description { get; init; } - - /// - /// Gets the date this subtag was added to the registry. - /// - public DateOnly? Added { get; init; } - - /// - /// Gets the script that should be suppressed when used with this language. - /// - public string? SuppressScript { get; init; } - - /// - /// Gets the scope of this subtag (macrolanguage, collection, special, or private use). - /// - [JsonConverter(typeof(JsonStringEnumConverter))] - public RecordScope Scope { get; init; } - - /// - /// Gets the macrolanguage this subtag belongs to. - /// - public string? MacroLanguage { get; init; } - - /// - /// Gets the date this subtag was deprecated (if applicable). - /// - public DateOnly? Deprecated { get; init; } - - /// - /// Gets additional comments about this subtag. - /// - public ImmutableArray Comments { get; init; } - - /// - /// Gets the prefix values that constrain where this subtag can be used. - /// - public ImmutableArray Prefix { get; init; } - - /// - /// Gets the preferred value to use instead of this subtag (for deprecated tags). - /// - public string? PreferredValue { get; init; } - - /// - /// Gets either the Tag or SubTag value, whichever is set. - /// - [JsonIgnore] - public string TagValue => string.IsNullOrEmpty(SubTag) ? Tag! : SubTag!; -} diff --git a/LanguageTags/Rfc5646DataGen.cs b/LanguageTags/Rfc5646DataGen.cs deleted file mode 100644 index b9d0999..0000000 --- a/LanguageTags/Rfc5646DataGen.cs +++ /dev/null @@ -1,139839 +0,0 @@ -namespace ptr727.LanguageTags; - -/// -/// Provides access to RFC 5646 / BCP 47 language subtag registry data. -/// -[System.CodeDom.Compiler.GeneratedCode("ptr727.LanguageTags.Rfc5646Data", "1.0")] -public sealed partial class Rfc5646Data -{ - /// - /// Creates an instance loaded from the embedded RFC 5646 subtag registry dataset. - /// - /// The populated instance. - public static Rfc5646Data Create() => - new() - { - FileDate = new DateOnly(2026, 6, 14), - RecordList = - [ - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aa", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Afar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ab", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Cyrl", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Abkhazian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ae", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Avestan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "af", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Afrikaans"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ak", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Akan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "am", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Ethi", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Amharic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "an", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aragonese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ar", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Arab", - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Arabic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "as", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Beng", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Assamese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "av", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Avaric"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ay", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aymara"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "az", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Azerbaijani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ba", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bashkir"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "be", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Cyrl", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Belarusian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bg", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Cyrl", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bulgarian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bh", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = new DateOnly(2026, 6, 14), - PreferredValue = "bih", - Tag = null, - Description = [@"Bihari languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bi", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bislama"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bm", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bambara"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bn", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Beng", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bengali", @"Bangla"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bo", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tibetan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "br", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Breton"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bs", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "sh", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bosnian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ca", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Catalan", @"Valencian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ce", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chechen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ch", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chamorro"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "co", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Corsican"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cr", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cree"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cs", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Czech"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cu", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = - [ - @"Church Slavic", - @"Church Slavonic", - @"Old Bulgarian", - @"Old Church Slavonic", - @"Old Slavonic", - ], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cv", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chuvash"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cy", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Welsh"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "da", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Danish"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "de", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"German"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dv", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Thaa", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dhivehi", @"Divehi", @"Maldivian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dz", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Tibt", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dzongkha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ee", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ewe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "el", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Grek", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Modern Greek (1453-)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "en", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"English"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "eo", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Esperanto"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "es", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Spanish", @"Castilian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "et", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Estonian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "eu", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Basque"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fa", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Arab", - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Persian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ff", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Fulah"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fi", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Finnish"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fj", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Fijian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fo", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Faroese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fr", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"French"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fy", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Frisian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ga", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Irish"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gd", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Scottish Gaelic", @"Gaelic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gl", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Galician"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gn", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guarani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gu", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Gujr", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gujarati"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gv", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Manx"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ha", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hausa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "he", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Hebr", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hebrew"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hi", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Deva", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hindi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ho", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hiri Motu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hr", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "sh", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Croatian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ht", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Haitian", @"Haitian Creole"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hu", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hungarian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hy", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Armn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Armenian"], - Comments = [@"see also hyw"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hz", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Herero"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ia", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = - [ - @"Interlingua (IALA)", - @"Interlingua (International Auxiliary Language Association)", - ], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "id", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Indonesian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ie", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Interlingue", @"Occidental"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ig", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Igbo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ii", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sichuan Yi", @"Nuosu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ik", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Inupiaq"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "in", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = new DateOnly(1989, 1, 1), - PreferredValue = "id", - Tag = null, - Description = [@"Indonesian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "io", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ido"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "is", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Icelandic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "it", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Italian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "iu", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Inuktitut"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "iw", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Hebr", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(1989, 1, 1), - PreferredValue = "he", - Tag = null, - Description = [@"Hebrew"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ja", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Jpan", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Japanese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ji", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(1989, 1, 1), - PreferredValue = "yi", - Tag = null, - Description = [@"Yiddish"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jv", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Javanese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jw", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2001, 8, 13), - PreferredValue = "jv", - Tag = null, - Description = [@"Javanese"], - Comments = [@"published by error in Table 1 of ISO 639:1988"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ka", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Geor", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Georgian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kg", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kongo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ki", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kikuyu", @"Gikuyu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kj", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kuanyama", @"Kwanyama"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kk", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Cyrl", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kazakh"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kl", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kalaallisut", @"Greenlandic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "km", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Khmr", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khmer", @"Central Khmer"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kn", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Knda", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kannada"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ko", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Kore", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Korean"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kr", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kanuri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ks", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kashmiri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ku", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kurdish"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kv", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Komi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kw", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cornish"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ky", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kirghiz", @"Kyrgyz"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "la", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Latin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lb", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Luxembourgish", @"Letzeburgesch"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lg", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ganda", @"Luganda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "li", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Limburgan", @"Limburger", @"Limburgish"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ln", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lingala"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lo", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Laoo", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lt", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lithuanian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lu", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Luba-Katanga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lv", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Latvian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mg", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Malagasy"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mh", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Marshallese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mi", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maori"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mk", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Cyrl", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Macedonian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ml", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Mlym", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Malayalam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mn", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mongolian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mo", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2008, 11, 22), - PreferredValue = "ro", - Tag = null, - Description = [@"Moldavian", @"Moldovan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mr", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Deva", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Marathi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ms", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Malay (macrolanguage)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mt", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maltese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "my", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Mymr", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Burmese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "na", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nauru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nb", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "no", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Norwegian Bokmål"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nd", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"North Ndebele"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ne", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Deva", - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nepali (macrolanguage)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ng", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ndonga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nl", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dutch", @"Flemish"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nn", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "no", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Norwegian Nynorsk"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "no", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Norwegian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nr", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"South Ndebele"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nv", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Navajo", @"Navaho"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ny", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chichewa", @"Chewa", @"Nyanja"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "oc", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Occitan (post 1500)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "oj", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ojibwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "om", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Oromo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "or", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Orya", - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Oriya (macrolanguage)", @"Odia (macrolanguage)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "os", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = - [ - @"Iron Ossetic", - @"Iron", - @"Iron Ossetian", - @"Ossetian", - @"Ossetic", - ], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pa", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Guru", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Panjabi", @"Punjabi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pi", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pl", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Polish"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ps", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Arab", - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pushto", @"Pashto"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pt", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Portuguese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qu", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Quechua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rm", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Romansh"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rn", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rundi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ro", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Romanian", @"Moldavian", @"Moldovan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ru", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Cyrl", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Russian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rw", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kinyarwanda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sa", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sanskrit"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sc", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sardinian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sd", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sindhi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "se", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Sami"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sg", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sango"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sh", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Serbo-Croatian"], - Comments = [@"sr, hr, bs are preferred for most modern uses"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "si", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Sinh", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sinhala", @"Sinhalese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sk", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Slovak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sl", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Slovenian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sm", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Samoan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sn", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shona"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "so", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Somali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sq", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Albanian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sr", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "sh", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Serbian"], - Comments = [@"see cnr for Montenegrin"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ss", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Swati"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "st", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Sotho"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "su", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sundanese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sv", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Swedish"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sw", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Swahili (macrolanguage)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ta", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Taml", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tamil"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "te", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Telu", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Telugu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tg", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tajik"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "th", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Thai", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Thai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ti", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Ethi", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tigrinya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tk", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Turkmen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tl", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tagalog"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tn", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tswana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "to", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tonga (Tonga Islands)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tr", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Turkish"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ts", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tsonga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tt", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tatar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tw", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ak", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Twi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ty", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tahitian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ug", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Uighur", @"Uyghur"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "uk", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Cyrl", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ukrainian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ur", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Arab", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Urdu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "uz", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Uzbek"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ve", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Venda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vi", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vietnamese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vo", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Volapük"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wa", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Walloon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wo", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wolof"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xh", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Xhosa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yi", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Hebr", - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yiddish"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yo", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yoruba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "za", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zhuang", @"Chuang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zh", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chinese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zu", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zulu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aaa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ghotuo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aab", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Alumu-Tesu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aac", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aad", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Amal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aae", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "sq", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Arbëreshë Albanian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aaf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aranadan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aag", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ambrak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aah", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Abu' Arapesh"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aai", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Arifama-Miniafia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aak", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ankave"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aal", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Afade"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aam", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2015, 2, 12), - PreferredValue = "aas", - Tag = null, - Description = [@"Aramanik"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aan", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Anambé"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aao", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Algerian Saharan Arabic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aap", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pará Arára"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aaq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Abnaki"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aas", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aasáx"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aat", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "sq", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Arvanitika Albanian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aau", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Abau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aav", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Austro-Asiatic languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aaw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Solong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aax", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mandobo Atas"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aaz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Amarasi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aba", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Abé"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "abb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bankon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "abc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ambala Ayta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "abd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Manide"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "abe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Abnaki"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "abf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Abai Sungai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "abg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Abaga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "abh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tajiki Arabic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "abi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Abidji"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "abj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aka-Bea"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "abl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lampung Nyo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "abm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Abanyom"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "abn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Abua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "abo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Abon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "abp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Abellen Ayta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "abq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Abaza"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "abr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Abron"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "abs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ambonese Malay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "abt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ambulas"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "abu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Abure"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "abv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Baharna Arabic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "abw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "abx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Inabaknon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aby", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aneme Wake"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "abz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Abui"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aca", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Achagua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "acb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Áncá"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "acd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gikyode"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ace", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Achinese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "acf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Saint Lucian Creole French"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ach", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Acoli"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aci", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aka-Cari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ack", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aka-Kora"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "acl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Akar-Bale"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "acm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mesopotamian Arabic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "acn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Achang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "acp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Acipa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "acq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ta'izzi-Adeni Arabic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "acr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Achi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "acs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Acroá"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "act", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Achterhoeks"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "acu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Achuar-Shiwiar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "acv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Achumawi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "acw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hijazi Arabic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "acx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Omani Arabic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "acy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cypriot Arabic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "acz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Acheron"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ada", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Adangme"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "adb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Atauran"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "add", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lidzonka", @"Dzodinka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ade", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Adele"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "adf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dhofari Arabic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "adg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Andegerebinha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "adh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Adhola"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "adi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Adi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "adj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Adioukrou"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "adl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Galo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "adn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Adang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ado", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Abu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "adp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2015, 2, 12), - PreferredValue = "dz", - Tag = null, - Description = [@"Adap"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "adq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Adangbe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "adr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Adonara"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ads", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Adamorobe Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "adt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Adnyamathanha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "adu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aduge"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "adw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Amundava"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "adx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Amdo Tibetan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ady", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Adyghe", @"Adygei"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "adz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Adzera"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aea", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Areba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aeb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tunisian Arabic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aec", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Saidi Arabic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aed", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Argentine Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aee", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northeast Pashai", @"Northeast Pashayi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aek", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Haeke"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ael", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ambele"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aem", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Arem"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aen", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Armenian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aeq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aer"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aer", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Arrernte"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aes", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Alsea"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aeu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Akeu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aew", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ambakich"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aey", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Amele"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aez", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aeka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "afa", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Afro-Asiatic languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "afb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gulf Arabic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "afd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Andai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "afe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Putukwam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "afg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Afghan Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "afh", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Afrihili"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "afi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Akrukay", @"Chini"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "afk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nanubae"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "afn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Defaka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "afo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eloyi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "afp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tapei"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "afs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Afro-Seminole Creole"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aft", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Afitti"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "afu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Awutu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "afz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Obokuitai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aga", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aguano"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "agb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Legbo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "agc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Agatu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "agd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Agarabi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "age", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Angal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "agf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Arguni"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "agg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Angor"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "agh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngelima"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "agi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Agariya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "agj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Argobba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "agk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Isarog Agta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "agl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Fembe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "agm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Angaataha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "agn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Agutaynen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ago", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tainae"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "agp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2010, 3, 11), - PreferredValue = null, - Tag = null, - Description = [@"Paranan"], - Comments = [@"see apf, prf"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "agq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aghem"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "agr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aguaruna"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ags", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Esimbi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "agt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central Cagayan Agta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "agu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aguacateco"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "agv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Remontado Dumagat"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "agw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kahua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "agx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aghul"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "agy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Alta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "agz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mt. Iriga Agta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aha", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ahanta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ahb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Axamb"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ahg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Qimant"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ahh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aghu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ahi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tiagbamrin Aizi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ahk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Akha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ahl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Igo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ahm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mobumrin Aizi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ahn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Àhàn"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aho", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ahom"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ahp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aproumu Aizi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ahr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ahirani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ahs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ashe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aht", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ahtena"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aia", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Arosi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aib", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ainu (China)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aic", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ainbai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aid", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Alngith"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aie", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Amara"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aif", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Agi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aig", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Antigua and Barbuda Creole English"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aih", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ai-Cham"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aii", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "syr", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Assyrian Neo-Aramaic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aij", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lishanid Noshan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aik", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ake"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ail", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aimele"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aim", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aimol"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ain", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ainu (Japan)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aio", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aiton"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aip", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Burumakok"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aiq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aimaq"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "air", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Airoran"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ais", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2019, 4, 16), - PreferredValue = null, - Tag = null, - Description = [@"Nataoran Amis"], - Comments = [@"see ami, szy"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ait", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Arikem"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aiw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aix", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aighon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aiy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aja", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aja (South Sudan)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ajg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aja (Benin)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aji", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ajië"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ajn", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Andajin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ajp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = new DateOnly(2023, 3, 17), - PreferredValue = "apc", - Tag = null, - Description = [@"South Levantine Arabic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ajs", - Added = new DateOnly(2022, 2, 25), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Algerian Jewish Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ajt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "jrb", - Deprecated = new DateOnly(2022, 2, 25), - PreferredValue = "aeb", - Tag = null, - Description = [@"Judeo-Tunisian Arabic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aju", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "jrb", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Judeo-Moroccan Arabic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ajw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ajawa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ajz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Amri Karbi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "akb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Batak Angkola"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "akc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mpur"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "akd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ukpet-Ehom"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ake", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Akawaio"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "akf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Akpa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "akg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Anakalangu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "akh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Angal Heneng"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aki", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aiome"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "akj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aka-Jeru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "akk", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Akkadian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "akl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aklanon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "akm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aka-Bo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ako", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Akurio"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "akp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Siwu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "akq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "akr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Araki"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aks", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Akaselem"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "akt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Akolet"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aku", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Akum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "akv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Akhvakh"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "akw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Akwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "akx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aka-Kede"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aky", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aka-Kol"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "akz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Alabama"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ala", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Alago"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "alc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Qawasqar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ald", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Alladian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ale", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aleut"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "alf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Alege"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "alg", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Algonquian languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "alh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Alawa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ali", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Amaimon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "alj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Alangan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "alk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Alak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "all", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Allar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "alm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Amblong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aln", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "sq", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gheg Albanian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "alo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Larike-Wakasihu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "alp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Alune"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "alq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Algonquin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "alr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Alutor"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "als", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "sq", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tosk Albanian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "alt", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Altai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "alu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"'Are'are"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "alv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Atlantic-Congo languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "alw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Alaba-K’abeena", @"Wanbasana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "alx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Amol"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aly", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Alyawarr"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "alz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Alur"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ama", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Amanayé"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "amb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ambo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "amc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Amahuaca"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ame", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yanesha'"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "amf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hamer-Banna"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "amg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Amurdak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ami", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Amis"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "amj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Amdang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "amk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ambai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aml", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"War-Jaintia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "amm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ama (Papua New Guinea)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "amn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Amanab"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "amo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Amo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "amp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Alamblak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "amq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Amahai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "amr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Amarakaeri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ams", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Amami-Oshima"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "amt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Amto"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "amu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guerrero Amuzgo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "amv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ambelau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "amw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Neo-Aramaic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "amx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Anmatyerre"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "amy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ami"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "amz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Atampaya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ana", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Andaqui"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "anb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Andoa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "anc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngas"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "and", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ansus"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ane", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Xârâcùù"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "anf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Animere"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ang", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old English (ca. 450-1100)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "anh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nend"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ani", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Andi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "anj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Anor"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ank", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Goemai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "anl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Anu-Hkongso Chin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "anm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Anal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ann", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Obolo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ano", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Andoque"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "anp", - Added = new DateOnly(2006, 3, 8), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Angika"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "anq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jarawa (India)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "anr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Andh"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ans", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Anserma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ant", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Antakarinya", @"Antikarinya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "anu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Anuak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "anv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Denya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "anw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Anaang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "anx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Andra-Hus"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "any", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Anyin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "anz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Anem"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aoa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Angolar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aob", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Abom"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aoc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pemon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aod", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Andarum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aoe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Angal Enen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aof", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bragat"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aog", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Angoram"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aoh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2020, 3, 28), - PreferredValue = null, - Tag = null, - Description = [@"Arma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aoi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Anindilyakwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aoj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mufian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aok", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Arhö"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aol", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Alor"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aom", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ömie"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aon", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bumbita Arapesh"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aor", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aore"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aos", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Taikat"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aot", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Atong (India)", @"A'tong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aou", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"A'ou"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aox", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Atorada"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aoz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Uab Meto"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "apa", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Apache languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "apb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sa'a"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "apc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Levantine Arabic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "apd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sudanese Arabic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ape", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bukiyip"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "apf", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pahanan Agta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "apg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ampanang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aph", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Athpariya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "api", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Apiaká"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "apj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jicarilla Apache"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "apk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kiowa Apache"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "apl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lipan Apache"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "apm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mescalero-Chiricahua Apache"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "apn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Apinayé"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "apo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ambul"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "app", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Apma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "apq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"A-Pucikwar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "apr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Arop-Lokep"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aps", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Arop-Sissano"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "apt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Apatani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "apu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Apurinã"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "apv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Alapmunte"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "apw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Apache"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "apx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aputai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "apy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Apalaí"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "apz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Safeyoka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aqa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Alacalufan languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aqc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Archi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aqd", - Added = new DateOnly(2011, 8, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ampari Dogon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aqg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Arigidi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aqk", - Added = new DateOnly(2021, 2, 20), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aninka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aql", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Algic languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aqm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Atohwaim"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aqn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Alta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aqp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Atakapa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aqr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Arhâ"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aqt", - Added = new DateOnly(2014, 2, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Angaité"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aqz", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Akuntsu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "arb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Standard Arabic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "arc", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = - [ - @"Official Aramaic (700-300 BCE)", - @"Imperial Aramaic (700-300 BCE)", - ], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ard", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Arabana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "are", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Arrarnta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "arh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Arhuaco"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ari", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Arikara"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "arj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Arapaso"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ark", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Arikapú"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "arl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Arabela"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "arn", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mapudungun", @"Mapuche"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aro", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Araona"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "arp", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Arapaho"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "arq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Algerian Arabic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "arr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Karo (Brazil)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ars", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Najdi Arabic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "art", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Artificial languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aru", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aruá (Amazonas State)", @"Arawá"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "arv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Arbore"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "arw", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Arawak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "arx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aruá (Rodonia State)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ary", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Moroccan Arabic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "arz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Egyptian Arabic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "asa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Asu (Tanzania)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "asb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Assiniboine", @"Nakoda Assiniboine"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "asc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Casuarina Coast Asmat"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "asd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2019, 4, 16), - PreferredValue = "snz", - Tag = null, - Description = [@"Asas"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ase", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"American Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "asf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Auslan", @"Australian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "asg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cishingini"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ash", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Abishira"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "asi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Buruwai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "asj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ask", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ashkun"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "asl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Asilulu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "asn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Xingú Asuriní"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aso", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dano"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "asp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Algerian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "asq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Austrian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "asr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Asuri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ass", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ipulo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ast", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Asturian", @"Asturleonese", @"Bable", @"Leonese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "asu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tocantins Asurini"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "asv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Asoa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "asw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Australian Aborigines Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "asx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Muratayak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "asy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yaosakor Asmat"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "asz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"As"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ata", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pele-Ata"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "atb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zaiwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "atc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Atsahuaca"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "atd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ata Manobo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ate", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Atemble"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "atg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ivbie North-Okpela-Arhe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ath", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Athapascan languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ati", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Attié"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "atj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Atikamekw", @"Nehirowimowin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "atk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ati"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "atl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mt. Iraya Agta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "atm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ata"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "atn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ashtiani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ato", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Atong (Cameroon)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "atp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pudtol Atta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "atq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aralle-Tabulahan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "atr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Waimiri-Atroari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ats", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gros Ventre"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "att", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pamplona Atta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "atu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Reel"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "atv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Altai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "atw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Atsugewi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "atx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Arutani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aty", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aneityum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "atz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Arta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aua", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Asumboa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aub", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Alugu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "auc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Waorani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aud", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Anuta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aue", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2015, 2, 12), - PreferredValue = "ktz", - Tag = null, - Description = [@"ǂKxʼauǁʼein"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "auf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Arauan languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aug", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aguna"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "auh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aushi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aui", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Anuki"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "auj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Awjilah"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "auk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Heyo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aul", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aulua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aum", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Asu (Nigeria)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aun", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Molmo One"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "auo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Auyokawa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aup", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Makayam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "auq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Anus", @"Korur"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aur", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aruek"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aus", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Australian languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aut", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Austral"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "auu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Auye"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "auw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Awyi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aux", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aurá"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "auy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Awiyaana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "auz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Uzbeki Arabic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "avb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Avau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "avd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Alviri-Vidari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "avi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Avikam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "avk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kotava"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "avl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Egyptian Bedawi Arabic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "avm", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Angkamuthi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "avn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Avatime"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "avo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Agavotaguerra"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "avs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aushiri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "avt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Au"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "avu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Avokaya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "avv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Avá-Canoeiro"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "awa", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Awadhi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "awb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Awa (Papua New Guinea)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "awc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cicipu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "awd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Arawakan languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "awe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Awetí"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "awg", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Anguthimri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "awh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Awbono"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "awi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aekyom"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "awk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Awabakal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "awm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Arawum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "awn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Awngi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "awo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Awak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "awr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Awera"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aws", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"South Awyu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "awt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Araweté"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "awu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central Awyu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "awv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jair Awyu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aww", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Awun"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "awx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Awara"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "awy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Edera Awyu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "axb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Abipon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "axe", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ayerrerenge"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "axg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mato Grosso Arára"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "axk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yaka (Central African Republic)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "axl", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lower Southern Aranda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "axm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Middle Armenian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "axx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Xârâgurè"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aya", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Awar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ayb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ayizo Gbe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ayc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ay", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Aymara"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ayd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ayabadhu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aye", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ayere"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ayg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ginyanga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ayh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hadrami Arabic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ayi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Leyigha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ayk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Akuku"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ayl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Libyan Arabic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ayn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sanaani Arabic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ayo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ayoreo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ayp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"North Mesopotamian Arabic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ayq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ayi (Papua New Guinea)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ayr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ay", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central Aymara"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ays", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sorsogon Ayta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ayt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Magbukun Ayta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ayu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ayu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ayx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2011, 8, 16), - PreferredValue = "nun", - Tag = null, - Description = [@"Ayi (China)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ayy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2020, 3, 28), - PreferredValue = null, - Tag = null, - Description = [@"Tayabas Ayta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ayz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mai Brat"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "aza", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Azha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "azb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "az", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"South Azerbaijani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "azc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Uto-Aztecan languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "azd", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Durango Nahuatl"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "azg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"San Pedro Amuzgos Amuzgo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "azj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "az", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"North Azerbaijani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "azm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ipalapa Amuzgo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "azn", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Durango Nahuatl"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "azo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Awing"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "azt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Faire Atta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "azz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Highland Puebla Nahuatl"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "baa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Babatana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bab", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bainouk-Gunyuño"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bac", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Badui"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bad", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Banda languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bae", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Baré"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "baf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nubaca"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bag", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tuki"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bah", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bahamas Creole English"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bai", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bamileke languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "baj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Barakai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bal", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Baluchi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ban", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Balinese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bao", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Waimaha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bap", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bantawa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bar", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bavarian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bas", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Basa (Cameroon)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bat", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Baltic languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bau", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bada (Nigeria)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bav", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vengo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "baw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bambili-Bambui"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bax", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bamun"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bay", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Batuley"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "baz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2012, 8, 12), - PreferredValue = null, - Tag = null, - Description = [@"Tunen"], - Comments = [@"see nvo, tvu"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bba", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Baatonum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bbb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Barai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bbc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Batak Toba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bbd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bbe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bangba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bbf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Baibai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bbg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Barama"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bbh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bugan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bbi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Barombi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bbj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ghomálá'"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bbk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Babanki"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bbl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bats"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bbm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Babango"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bbn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Uneapa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bbo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Bobo Madaré", @"Konabéré"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bbp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"West Central Banda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bbq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bamali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bbr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Girawa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bbs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bakpinka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bbt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mburku"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bbu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kulung (Nigeria)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bbv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Karnai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bbw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Baba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bbx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bubia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bby", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Befang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bbz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = new DateOnly(2020, 3, 28), - PreferredValue = null, - Tag = null, - Description = [@"Babalia Creole Arabic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bca", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central Bai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bcb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bainouk-Samik"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bcc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "bal", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Balochi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bcd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"North Babar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bce", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bamenyam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bcf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bamu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bcg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Baga Pokur"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bch", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bariai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bci", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Baoulé"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bcj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bardi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bck", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bunuba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bcl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "bik", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central Bikol"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bcm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bannoni"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bcn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bali (Nigeria)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bco", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kaluli"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bcp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bali (Democratic Republic of Congo)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bcq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bench"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bcr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Babine"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bcs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kohumono"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bct", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bendi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bcu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Awad Bing"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bcv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shoo-Minda-Nye"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bcw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bcy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bacama"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bcz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bainouk-Gunyaamolo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bda", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bayot"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bdb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Basap"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bdc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Emberá-Baudó"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bdd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bunama"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bde", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bade"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bdf", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Biage"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bdg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bonggi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bdh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Baka (South Sudan)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bdi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Burun"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bdj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bai (South Sudan)", @"Bai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bdk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Budukh"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bdl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Indonesian Bajau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bdm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Buduma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bdn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Baldemu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bdo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Morom"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bdp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bende"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bdq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bahnar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bdr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"West Coast Bajau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bds", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Burunge"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bdt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "gba", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bokoto"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bdu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Oroko"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bdv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bodo Parja"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bdw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Baham"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bdx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Budong-Budong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bdy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bandjalang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bdz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Badeshi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bea", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Beaver"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "beb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bebele"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bec", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Iceve-Maci"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bed", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bedoanas"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bee", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Byangsi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bef", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Benabena"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "beg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Belait"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "beh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Biali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bei", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bekati'"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bej", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Beja", @"Bedawiyet"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bek", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bebeli"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bem", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bemba (Zambia)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "beo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Beami"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bep", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Besoa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "beq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Beembe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ber", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Berber languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bes", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Besme"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bet", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guiberoua Béte"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "beu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Blagar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bev", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Daloa Bété"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bew", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Betawi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bex", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jur Modo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bey", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Beli (Papua New Guinea)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bez", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bena (Tanzania)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bfa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bfb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pauri Bareli"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bfc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Panyi Bai", @"Northern Bai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bfd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bafut"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bfe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Betaf", @"Tena"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bff", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bofi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bfg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Busang Kayan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bfh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Blafe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bfi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"British Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bfj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bafanji"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bfk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ban Khor Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bfl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Banda-Ndélé"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bfm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mmen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bfn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bunak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bfo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Malba Birifor"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bfp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Beba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bfq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Badaga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bfr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bazigar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bfs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Bai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bft", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Balti"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bfu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gahri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bfw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bondo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bfx", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bantayanon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bfy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bagheli"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bfz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mahasu Pahari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bga", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gwamhi-Wuri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bgb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bobongko"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bgc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Haryanvi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bgd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rathwi Bareli"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bge", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bauria"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bgf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bangandu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bgg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bugun"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bgi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Giangan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bgj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bangolan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bgk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bit", @"Buxinhua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bgl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bo (Laos)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bgm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2016, 5, 30), - PreferredValue = "bcg", - Tag = null, - Description = [@"Baga Mboteni"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bgn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "bal", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Balochi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bgo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Baga Koga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bgp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "bal", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Balochi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bgq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "raj", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bagri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bgr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bawm Chin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bgs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tagabawa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bgt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bughotu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bgu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mbongno"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bgv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Warkay-Bipim"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bgw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bhatri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bgx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Balkan Gagauz Turkish"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bgy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Benggoi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bgz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Banggai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bha", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bharia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bhb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bhili"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bhc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Biga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bhd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bhadrawahi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bhe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bhaya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bhf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Odiai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bhg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Binandere"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bhh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bukharic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bhi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bhilali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bhj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bahing"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bhk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "bik", - Deprecated = new DateOnly(2010, 3, 11), - PreferredValue = null, - Tag = null, - Description = [@"Albay Bicolano"], - Comments = [@"see fbl, lbl, rbl, ubl"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bhl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bimin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bhm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bathari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bhn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bohtan Neo-Aramaic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bho", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bhojpuri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bhp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bima"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bhq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tukang Besi South"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bhr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "mg", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bara Malagasy"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bhs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Buwal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bht", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bhattiyali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bhu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bhunjia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bhv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bahau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bhw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Biak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bhx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bhalay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bhy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bhele"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bhz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bada (Indonesia)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bia", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Badimaya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bib", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bissa", @"Bisa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bic", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2021, 2, 20), - PreferredValue = "bir", - Tag = null, - Description = [@"Bikaru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bid", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bidiyo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bie", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bepour"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bif", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Biafada"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "big", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Biangai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bih", - Added = new DateOnly(2026, 6, 14), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bihari languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bij", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2021, 2, 20), - PreferredValue = null, - Tag = null, - Description = [@"Vaghat-Ya-Bijim-Legeri"], - Comments = [@"see dkg, jbm, tyy"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bik", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bikol"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bil", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bile"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bim", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bimoba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bin", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bini", @"Edo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bio", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bip", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bila"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "biq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bipi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bir", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bisorio"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bit", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Berinomo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "biu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Biete"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "biv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Birifor"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "biw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kol (Cameroon)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bix", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bijori"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "biy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Birhor"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "biz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Baloi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bja", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Budza"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bjb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Banggarla"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bjc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bariji"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bjd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2012, 8, 12), - PreferredValue = "drl", - Tag = null, - Description = [@"Bandjigali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bje", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Biao-Jiao Mien"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bjf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Barzani Jewish Neo-Aramaic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bjg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bidyogo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bjh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bahinemo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bji", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Burji"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bjj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kanauji"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bjk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Barok"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bjl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bulu (Papua New Guinea)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bjm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bajelani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bjn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Banjar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bjo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mid-Southern Banda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bjp", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Fanamaket"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bjq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "mg", - Deprecated = new DateOnly(2011, 8, 16), - PreferredValue = null, - Tag = null, - Description = [@"Southern Betsimisaraka Malagasy"], - Comments = [@"see bzc, tkg"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bjr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Binumarien"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bjs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bajan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bjt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Balanta-Ganja"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bju", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Busuu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bjv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bedjond"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bjw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bakwé"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bjx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Banao Itneg"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bjy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bayali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bjz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Baruga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bka", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kyak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bkb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2010, 3, 11), - PreferredValue = null, - Tag = null, - Description = [@"Finallig"], - Comments = [@"see ebk, obk"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bkc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Baka (Cameroon)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bkd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Binukid", @"Talaandig"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bkf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Beeke"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bkg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Buraka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bkh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bakoko"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bki", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Baki"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bkj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pande"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bkk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Brokskat"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bkl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Berik"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bkm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kom (Cameroon)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bkn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bukitan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bko", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kwa'"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bkp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Boko (Democratic Republic of Congo)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bkq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bakairí"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bkr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bakumpai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bks", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Sorsoganon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bkt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Boloki"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bku", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Buhid"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bkv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bekwarra"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bkw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bekwel"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bkx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Baikeno"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bky", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bokyi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bkz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bungku"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bla", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Siksika"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "blb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bilua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "blc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bella Coola"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bld", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bolango"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ble", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Balanta-Kentohe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "blf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Buol"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "blg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2021, 2, 20), - PreferredValue = "iba", - Tag = null, - Description = [@"Balau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "blh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kuwaa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bli", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bolia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "blj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bolongan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "blk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pa'o Karen", @"Pa'O"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bll", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Biloxi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "blm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Beli (South Sudan)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bln", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "bik", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Catanduanes Bikol"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "blo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Anii"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "blp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Blablanga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "blq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Baluan-Pam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "blr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Blang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bls", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Balaesang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "blt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tai Dam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "blv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kibala", @"Bolo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "blw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Balangao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "blx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mag-Indi Ayta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bly", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Notre"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "blz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Balantak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bma", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lame"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bmb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bembe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bmc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Biem"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bmd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Baga Manduri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bme", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Limassa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bmf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bom-Kim"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bmg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bamwe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bmh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kein"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bmi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bagirmi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bmj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bote-Majhi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bmk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ghayavi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bml", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bomboli"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bmm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "mg", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Betsimisaraka Malagasy"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bmn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bina (Papua New Guinea)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bmo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bambalang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bmp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bulgebi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bmq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bomu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bmr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Muinane"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bms", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bilma Kanuri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bmt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Biao Mon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bmu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Somba-Siawari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bmv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bmw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bomwali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bmx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Baimak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bmy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2015, 2, 12), - PreferredValue = null, - Tag = null, - Description = [@"Bemba (Democratic Republic of Congo)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bmz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Baramu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bna", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bonerate"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bnb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bookan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bnc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bontok"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bnd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Banda (Indonesia)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bne", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bintauna"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bnf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Masiwang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bng", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Benga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bni", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bangi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bnj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Tawbuid"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bnk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bierebo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bnl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Boon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bnm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Batanga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bnn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bunun"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bno", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bantoanon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bnp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bola"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bnq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bantik"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bnr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Butmas-Tur"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bns", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bundeli"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bnt", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bantu languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bnu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bentong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bnv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bonerif", @"Beneraf", @"Edwas"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bnw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bisis"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bnx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bangubangu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bny", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bintulu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bnz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Beezen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "boa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bora"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bob", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aweer"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "boe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mundabli-Mufu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bof", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bolon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bog", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bamako Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "boh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Boma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "boi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Barbareño"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "boj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Anjam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bok", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bonjo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bol", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bole"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bom", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Berom"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bon", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bine"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "boo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tiemacèwè Bozo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bop", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bonkiman"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "boq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bogaya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bor", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Borôro"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bot", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bongo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bou", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bondei"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bov", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tuwuli"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bow", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rema"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "box", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Buamu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "boy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bodo (Central African Republic)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "boz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tiéyaxo Bozo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bpa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Daakaka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bpb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2020, 3, 28), - PreferredValue = null, - Tag = null, - Description = [@"Barbacoas"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bpc", - Added = new DateOnly(2022, 2, 25), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mbuk"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bpd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Banda-Banda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bpe", - Added = new DateOnly(2021, 2, 20), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bauni"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bpg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bonggo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bph", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Botlikh"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bpi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bagupi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bpj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Binji"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bpk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Orowe", @"'Ôrôê"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bpl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Broome Pearling Lugger Pidgin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bpm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Biyom"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bpn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dzao Min"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bpo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Anasi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bpp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kaure"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bpq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Banda Malay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bpr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koronadal Blaan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bps", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sarangani Blaan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bpt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Barrow Point"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bpu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bongu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bpv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bian Marind"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bpw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bo (Papua New Guinea)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bpx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Palya Bareli"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bpy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bishnupriya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bpz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bilba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bqa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tchumbuli"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bqb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bagusa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bqc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Boko (Benin)", @"Boo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bqd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bqf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Baga Kaloum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bqg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bago-Kusuntu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bqh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Baima"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bqi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bakhtiari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bqj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bandial"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bqk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Banda-Mbrès"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bql", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Karian", @"Bilakura"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bqm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wumboko"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bqn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bulgarian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bqo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Balo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bqp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Busa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bqq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Biritai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bqr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Burusu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bqs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bosngun"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bqt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bamukumbit"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bqu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Boguru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bqv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koro Wachi", @"Begbere-Ejar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bqw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Buru (Nigeria)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bqx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Baangi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bqy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bengkala Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bqz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bakaka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bra", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Braj"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "brb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Brao", @"Lave"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "brc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Berbice Creole Dutch"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "brd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Baraamu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "brf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bira"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "brg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Baure"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "brh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Brahui"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bri", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mokpwe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "brj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bieria"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "brk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Birked"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "brl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Birwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "brm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Barambu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "brn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Boruca"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bro", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Brokkat"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "brp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Barapasi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "brq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Breri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "brr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Birao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "brs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Baras"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "brt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bitare"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bru", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Bru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "brv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Bru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "brw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bellari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "brx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bodo (India)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bry", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Burui"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "brz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bilbil"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bsa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Abinomn"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bsb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Brunei Bisaya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bsc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bassari", @"Oniyan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bse", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wushi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bsf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bauchi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bsg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bashkardi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bsh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kati"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bsi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bassossi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bsj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bangwinji"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bsk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Burushaski"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bsl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Basa-Gumna"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bsm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Busami"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bsn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Barasana-Eduria"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bso", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Buso"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bsp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Baga Sitemu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bsq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bassa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bsr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bassa-Kontagora"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bss", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Akoose"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bst", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Basketo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bsu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bahonsuai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bsv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Baga Sobané"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bsw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Baiso"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bsx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yangkam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bsy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sabah Bisaya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bta", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bata"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "btb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2010, 3, 11), - PreferredValue = null, - Tag = null, - Description = [@"Beti (Cameroon)"], - Comments = [@"see beb, bum, bxp, eto, ewo, fan, mct"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "btc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bati (Cameroon)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "btd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Batak Dairi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bte", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gamo-Ningi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "btf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Birgit"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "btg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gagnoa Bété"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bth", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Biatah Bidayuh"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bti", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Burate"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "btj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bacanese Malay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "btk", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Batak languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "btl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2016, 5, 30), - PreferredValue = null, - Tag = null, - Description = [@"Bhatola"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "btm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Batak Mandailing"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "btn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ratagnon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bto", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "bik", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rinconada Bikol"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "btp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Budibud"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "btq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Batek"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "btr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Baetora"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bts", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Batak Simalungun"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "btt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bete-Bendi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "btu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Batu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "btv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bateri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "btw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Butuanon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "btx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Batak Karo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bty", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bobot"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "btz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Batak Alas-Kluet"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bua", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Buriat"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bub", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "buc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bushi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bud", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ntcham"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bue", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Beothuk"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "buf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bushoong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bug", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Buginese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "buh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Younuo Bunu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bui", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bongili"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "buj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Basa-Gurmana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "buk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bugawac"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bum", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bulu (Cameroon)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bun", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sherbro"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "buo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Terei"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bup", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Busoa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "buq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Brem"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bus", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bokobaru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "but", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bungain"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "buu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Budu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "buv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bun"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "buw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bubi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bux", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Boghom"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "buy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bullom So"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "buz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bukwen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bva", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Barein"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bvb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bube"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bvc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Baelelea"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bvd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Baeggu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bve", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Berau Malay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bvf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Boor"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bvg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bonkeng"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bvh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bure"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bvi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Belanda Viri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bvj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Baan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bvk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bukat"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bvl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bolivian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bvm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bamunka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bvn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Buna"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bvo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bolgo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bvp", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bumang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bvq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Birri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bvr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Burarra"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bvt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bati (Indonesia)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bvu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bukit Malay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bvv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Baniva"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bvw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Boga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bvx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dibole"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bvy", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Baybayanon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bvz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bauzi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bwa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bwatoo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bwb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Namosi-Naitasiri-Serua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bwc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bwile"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bwd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bwaidoka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bwe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bwe Karen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bwf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Boselewa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bwg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Barwe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bwh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bishuo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bwi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Baniwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bwj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Láá Láá Bwamu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bwk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bauwaki"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bwl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bwela"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bwm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Biwat"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bwn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wunai Bunu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bwo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Boro (Ethiopia)", @"Borna (Ethiopia)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bwp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mandobo Bawah"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bwq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Bobo Madaré"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bwr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bura-Pabir"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bws", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bomboma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bwt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bafaw-Balong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bwu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Buli (Ghana)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bww", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bwx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bu-Nao Bunu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bwy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cwi Bwamu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bwz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bwisi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bxa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tairaha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bxb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Belanda Bor"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bxc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Molengue"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bxd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pela"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bxe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Birale"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bxf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bilur", @"Minigir"], - Comments = [@"see also vmg"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bxg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bangala"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bxh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Buhutu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bxi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pirlatapa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bxj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bayungu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bxk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "luy", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bukusu", @"Lubukusu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bxl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jalkunan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bxm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "bua", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mongolia Buriat"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bxn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Burduna"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bxo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Barikanchi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bxp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bebil"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bxq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Beele"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bxr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "bua", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Russia Buriat"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bxs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Busam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bxu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "bua", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"China Buriat"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bxv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Berakou"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bxw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bankagooma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bxx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2015, 2, 12), - PreferredValue = null, - Tag = null, - Description = [@"Borna (Democratic Republic of Congo)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bxz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Binahari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bya", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Batak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "byb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bikya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "byc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ubaghara"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "byd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Benyadu'"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bye", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pouye"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "byf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bete"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "byg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Baygo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "byh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bhujel"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "byi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Buyu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "byj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bina (Nigeria)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "byk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Biao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "byl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bayono"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bym", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bidjara"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "byn", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bilin", @"Blin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "byo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Biyo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "byp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bumaji"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "byq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Basay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "byr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Baruya", @"Yipma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bys", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Burak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "byt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Berti"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "byv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Medumba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "byw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Belhariya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "byx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Qaqet"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "byy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2015, 2, 12), - PreferredValue = null, - Tag = null, - Description = [@"Buya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "byz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Banaro"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bza", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bandi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bzb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Andio"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bzc", - Added = new DateOnly(2011, 8, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "mg", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Betsimisaraka Malagasy"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bzd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bribri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bze", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jenaama Bozo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bzf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Boikin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bzg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Babuza"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bzh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mapos Buang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bzi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bisu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bzj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Belize Kriol English"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bzk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nicaragua Creole English"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bzl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Boano (Sulawesi)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bzm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bolondo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bzn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Boano (Maluku)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bzo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bozaba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bzp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kemberano"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bzq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Buli (Indonesia)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bzr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Biri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bzs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Brazilian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bzt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Brithenig"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bzu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Burmeso"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bzv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Naami"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bzw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Basa (Nigeria)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bzx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kɛlɛngaxo Bozo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bzy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Obanliku"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "bzz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Evant"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "caa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chortí"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cab", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Garifuna"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cac", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chuj"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cad", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Caddo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cae", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lehar", @"Laalaa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "caf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Carrier"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cag", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nivaclé"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cah", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cahuarano"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cai", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central American Indian languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "caj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chané"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cak", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kaqchikel", @"Cakchiquel"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cal", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Carolinian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cam", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cemuhî"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "can", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chambri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cao", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chácobo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cap", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chipaya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "caq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Car Nicobarese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "car", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Galibi Carib"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cas", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tsimané"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cau", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Caucasian languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cav", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cavineña"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "caw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Callawalla"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cax", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chiquitano"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cay", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cayuga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "caz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Canichana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cba", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chibchan languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cbb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cabiyarí"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cbc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Carapana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cbd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Carijona"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cbe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2016, 5, 30), - PreferredValue = null, - Tag = null, - Description = [@"Chipiajes"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cbg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chimila"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cbh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2016, 5, 30), - PreferredValue = null, - Tag = null, - Description = [@"Cagua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cbi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chachi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cbj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ede Cabe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cbk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chavacano"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cbl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bualkhaw Chin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cbn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyahkur"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cbo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Izora"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cbq", - Added = new DateOnly(2015, 2, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tsucuba", @"Cuba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cbr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cashibo-Cacataibo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cbs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cashinahua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cbt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chayahuita"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cbu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Candoshi-Shapra"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cbv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cacua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cbw", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kinabalian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cby", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Carabayo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cca", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2020, 3, 28), - PreferredValue = null, - Tag = null, - Description = [@"Cauca"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ccc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chamicuro"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ccd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cafundo Creole"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cce", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chopi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ccg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Samba Daka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cch", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Atsam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ccj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kasanga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ccl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cutchi-Swahili"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ccm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Malaccan Creole Malay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ccn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"North Caucasian languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cco", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Comaltepec Chinantec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ccp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chakma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ccq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2012, 8, 12), - PreferredValue = "rki", - Tag = null, - Description = [@"Chaungtha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ccr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cacaopera"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ccs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"South Caucasian languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cda", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Choni"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cdc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chadic languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cdd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Caddoan languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cde", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chenchu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cdf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chiru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cdg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2020, 3, 28), - PreferredValue = null, - Tag = null, - Description = [@"Chamari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cdh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chambeali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cdi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chodri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cdj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Churahi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cdm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chepang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cdn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chaudangsi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cdo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zh", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Min Dong Chinese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cdr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cinda-Regi-Tiyal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cds", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chadian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cdy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chadong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cdz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cea", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lower Chehalis"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ceb", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cebuano"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ceg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chamacoco"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cek", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Khumi Chin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cel", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Celtic languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cen", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cet", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Centúúm"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cey", - Added = new DateOnly(2019, 4, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ekai Chin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cfa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dijim-Bwilim"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cfd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cara"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cfg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Como Karim"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cfm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Falam Chin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cga", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Changriwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cgc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kagayanen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cgg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chiga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cgk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chocangacakha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "chb", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chibcha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "chc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Catawba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "chd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Highland Oaxaca Chontal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "chf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tabasco Chontal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "chg", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chagatai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "chh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chinook"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "chj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ojitlán Chinantec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "chk", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chuukese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "chl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cahuilla"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "chm", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mari (Russia)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "chn", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chinook jargon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cho", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Choctaw"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "chp", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chipewyan", @"Dene Suline"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "chq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Quiotepec Chinantec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "chr", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cherokee"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cht", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cholón"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "chw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chuwabu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "chx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chantyal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "chy", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cheyenne"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "chz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ozumacín Chinantec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cia", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cia-Cia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cib", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ci Gbe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cic", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chickasaw"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cid", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chimariko"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cie", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cineni"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cih", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chinali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cik", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chitkuli Kinnauri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cim", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cimbrian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cin", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cinta Larga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cip", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chiapanec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cir", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tiri", @"Haméa", @"Méa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ciw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "oj", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chippewa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ciy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chaima"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cja", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Cham"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cje", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cjh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Upper Chehalis"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cji", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chamalal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cjk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chokwe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cjm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Cham"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cjn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chenapian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cjo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ashéninka Pajonal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cjp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cabécar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cjr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2010, 3, 11), - PreferredValue = "mom", - Tag = null, - Description = [@"Chorotega"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cjs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shor"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cjv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chuave"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cjy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zh", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jinyu Chinese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cka", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2012, 8, 12), - PreferredValue = "cmr", - Tag = null, - Description = [@"Khumi Awa Chin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ckb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ku", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central Kurdish"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ckh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ckl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cibak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ckm", - Added = new DateOnly(2020, 3, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chakavian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ckn", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kaang Chin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cko", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Anufo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ckq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kajakse"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ckr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kairak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cks", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tayo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ckt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chukot"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cku", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koasati"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ckv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kavalan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ckx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Caka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cky", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cakfem-Mushere"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ckz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cakchiquel-Quiché Mixed Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cla", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ron"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "clc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chilcotin", @"Tsilhqot’in"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cld", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "syr", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chaldean Neo-Aramaic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cle", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lealao Chinantec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "clh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chilisso"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cli", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chakali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "clj", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Laitu Chin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "clk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Idu-Mishmi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cll", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chala"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "clm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Klallam", @"Clallam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "clo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lowland Oaxaca Chontal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cls", - Added = new DateOnly(2024, 3, 4), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "sa", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Classical Sanskrit"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "clt", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lautu Chin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "clu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Caluyanun"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "clw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chulym"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cly", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Highland Chatino"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cma", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cmc", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chamic languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cme", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cerma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cmg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Classical Mongolian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cmi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Emberá-Chamí"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cmk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2010, 3, 11), - PreferredValue = "xch", - Tag = null, - Description = [@"Chimakum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cml", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Campalagian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cmm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Michigamea"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cmn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zh", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mandarin Chinese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cmo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central Mnong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cmr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mro-Khimi Chin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cms", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Messapic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cmt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Camtho"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cna", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Changthang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cnb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chinbon Chin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cnc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Côông"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cng", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Qiang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cnh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hakha Chin", @"Haka Chin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cni", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Asháninka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cnk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khumi Chin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cnl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lalana Chinantec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cno", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Con"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cnp", - Added = new DateOnly(2020, 3, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zh", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Ping Chinese", @"Northern Pinghua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cnq", - Added = new DateOnly(2022, 2, 25), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cnr", - Added = new DateOnly(2018, 1, 23), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "sh", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Montenegrin"], - Comments = [@"see sr for Serbian"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cns", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central Asmat"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cnt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tepetotutla Chinantec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cnu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chenoua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cnw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngawn Chin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cnx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Middle Cornish"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "coa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cocos Islands Malay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cob", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chicomuceltec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "coc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cocopa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cod", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cocama-Cocamilla"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "coe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koreguaje"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cof", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Colorado"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cog", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "coh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chonyi-Dzihana-Kauma", @"Chichonyi-Chidzihana-Chikauma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "coj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cochimi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cok", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Santa Teresa Cora"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "col", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Columbia-Wenatchi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "com", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Comanche"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "con", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cofán"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "coo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Comox"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cop", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Coptic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "coq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Coquille"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cot", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Caquinte"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cou", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wamey"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cov", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cao Miao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cow", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cowlitz"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cox", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nanti"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "coy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2016, 5, 30), - PreferredValue = "pij", - Tag = null, - Description = [@"Coyaima"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "coz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chochotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cpa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Palantla Chinantec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cpb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ucayali-Yurúa Ashéninka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cpc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ajyíninka Apurucayali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cpe", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"English-based creoles and pidgins"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cpf", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"French-based creoles and pidgins"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cpg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cappadocian Greek"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cpi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chinese Pidgin English"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cpn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cherepon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cpo", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kpeego"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cpp", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Portuguese-based creoles and pidgins"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cps", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Capiznon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cpu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pichis Ashéninka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cpx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zh", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pu-Xian Chinese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cpy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"South Ucayali Ashéninka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cqd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "hmn", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chuanqiandian Cluster Miao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cqu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "qu", - Deprecated = new DateOnly(2016, 5, 30), - PreferredValue = "quh", - Tag = null, - Description = [@"Chilean Quechua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cra", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chara"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "crb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Island Carib"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "crc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lonwolwol"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "crd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Coeur d'Alene"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "crf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Caramanta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "crg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Michif"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "crh", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Crimean Tatar", @"Crimean Turkish"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cri", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sãotomense"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "crj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "cr", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern East Cree"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "crk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "cr", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Plains Cree"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "crl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "cr", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern East Cree"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "crm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "cr", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Moose Cree"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "crn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"El Nayar Cora"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cro", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Crow"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "crp", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Creoles and pidgins"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "crq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Iyo'wujwa Chorote"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "crr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Carolina Algonquian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "crs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Seselwa Creole French"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "crt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Iyojwa'ja Chorote"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "crv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chaura"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "crw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chrau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "crx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Carrier"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cry", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cori"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "crz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cruzeño"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "csa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chiltepec Chinantec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "csb", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kashubian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "csc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = - [ - @"Catalan Sign Language", - @"Lengua de señas catalana", - @"Llengua de Signes Catalana", - ], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "csd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chiangmai Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cse", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Czech Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "csf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cuba Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "csg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chilean Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "csh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Asho Chin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "csi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Coast Miwok"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "csj", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Songlai Chin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "csk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jola-Kasa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "csl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chinese Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "csm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central Sierra Miwok"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "csn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Colombian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cso", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sochiapam Chinantec", @"Sochiapan Chinantec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "csp", - Added = new DateOnly(2020, 3, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zh", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Ping Chinese", @"Southern Pinghua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "csq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Croatia Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "csr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Costa Rican Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "css", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Ohlone"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cst", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Ohlone"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "csu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central Sudanic languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "csv", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sumtu Chin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "csw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "cr", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Swampy Cree"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "csx", - Added = new DateOnly(2021, 2, 20), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cambodian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "csy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Siyin Chin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "csz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Coos"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cta", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tataltepec Chatino"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ctc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chetco"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ctd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tedim Chin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cte", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tepinapa Chinantec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ctg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chittagonian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cth", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Thaiphum Chin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ctl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tlacoatzintepec Chinantec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ctm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chitimacha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ctn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chhintange"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cto", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Emberá-Catío"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ctp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Highland Chatino"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cts", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "bik", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Catanduanes Bikol"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ctt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wayanad Chetti"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ctu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chol"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cty", - Added = new DateOnly(2021, 2, 20), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Moundadan Chetty"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ctz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zacatepec Chatino"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cua", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cub", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cubeo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cuc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Usila Chinantec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cug", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2022, 2, 25), - PreferredValue = null, - Tag = null, - Description = [@"Chungmboko", @"Cung"], - Comments = [@"see bpc, cnq"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cuh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chuka", @"Gichuka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cui", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cuiba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cuj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mashco Piro"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cuk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"San Blas Kuna"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cul", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Culina", @"Kulina"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cum", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2016, 5, 30), - PreferredValue = null, - Tag = null, - Description = [@"Cumeral"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cuo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cumanagoto"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cup", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cupeño"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cuq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cun"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cur", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chhulung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cus", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cushitic languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cut", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Teutila Cuicatec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cuu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tai Ya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cuv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cuvok"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cuw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chukwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cux", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tepeuxila Cuicatec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cuy", - Added = new DateOnly(2018, 3, 8), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cuitlatec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cvg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chug"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cvn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Valle Nacional Chinantec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cwa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kabwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cwb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maindo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cwd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "cr", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Woods Cree"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cwe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kwere"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cwg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chewong", @"Cheq Wong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cwt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kuwaataay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cxh", - Added = new DateOnly(2023, 3, 17), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cha'ari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cya", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nopala Chatino"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cyb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cayubaba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "cyo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cuyonon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "czh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zh", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Huizhou Chinese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "czk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Knaanic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "czn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zenzontepec Chatino"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "czo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zh", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Min Zhong Chinese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "czt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zotung Chin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "daa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dangaléat"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dac", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dambi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dad", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Marik"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dae", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Duupa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "daf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2013, 9, 10), - PreferredValue = null, - Tag = null, - Description = [@"Dan"], - Comments = [@"see dnj, lda"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dag", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dagbani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dah", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gwahatike"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dai", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Day"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "daj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dar Fur Daju"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dak", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dakota"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dal", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dahalo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dam", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Damakawa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dao", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Daai Chin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dap", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2012, 8, 12), - PreferredValue = null, - Tag = null, - Description = [@"Nisi (India)"], - Comments = [@"see njz, tgj"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "daq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dandami Maria"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dar", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dargwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "das", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Daho-Doo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dau", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dar Sila Daju"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dav", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Taita", @"Dawida"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "daw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Davawenyo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dax", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dayi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "day", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Land Dayak languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "daz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Moi-Wadea", @"Dao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dba", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bangime"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dbb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Deno"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dbd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dadiya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dbe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dabe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dbf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Edopi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dbg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dogul Dom Dogon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dbi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Doka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dbj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ida'an"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dbl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dyirbal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dbm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Duguri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dbn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Duriankere"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dbo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dulbu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dbp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Duwai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dbq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Daba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dbr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dabarre"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dbt", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ben Tey Dogon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dbu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bondum Dom Dogon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dbv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dungu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dbw", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bankan Tey Dogon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dby", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dibiyaso"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dcc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Deccan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dcr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Negerhollands"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dda", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dadi Dadi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ddd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dongotono"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dde", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Doondo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ddg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Fataluku"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ddi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"West Goodenough"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ddj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jaru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ddn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dendi (Benin)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ddo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dido"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ddr", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dhudhuroa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dds", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Donno So Dogon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ddw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dawera-Daweloor"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dec", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dagik"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ded", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dedua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dee", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dewoin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "def", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dezfuli"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "deg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Degema"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "deh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dehwari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dei", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Demisa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dek", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2024, 12, 12), - PreferredValue = "sqm", - Tag = null, - Description = [@"Dek"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "del", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Delaware"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dem", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dem"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "den", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Slavey"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dep", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pidgin Delaware"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "deq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dendi (Central African Republic)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "der", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Deori"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "des", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Desano"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dev", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Domung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dez", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dengese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dga", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Dagaare"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dgb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bunoge Dogon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dgc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Casiguran Dumagat Agta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dgd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dagaari Dioula"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dge", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Degenan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dgg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Doga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dgh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dghwede"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dgi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Dagara"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dgk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dagba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dgl", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Andaandi", @"Dongolawi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dgn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dagoman"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dgo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "doi", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dogri (individual language)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dgr", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tlicho", @"Dogrib", @"Tłı̨chǫ"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dgs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dogoso"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dgt", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ndra'ngith"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dgu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2020, 3, 28), - PreferredValue = null, - Tag = null, - Description = [@"Degaru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dgw", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Daungwurrung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dgx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Doghoro"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dgz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Daga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dha", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2011, 8, 16), - PreferredValue = null, - Tag = null, - Description = [@"Dhanwar (India)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dhd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "mwr", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dhundari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dhg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dhangu-Djangu", @"Dhangu", @"Djangu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dhi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dhimal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dhl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dhalandji"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dhm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zemba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dhn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dhanki"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dho", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dhodia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dhr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dhargari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dhs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dhaiso"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dhu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dhurga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dhv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dehu", @"Drehu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dhw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dhanwar (Nepal)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dhx", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dhungaloo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dia", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dib", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "din", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"South Central Dinka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dic", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lakota Dida"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "did", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Didinga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dif", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dieri", @"Diyari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dig", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Digo", @"Chidigo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dih", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kumiai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dii", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dimbong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dij", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dik", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "din", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southwestern Dinka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dil", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dilling"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dim", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dime"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "din", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dinka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dio", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dibo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dip", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "din", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northeastern Dinka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "diq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zza", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dimli (individual language)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dir", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dirim"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dis", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dimasa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dit", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2019, 4, 29), - PreferredValue = "dif", - Tag = null, - Description = [@"Dirari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "diu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Diriku"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "diw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "din", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northwestern Dinka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dix", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dixon Reef"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "diy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Diuwe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "diz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ding"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dja", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Djadjawurrung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "djb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Djinba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "djc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dar Daju Daju"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "djd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Djamindjung", @"Ngaliwurru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dje", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zarma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "djf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Djangun"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dji", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Djinang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "djj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Djeebbana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "djk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Maroon Creole", @"Businenge Tongo", @"Nenge"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "djl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2013, 9, 10), - PreferredValue = null, - Tag = null, - Description = [@"Djiwarli"], - Comments = [@"see dze, iin"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "djm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jamsay Dogon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "djn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jawoyn", @"Djauan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "djo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jangkang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "djr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Djambarrpuyngu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dju", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kapriman"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "djw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Djawi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dka", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dakpakha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dkg", - Added = new DateOnly(2021, 2, 20), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kadung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dkk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dakka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dkl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2011, 8, 16), - PreferredValue = null, - Tag = null, - Description = [@"Kolum So Dogon"], - Comments = [@"see aqd, dmb"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dkr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kuijau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dks", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "din", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southeastern Dinka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dkx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mazagway"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dlg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dolgan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dlk", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dahalik"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dlm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dalmatian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dln", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Darlong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dma", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Duma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dmb", - Added = new DateOnly(2011, 8, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mombo Dogon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dmc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gavak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dmd", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Madhi Madhi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dme", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dugwor"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dmf", - Added = new DateOnly(2020, 3, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Medefaidrin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dmg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Upper Kinabatangan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dmk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Domaaki"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dml", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dameli"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dmm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dama"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dmn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mande languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dmo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kemedzung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dmr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"East Damar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dms", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dampelas"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dmu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dubu", @"Tebi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dmv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dumpas"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dmw", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mudburra"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dmx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dema"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dmy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Demta", @"Sowari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dna", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Upper Grand Valley Dani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dnd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Daonda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dne", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ndendeule"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dng", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dungan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dni", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lower Grand Valley Dani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dnj", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dnk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dengka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dnn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dzùùngoo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dno", - Added = new DateOnly(2018, 10, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ndrulo", @"Northern Lendu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dnr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Danaru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dnt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mid Grand Valley Dani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dnu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Danau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dnv", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Danu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dnw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Dani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dny", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dení"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "doa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dom"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dob", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dobu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "doc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Dong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "doe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Doe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dof", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Domu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "doh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "doi", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dogri (macrolanguage)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dok", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dondo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dol", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Doso"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "don", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Toura (Papua New Guinea)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "doo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dongo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dop", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lukpa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "doq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dominican Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dor", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dori'o"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dos", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dogosé"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dot", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dass"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dov", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dombe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dow", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Doyayo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dox", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bussa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "doy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dompo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "doz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dorze"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dpp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Papar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dra", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dravidian languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "drb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dair"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "drc", - Added = new DateOnly(2011, 8, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Minderico"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "drd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Darmiya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dre", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dolpo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "drg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rungus"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "drh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2010, 3, 11), - PreferredValue = "khk", - Tag = null, - Description = [@"Darkhat"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dri", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"C'Lela"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "drl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Paakantyi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "drn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"West Damar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dro", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Daro-Matu Melanau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "drq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dura"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "drr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2020, 3, 28), - PreferredValue = "kzk", - Tag = null, - Description = [@"Dororo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "drs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gedeo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "drt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Drents"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dru", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rukai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "drw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2010, 3, 11), - PreferredValue = "prs", - Tag = null, - Description = [@"Darwazi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dry", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Darai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dsb", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lower Sorbian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dse", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dutch Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dsh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Daasanach"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dsi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Disa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dsk", - Added = new DateOnly(2023, 3, 17), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dokshi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dsl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Danish Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dsn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dusner"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dso", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Desiya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dsq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tadaksahak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dsz", - Added = new DateOnly(2022, 2, 25), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mardin Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dta", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Daur"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dtb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Labuk-Kinabatangan Kadazan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dtd", - Added = new DateOnly(2011, 8, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ditidaht"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dth", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Adithinngithigh"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dti", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ana Tinga Dogon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dtk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tene Kan Dogon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dtm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tomo Kan Dogon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dtn", - Added = new DateOnly(2016, 5, 30), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Daatsʼíin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dto", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tommo So Dogon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dtp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kadazan Dusun", @"Central Dusun"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dtr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lotud"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dts", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Toro So Dogon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dtt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Toro Tegu Dogon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dtu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tebul Ure Dogon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dty", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ne", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dotyali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dua", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Duala"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dub", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dubli"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "duc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Duna"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dud", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2019, 4, 16), - PreferredValue = null, - Tag = null, - Description = [@"Hun-Saare"], - Comments = [@"see uth, uss"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "due", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Umiray Dumaget Agta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "duf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dumbea", @"Drubea"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dug", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Duruma", @"Chiduruma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "duh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dungra Bhil"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dui", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dumun"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "duj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2016, 5, 30), - PreferredValue = null, - Tag = null, - Description = [@"Dhuwal"], - Comments = [@"see dwu, dwy"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "duk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Uyajitaya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dul", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Alabat Island Agta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dum", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Middle Dutch (ca. 1050-1350)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dun", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dusun Deyah"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "duo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dupaninan Agta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dup", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Duano"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "duq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dusun Malang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dur", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dii"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dus", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dumi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "duu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Drung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "duv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Duvle"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "duw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dusun Witu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dux", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Duungooma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "duy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dicamay Agta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "duz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Duli-Gey"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dva", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Duau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dwa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Diri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dwk", - Added = new DateOnly(2020, 3, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dawik Kui"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dwl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2012, 8, 12), - PreferredValue = null, - Tag = null, - Description = [@"Walo Kumbe Dogon"], - Comments = [@"see dbt, dbw"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dwr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dawro"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dws", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dutton World Speedwords"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dwu", - Added = new DateOnly(2016, 5, 30), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dhuwal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dww", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dawawa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dwy", - Added = new DateOnly(2016, 5, 30), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dhuwaya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dwz", - Added = new DateOnly(2018, 10, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dewas Rai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dya", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dyan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dyb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dyaberdyaber"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dyd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dyugun"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dyg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Villa Viciosa Agta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dyi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Djimini Senoufo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dyl", - Added = new DateOnly(2026, 4, 9), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bhutanese Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dym", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yanda Dom Dogon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dyn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dyangadi", @"Dhanggatti"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dyo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jola-Fonyi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dyr", - Added = new DateOnly(2023, 3, 17), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dyarim"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dyu", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dyula"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dyy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Djabugay", @"Dyaabugay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dza", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tunzu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dzd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Daza"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dze", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Djiwarli"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dzg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dazaga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dzl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dzalakha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "dzn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dzando"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "eaa", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Karenggapa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ebc", - Added = new DateOnly(2020, 3, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Beginci"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ebg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ebughu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ebk", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "bnc", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Bontok"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ebo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Teke-Ebo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ebr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ebrié"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ebu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Embu", @"Kiembu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ecr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eteocretan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ecs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ecuadorian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ecy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eteocypriot"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "eee", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"E"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "efa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Efai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "efe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Efe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "efi", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Efik"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ega", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ega"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "egl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Emilian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "egm", - Added = new DateOnly(2022, 2, 25), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Benamanga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ego", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eggon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "egx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Egyptian languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "egy", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Egyptian (Ancient)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ehs", - Added = new DateOnly(2021, 2, 20), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Miyakubo Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ehu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ehueun"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "eip", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eipomek"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "eit", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eitiep"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "eiv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Askopan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "eja", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ejamat"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "eka", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ekajuk"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ekc", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2020, 3, 28), - PreferredValue = null, - Tag = null, - Description = [@"Eastern Karnic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "eke", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ekit"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ekg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ekari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "eki", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eki"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ekk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "et", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Standard Estonian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ekl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kol (Bangladesh)", @"Kol"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ekm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Elip"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "eko", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koti"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ekp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ekpeye"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ekr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yace"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "eky", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Kayah"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ele", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Elepi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "elh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"El Hugeirat"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "eli", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nding"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "elk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Elkei"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "elm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eleme"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "elo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"El Molo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "elp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2012, 8, 12), - PreferredValue = null, - Tag = null, - Description = [@"Elpaputih"], - Comments = [@"see amq, plh"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "elu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Elu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "elx", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Elamite"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ema", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Emai-Iuleha-Ora"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "emb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Embaloh"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "eme", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Emerillon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "emg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Meohang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "emi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mussau-Emira"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "emk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "man", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Maninkakan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "emm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mamulique"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "emn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eman"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "emo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2014, 2, 28), - PreferredValue = null, - Tag = null, - Description = [@"Emok"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "emp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Emberá"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "emq", - Added = new DateOnly(2021, 2, 20), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Minyag"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ems", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pacific Gulf Yupik"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "emu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Muria"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "emw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Emplawas"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "emx", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Erromintxela"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "emy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Epigraphic Mayan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "emz", - Added = new DateOnly(2021, 2, 20), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mbessa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ena", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Apali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "enb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "kln", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Markweeta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "enc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"En"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "end", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ende"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "enf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Forest Enets"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "enh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tundra Enets"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "enl", - Added = new DateOnly(2014, 2, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Enlhet"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "enm", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Middle English (1100-1500)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "enn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Engenni"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "eno", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Enggano"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "enq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Enga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "enr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Emumu", @"Emem"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "enu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Enu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "env", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Enwan (Edo State)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "enw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Enwan (Akwa Ibom State)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "enx", - Added = new DateOnly(2014, 2, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Enxet"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "eot", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Beti (Côte d'Ivoire)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "epi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Epie"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "era", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eravallan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "erg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sie"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "erh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eruwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "eri", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ogea"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "erk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"South Efate"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ero", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Horpa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "err", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Erre"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ers", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ersu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ert", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eritai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "erw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Erokwanas"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ese", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ese Ejja"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "esg", - Added = new DateOnly(2016, 5, 30), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "gon", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aheri Gondi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "esh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eshtehardi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "esi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ik", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"North Alaskan Inupiatun"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "esk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ik", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northwest Alaska Inupiatun"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "esl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Egypt Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "esm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Esuma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "esn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Salvadoran Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "eso", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Estonian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "esq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Esselen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ess", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central Siberian Yupik"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "esu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central Yupik"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "esx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eskimo-Aleut languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "esy", - Added = new DateOnly(2014, 4, 6), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eskayan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "etb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Etebi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "etc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Etchemin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "eth", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ethiopian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "etn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eton (Vanuatu)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "eto", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eton (Cameroon)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "etr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Edolo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ets", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yekhee"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ett", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Etruscan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "etu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ejagham"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "etx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eten"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "etz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Semimi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "eud", - Added = new DateOnly(2023, 3, 17), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eudeve"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "euq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Basque (family)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "eve", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Even"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "evh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Uvbie"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "evn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Evenki"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ewo", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ewondo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ext", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Extremaduran"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "eya", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eyak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "eyo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "kln", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Keiyo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "eza", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ezaa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "eze", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Uzekwe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "faa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Fasu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fab", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Fa d'Ambu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fad", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wagi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "faf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Fagani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fag", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Finongan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fah", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Baissa Fali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fai", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Faiwol"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "faj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Faita"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fak", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Fang (Cameroon)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fal", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"South Fali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fam", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Fam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fan", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Fang (Equatorial Guinea)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fap", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Paloor"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "far", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Fataleka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fat", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ak", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Fanti"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fau", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Fayu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fax", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Fala"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fay", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southwestern Fars"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "faz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northwestern Fars"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fbl", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "bik", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"West Albay Bikol"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fcs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Quebec Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fer", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Feroge"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ffi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Foia Foia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ffm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ff", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maasina Fulfulde"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fgr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Fongoro"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fia", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nobiin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fie", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Fyer"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fif", - Added = new DateOnly(2020, 6, 8), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Faifi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fil", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Filipino", @"Pilipino"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fip", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Fipa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fir", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Firan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fit", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tornedalen Finnish", @"Meänkieli"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fiu", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Finno-Ugrian languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fiw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Fiwaga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fkk", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kirya-Konzəl"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fkv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kven Finnish"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fla", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kalispel-Pend d'Oreille"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "flh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Foau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fli", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Fali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fll", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"North Fali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fln", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Flinders Island"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "flr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Fuliiru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fly", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Flaaitaal", @"Tsotsitaal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fmp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Fe'fe'"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fmu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Far Western Muria"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fnb", - Added = new DateOnly(2016, 5, 30), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Fanbak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fng", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Fanagalo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fni", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Fania"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fod", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Foodo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "foi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Foi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fom", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Foma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fon", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Fon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "for", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Fore"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fos", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Siraya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fox", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Formosan languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fpe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Fernando Po Creole English"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fqs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Fas"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "frc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cajun French"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "frd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Fordata"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "frk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Frankish"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "frm", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Middle French (ca. 1400-1600)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fro", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old French (842-ca. 1400)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "frp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Arpitan", @"Francoprovençal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "frq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Forak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "frr", - Added = new DateOnly(2006, 3, 8), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Frisian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "frs", - Added = new DateOnly(2006, 3, 8), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Frisian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "frt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Fortsenal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fse", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Finnish Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fsl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"French Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fss", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = - [ - @"Finland-Swedish Sign Language", - @"finlandssvenskt teckenspråk", - @"suomenruotsalainen viittomakieli", - ], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fub", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ff", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Adamawa Fulfulde"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fuc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ff", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pulaar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fud", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"East Futuna"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fue", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ff", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Borgu Fulfulde"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fuf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ff", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pular"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fuh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ff", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Niger Fulfulde"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fui", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ff", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bagirmi Fulfulde"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fuj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ko"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fum", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Fum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fun", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Fulniô"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fuq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ff", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central-Eastern Niger Fulfulde"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fur", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Friulian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fut", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Futuna-Aniwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fuu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Furu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fuv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ff", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nigerian Fulfulde"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fuy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Fuyug"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fvr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Fur"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fwa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Fwâi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "fwe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Fwe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gaa", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gab", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gabri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gac", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mixed Great Andamanese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gad", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gaddang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gae", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guarequena"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gaf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gende"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gag", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gagauz"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gah", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Alekano"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gai", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Borei"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gaj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gadsup"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gak", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gamkonora"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gal", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Galolen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gam", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kandawo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gan", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zh", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gan Chinese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gao", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gants"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gap", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gaq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gata'"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gar", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Galeya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gas", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Adiwasi Garasia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gat", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kenati"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gau", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mudhili Gadaba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gav", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2010, 3, 11), - PreferredValue = "dev", - Tag = null, - Description = [@"Gabutamon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gaw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nobonob"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gax", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "om", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Borana-Arsi-Guji Oromo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gay", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gayo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gaz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "om", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"West Central Oromo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gba", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gbaya (Central African Republic)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gbb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kaytetye"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gbc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2012, 8, 12), - PreferredValue = null, - Tag = null, - Description = [@"Garawa"], - Comments = [@"see wny, wrk"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gbd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Karajarri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gbe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Niksek"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gbf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gaikundi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gbg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gbanziri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gbh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Defi Gbe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gbi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Galela"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gbj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bodo Gadaba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gbk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gaddi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gbl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gamit"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gbm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Garhwali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gbn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mo'da"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gbo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "grb", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Grebo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gbp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "gba", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gbaya-Bossangoa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gbq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "gba", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gbaya-Bozoum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gbr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gbagyi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gbs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gbesi Gbe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gbu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gagadu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gbv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gbanu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gbw", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gabi-Gabi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gbx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Xwla Gbe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gby", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gbari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gbz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zoroastrian Dari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gcc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gcd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ganggalida"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gce", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Galice"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gcf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guadeloupean Creole French"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gcl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Grenadian Creole English"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gcn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gaina"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gcr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guianese Creole French"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gct", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Colonia Tovar German"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gda", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "raj", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gade Lohar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gdb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pottangi Ollar Gadaba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gdc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gugu Badhun"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gdd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gedaged"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gde", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gude"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gdf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guduf-Gava"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gdg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ga'dang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gdh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gadjerawang", @"Gajirrabeng"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gdi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gundi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gdj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gurdjar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gdk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gadang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gdl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dirasha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gdm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Laal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gdn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Umanakaina"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gdo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ghodoberi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gdq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mehri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gdr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wipi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gds", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ghandruk Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gdt", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kungardutyi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gdu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gudu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gdx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Godwari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gea", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Geruma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "geb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kire"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gec", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "grb", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gboloo Grebo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ged", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gade"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gef", - Added = new DateOnly(2020, 3, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gerai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "geg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gengle"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "geh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hutterite German", @"Hutterisch"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gei", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gebe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gej", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gek", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ywom"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gel", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"ut-Ma'in"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gem", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Germanic languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "geq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Geme"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ges", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Geser-Gorom"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gev", - Added = new DateOnly(2014, 2, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eviya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gew", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gera"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gex", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Garre"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gey", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Enya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gez", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Geez"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gfk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Patpatar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gft", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gafat"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gfx", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2015, 2, 12), - PreferredValue = "vaj", - Tag = null, - Description = [@"Mangetti Dune ǃXung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gga", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ggb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gbii"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ggd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gugadj"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gge", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gurr-goni"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ggg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gurgula"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ggk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kungarakany"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ggl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ganglau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ggn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2016, 5, 30), - PreferredValue = "gvr", - Tag = null, - Description = [@"Eastern Gurung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ggo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2016, 5, 30), - PreferredValue = null, - Tag = null, - Description = [@"Southern Gondi"], - Comments = [@"see esg, wsg"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ggr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2013, 9, 10), - PreferredValue = null, - Tag = null, - Description = [@"Aghu Tharnggalu"], - Comments = [@"see gtu, ikr"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ggt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gitua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ggu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gagu", @"Gban"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ggw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gogodala"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gha", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ghadamès"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ghc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hiberno-Scottish Gaelic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ghe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Ghale"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ghh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Ghale"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ghk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Geko Karen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ghl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ghulfan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ghn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ghanongga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gho", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ghomara"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ghr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ghera"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ghs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guhu-Samane"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ght", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kuke", @"Kutang Ghale"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gia", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kija"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gib", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gibanawa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gic", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gail"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gid", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gidar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gie", - Added = new DateOnly(2017, 2, 23), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gaɓogbo", @"Guébie"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gig", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Goaria"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gih", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Githabul"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gii", - Added = new DateOnly(2021, 2, 20), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Girirra"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gil", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gilbertese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gim", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gimi (Eastern Highlands)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gin", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hinukh"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gio", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2012, 8, 12), - PreferredValue = null, - Tag = null, - Description = [@"Gelao"], - Comments = [@"see aou, gqu"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gip", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gimi (West New Britain)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "giq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Green Gelao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gir", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Red Gelao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gis", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"North Giziga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "git", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gitxsan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "giu", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mulao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "giw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"White Gelao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gix", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gilima"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "giy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Giyug"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "giz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"South Giziga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gji", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2021, 2, 20), - PreferredValue = null, - Tag = null, - Description = [@"Geji"], - Comments = [@"see gyz, zbu"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gjk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kachi Koli"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gjm", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gunditjmara"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gjn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gonja"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gjr", - Added = new DateOnly(2016, 5, 30), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gurindji Kriol"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gju", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "raj", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gujari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gka", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gkd", - Added = new DateOnly(2018, 3, 8), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Magɨ (Madang Province)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gke", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ndai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gkn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gokana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gko", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kok-Nar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gkp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "kpe", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guinea Kpelle"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gku", - Added = new DateOnly(2015, 2, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"ǂUngkue"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "glb", - Added = new DateOnly(2021, 2, 20), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Belning"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "glc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bon Gula"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gld", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nanai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "glh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northwest Pashai", @"Northwest Pashayi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gli", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2020, 3, 28), - PreferredValue = "kzk", - Tag = null, - Description = [@"Guliguli"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "glj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gula Iro"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "glk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gilaki"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gll", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Garlali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "glo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Galambu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "glr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Glaro-Twabo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "glu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gula (Chad)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "glw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Glavda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gly", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gule"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gma", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gambera"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gmb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gula'alaa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gmd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mághdì"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gme", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"East Germanic languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gmg", - Added = new DateOnly(2014, 2, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Magɨyi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gmh", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Middle High German (ca. 1050-1500)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gml", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Middle Low German"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gmm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "gba", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gbaya-Mbodomo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gmn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gimnime"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gmq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"North Germanic languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gmr", - Added = new DateOnly(2020, 3, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mirning", @"Mirniny"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gmu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gumalu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gmv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gamo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gmw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"West Germanic languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gmx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Magoma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gmy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mycenaean Greek"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gmz", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mgbolizhia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gna", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kaansa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gnb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gangte"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gnc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guanche"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gnd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zulgo-Gemzek"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gne", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ganang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gng", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngangam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gnh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lere"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gni", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gooniyandi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gnj", - Added = new DateOnly(2018, 3, 8), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gnk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"ǁGana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gnl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gangulu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gnm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ginuman"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gnn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gumatj"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gno", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "gon", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Gondi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gnq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gnr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gureng Gureng"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gnt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guntai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gnu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gnau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gnw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "gn", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Bolivian Guaraní"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gnz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ganzi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "goa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guro"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gob", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Playero"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "goc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gorakor"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "god", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Godié"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "goe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gongduk"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gof", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gofa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gog", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gogo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "goh", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old High German (ca. 750-1050)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "goi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gobasi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "goj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gowlan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gok", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gowli"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gol", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gola"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gom", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "kok", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Goan Konkani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gon", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gondi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "goo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gone Dau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gop", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yeretuar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "goq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gorap"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gor", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gorontalo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gos", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gronings"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "got", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gothic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gou", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gavar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gov", - Added = new DateOnly(2022, 2, 25), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Goo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gow", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gorowa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gox", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gobu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "goy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Goundo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "goz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gozarkhani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gpa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gupa-Abawa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gpe", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ghanaian Pidgin English"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gpn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Taiap"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gqa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ga'anda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gqi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guiqiong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gqn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guana (Brazil)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gqr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gor"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gqu", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Qau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gra", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rajput Garasia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "grb", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Grebo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "grc", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ancient Greek (to 1453)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "grd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guruntum-Mbaaru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "grg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Madi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "grh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gbiri-Niragu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gri", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ghari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "grj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "grb", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Grebo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "grk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Greek languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "grm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kota Marudu Talantang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gro", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Groma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "grq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gorovu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "grr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Taznatit"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "grs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gresi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "grt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Garo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gru", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kistane"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "grv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "grb", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central Grebo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "grw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gweda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "grx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guriaso"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gry", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "grb", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Barclayville Grebo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "grz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guramalum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gse", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ghanaian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gsg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"German Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gsl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gusilay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gsm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guatemalan Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gsn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nema", @"Gusan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gso", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "gba", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southwest Gbaya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gsp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wasembo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gss", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Greek Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gsw", - Added = new DateOnly(2006, 3, 8), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Swiss German", @"Alemannic", @"Alsatian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gta", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guató"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gti", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2015, 2, 12), - PreferredValue = "nyc", - Tag = null, - Description = [@"Gbati-ri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gtu", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aghu-Tharnggala"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gua", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shiki"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gub", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guajajára"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "guc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wayuu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gud", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yocoboué Dida"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gue", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gurindji"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "guf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gupapuyngu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gug", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "gn", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Paraguayan Guaraní"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "guh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guahibo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gui", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "gn", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Bolivian Guaraní"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "guk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gumuz"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gul", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sea Island Creole English"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gum", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guambiano"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gun", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "gn", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mbyá Guaraní"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "guo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guayabero"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gup", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gunwinggu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "guq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aché"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gur", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Farefare"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gus", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guinean Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gut", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maléku Jaíka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "guu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yanomamö"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "guv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2016, 5, 30), - PreferredValue = "duz", - Tag = null, - Description = [@"Gey"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "guw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gun"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gux", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gourmanchéma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "guz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gusii", @"Ekegusii"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gva", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guana (Paraguay)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gvc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guanano"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gve", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Duwet"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gvf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Golin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gvj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guajá"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gvl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gulay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gvm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gurmana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gvn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kuku-Yalanji"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gvo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gavião Do Jiparaná"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gvp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pará Gavião"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gvr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gurung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gvs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gumawana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gvy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guyani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gwa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mbato"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gwb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gwc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gawri", @"Kalami"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gwd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gawwada"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gwe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gweno"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gwf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gowro"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gwg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Moo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gwi", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gwichʼin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gwj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"ǀGwi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gwm", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Awngthim"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gwn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gwandara"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gwr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gwere"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gwt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gawar-Bati"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gwu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guwamu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gww", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kwini"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gwx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gxx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wè Southern"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gya", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "gba", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northwest Gbaya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gyb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Garus"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gyd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kayardild"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gye", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gyem"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gyf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gungabula"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gyg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gbayi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gyi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gyele"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gyl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gayil"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gym", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngäbere"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gyn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guyanese Creole English"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gyo", - Added = new DateOnly(2018, 3, 8), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gyalsumdo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gyr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guarayu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gyy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gunya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gyz", - Added = new DateOnly(2021, 2, 20), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Geji", @"Gyaazi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gza", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ganza"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gzi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gazi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "gzn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gane"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "haa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hän"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hab", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hanoi Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hac", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gurani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "had", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hatam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hae", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "om", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Oromo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "haf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Haiphong Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hag", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hanga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hah", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hahon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hai", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Haida"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "haj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hajong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hak", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zh", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hakka Chinese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hal", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Halang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ham", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hewa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "han", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hangaza"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hao", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hakö"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hap", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hupla"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "haq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "har", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Harari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "has", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Haisla"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hav", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Havu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "haw", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hawaiian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hax", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "hai", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Haida"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hay", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Haya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "haz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hazaragi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hba", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hamba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hbb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Huba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hbn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Heiban"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hbo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ancient Hebrew"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hbu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Habu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hca", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Andaman Creole Hindi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hch", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Huichol"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hdn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "hai", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Haida"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hds", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Honduras Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hdy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hadiyya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hea", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "hmn", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Qiandong Miao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hed", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Herdé"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "heg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Helong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "heh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hehe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hei", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Heiltsuk"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hem", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hemba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hgm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Haiǁom"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hgw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Haigwai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hhi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hoia Hoia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hhr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kerak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hhy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hoyahoya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hia", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lamang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hib", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hibito"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hid", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hidatsa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hif", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Fiji Hindi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hig", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kamwe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hih", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pamosu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hii", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hinduri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hij", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hijuk"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hik", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Seit-Kaitetu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hil", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hiligaynon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "him", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Himachali languages", @"Western Pahari languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hio", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tsoa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hir", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Himarimã"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hit", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hittite"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hiw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hiw"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hix", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hixkaryána"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hji", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Haji"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hka", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kahe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hke", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hunde"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hkh", - Added = new DateOnly(2021, 2, 20), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khah", @"Poguli"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hkk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hunjara-Kaina Ke"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hkn", - Added = new DateOnly(2018, 3, 8), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mel-Khaonh"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hks", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hong Kong Sign Language", @"Heung Kong Sau Yue"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hla", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Halia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hlb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Halbi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hld", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Halang Doan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hle", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hlersu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hlt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Matu Chin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hlu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hieroglyphic Luwian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hma", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "hmn", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Mashan Hmong", @"Southern Mashan Miao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hmb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Humburi Senni Songhay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hmc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "hmn", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central Huishui Hmong", @"Central Huishui Miao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hmd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "hmn", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Large Flowery Miao", @"A-hmaos", @"Da-Hua Miao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hme", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "hmn", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Huishui Hmong", @"Eastern Huishui Miao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hmf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hmong Don"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hmg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "hmn", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southwestern Guiyang Hmong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hmh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "hmn", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southwestern Huishui Hmong", @"Southwestern Huishui Miao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hmi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "hmn", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Huishui Hmong", @"Northern Huishui Miao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hmj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "hmn", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ge", @"Gejia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hmk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maek"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hml", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "hmn", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Luopohe Hmong", @"Luopohe Miao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hmm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "hmn", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central Mashan Hmong", @"Central Mashan Miao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hmn", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hmong", @"Mong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hmp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "hmn", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Mashan Hmong", @"Northern Mashan Miao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hmq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "hmn", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Qiandong Miao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hmr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hmar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hms", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "hmn", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Qiandong Miao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hmt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hamtai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hmu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hamap"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hmv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hmong Dô"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hmw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "hmn", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Mashan Hmong", @"Western Mashan Miao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hmx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hmong-Mien languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hmy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "hmn", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Guiyang Hmong", @"Southern Guiyang Miao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hmz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "hmn", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hmong Shua", @"Sinicized Miao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hna", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mina (Cameroon)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hnd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "lah", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Hindko"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hne", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chhattisgarhi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hng", - Added = new DateOnly(2020, 3, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hungu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hnh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"ǁAni"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hni", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hnj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "hmn", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hmong Njua", @"Mong Leng", @"Mong Njua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hnm", - Added = new DateOnly(2024, 12, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zh", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hainanese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hnn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hanunoo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hno", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "lah", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Hindko"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hns", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Caribbean Hindustani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hnu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hoa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hoava"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hob", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mari (Madang Province)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hoc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ho"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hod", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Holma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hoe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Horom"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hoh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hobyót"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hoi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Holikachuk"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hoj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "raj", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hadothi", @"Haroti"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hok", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hokan languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hol", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Holu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hom", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Homa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hoo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Holoholo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hop", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hopi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hor", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Horo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hos", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ho Chi Minh City Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hot", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hote", @"Malê"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hov", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hovongan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "how", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Honi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hoy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Holiya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hoz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hozo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hpo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hpon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hps", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hawai'i Sign Language (HSL)", @"Hawai'i Pidgin Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hra", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hrangkhol"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hrc", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Niwer Mil"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hre", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hre"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hrk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Haruku"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hrm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "hmn", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Horned Miao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hro", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Haroi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hrp", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nhirrpi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hrr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2012, 8, 12), - PreferredValue = "jal", - Tag = null, - Description = [@"Horuru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hrt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hértevin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hru", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hruso"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hrw", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Warwar Feni"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hrx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hunsrik"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hrz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Harzani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hsb", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Upper Sorbian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hsh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hungarian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hsl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hausa Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hsn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zh", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Xiang Chinese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hss", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Harsusi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hti", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hoti"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hto", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Minica Huitoto"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hts", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hadza"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "htu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hitu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "htx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Middle Hittite"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hub", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Huambisa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "huc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"ǂHua", @"ǂʼAmkhoe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hud", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Huaulu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hue", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"San Francisco Del Mar Huave"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "huf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Humene"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hug", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Huachipaeri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "huh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Huilliche"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hui", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Huli"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "huj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "hmn", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Guiyang Hmong", @"Northern Guiyang Miao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "huk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hulung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hul", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hula"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hum", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hungana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "huo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hup", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hupa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "huq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tsat"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hur", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Halkomelem"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hus", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Huastec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hut", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Humla"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "huu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Murui Huitoto"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "huv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"San Mateo Del Mar Huave"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "huw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hukumina"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hux", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nüpode Huitoto"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "huy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hulaulá"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "huz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hunzib"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hvc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Haitian Vodoun Culture Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hve", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"San Dionisio Del Mar Huave"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hvk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Haveke"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hvn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sabu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hvv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Santa María Del Mar Huave"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hwa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wané"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hwc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hawai'i Creole English", @"Hawai'i Pidgin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hwo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hwana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hya", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hyw", - Added = new DateOnly(2018, 3, 8), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Armenian"], - Comments = [@"see also hy"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "hyx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Armenian (family)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "iai", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Iaai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ian", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Iatmul"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "iap", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2016, 5, 30), - PreferredValue = null, - Tag = null, - Description = [@"Iapama"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "iar", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Purari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "iba", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Iban"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ibb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ibibio"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ibd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Iwaidja"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ibe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Akpes"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ibg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ibanag"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ibh", - Added = new DateOnly(2017, 2, 23), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bih"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ibi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2012, 8, 12), - PreferredValue = "opa", - Tag = null, - Description = [@"Ibilo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ibl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ibaloi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ibm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Agoi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ibn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ibino"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ibr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ibuoro"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ibu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ibu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "iby", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ibani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ica", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ede Ica"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ich", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Etkywan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "icl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Icelandic Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "icr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Islander Creole English"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ida", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "luy", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Idakho-Isukha-Tiriki", @"Luidakho-Luisukha-Lutirichi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "idb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Indo-Portuguese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "idc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Idon", @"Ajiya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "idd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ede Idaca"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ide", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Idere"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "idi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Idi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "idr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Indri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ids", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Idesa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "idt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Idaté"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "idu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Idoma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ifa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Amganad Ifugao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ifb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Batad Ifugao", @"Ayangan Ifugao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ife", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ifè"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "iff", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ifo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ifk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tuwali Ifugao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ifm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Teke-Fuumu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ifu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mayoyao Ifugao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ify", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Keley-I Kallahan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "igb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ebira"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ige", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Igede"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "igg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Igana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "igl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Igala"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "igm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kanggape"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ign", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ignaciano"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "igo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Isebe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "igs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Interglossa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "igw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Igwe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ihb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Iha Based Pidgin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ihi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ihievbe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ihp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Iha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ihw", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bidhawal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "iin", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Thiin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "iir", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Indo-Iranian languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ijc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Izon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ije", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Biseni"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ijj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ede Ije"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ijn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kalabari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ijo", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ijo languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ijs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southeast Ijo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ike", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "iu", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Canadian Inuktitut"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ikh", - Added = new DateOnly(2023, 3, 17), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ikhin-Arokho"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "iki", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Iko"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ikk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ika"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ikl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ikulu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "iko", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Olulumo-Ikom"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ikp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ikpeshi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ikr", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ikaranggal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "iks", - Added = new DateOnly(2015, 2, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Inuit Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ikt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "iu", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Inuinnaqtun", @"Western Canadian Inuktitut"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ikv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Iku-Gora-Ankwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ikw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ikwere"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ikx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ik"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ikz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ikizu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ila", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ile Ape"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ilb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ila"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ilg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Garig-Ilgar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ili", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ili Turki"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ilk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ilongot"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ill", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2016, 5, 30), - PreferredValue = null, - Tag = null, - Description = [@"Iranun"], - Comments = [@"see ilm, ilp"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ilm", - Added = new DateOnly(2016, 5, 30), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Iranun (Malaysia)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ilo", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Iloko"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ilp", - Added = new DateOnly(2016, 5, 30), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Iranun (Philippines)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ils", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"International Sign"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ilu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ili'uun"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ilv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ilue"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ilw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2013, 9, 10), - PreferredValue = "gal", - Tag = null, - Description = [@"Talur"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ima", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mala Malasar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ime", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2015, 2, 12), - PreferredValue = null, - Tag = null, - Description = [@"Imeraguen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "imi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Anamgura"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "iml", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Miluk"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "imn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Imonda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "imo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Imbongu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "imr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Imroing"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ims", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Marsian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "imt", - Added = new DateOnly(2022, 2, 25), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Imotong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "imy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Milyan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "inb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Inga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "inc", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Indic languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ine", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Indo-European languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ing", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Degexit'an"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "inh", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ingush"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "inj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jungle Inga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "inl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Indonesian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "inm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Minaean"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "inn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Isinai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ino", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Inoke-Yate"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "inp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Iñapari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ins", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Indian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "int", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Intha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "inz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ineseño"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ior", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Inor"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "iou", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tuma-Irumu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "iow", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Iowa-Oto"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ipi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ipili"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ipo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ipiko"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "iqu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Iquito"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "iqw", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ikwo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ira", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Iranian languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ire", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Iresim"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "irh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Irarutu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "iri", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rigwe", @"Irigwe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "irk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Iraqw"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "irn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Irántxe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "iro", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Iroquoian languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "irr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ir"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "iru", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Irula"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "irx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kamberau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "iry", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Iraya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "isa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Isabi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "isc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Isconahua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "isd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Isnag"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ise", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Italian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "isg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Irish Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ish", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Esan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "isi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nkem-Nkum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "isk", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ishkashimi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ism", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Masimasi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "isn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Isanzu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "iso", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Isoko"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "isr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Israeli Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ist", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Istriot"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "isu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Isu", @"Isu (Menchum Division)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "isv", - Added = new DateOnly(2024, 5, 15), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Interslavic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "itb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Binongan Itneg"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "itc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Italic languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "itd", - Added = new DateOnly(2016, 5, 30), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Tidung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ite", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Itene"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "iti", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Inlaod Itneg"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "itk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Judeo-Italian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "itl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Itelmen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "itm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Itu Mbon Uzo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ito", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Itonama"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "itr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Iteri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "its", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Isekiri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "itt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maeng Itneg"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "itv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Itawit"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "itw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ito"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "itx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Itik"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ity", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Moyadan Itneg"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "itz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Itzá"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ium", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Iu Mien"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ivb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ibatan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ivv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ivatan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "iwk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"I-Wak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "iwm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Iwam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "iwo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Iwur"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "iws", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sepik Iwam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ixc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ixcatec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ixl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ixil"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "iya", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Iyayu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "iyo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mesaka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "iyx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yaka (Congo)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "izh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ingrian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "izi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2013, 9, 10), - PreferredValue = null, - Tag = null, - Description = [@"Izi-Ezaa-Ikwo-Mgbo"], - Comments = [@"see eza, gmz, iqw, izz"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "izm", - Added = new DateOnly(2023, 3, 17), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kizamani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "izr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Izere"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "izz", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Izii"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jaa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jamamadí"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jab", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hyam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jac", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Popti'", @"Jakalteko"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jad", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jahanka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jae", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yabem"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jaf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jara"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jah", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jah Hut"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jaj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zazao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jak", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jakun"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jal", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yalahatan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jam", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jamaican Creole English"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jan", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jandai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jao", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yanyuwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jaq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yaqay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jar", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2012, 8, 12), - PreferredValue = null, - Tag = null, - Description = [@"Jarawa (Nigeria)"], - Comments = [@"see jgk, jjr"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jas", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"New Caledonian Javanese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jat", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "lah", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jakati"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jau", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yaur"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jax", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jambi Malay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jay", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yan-nhangu", @"Nhangu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jaz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jawe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jbe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Judeo-Berber"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jbi", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Badjiri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jbj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Arandai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jbk", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Barikewa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jbm", - Added = new DateOnly(2021, 2, 20), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bijim"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jbn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nafusi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jbo", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lojban"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jbr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jofotek-Bromnya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jbt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jabutí"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jbu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jukun Takum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jbw", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yawijibaya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jcs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jamaican Country Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jct", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Krymchak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jda", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jad"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jdg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jadgali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jdt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Judeo-Tat"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jeb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jebero"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jee", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jerung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jeg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2017, 2, 23), - PreferredValue = "oyb", - Tag = null, - Description = [@"Jeng"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jeh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jeh"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jei", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yei"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jek", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jeri Kuo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jel", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yelmek"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jen", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dza"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jer", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jere"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jet", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Manem"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jeu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jonkor Bourmataguil"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jgb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngbee"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jge", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Judeo-Georgian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jgk", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gwak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jgo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngomba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jhi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jehai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jhs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jhankot Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jia", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jina"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jib", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jibu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jic", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tol"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jid", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bu (Kaduna State)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jie", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jilbe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jig", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jingulu", @"Djingili"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jih", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"sTodsde", @"Shangzhai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jii", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jiiddu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jil", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jilim"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jim", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jimi (Cameroon)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jio", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jiamao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jiq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guanyinqiao", @"Lavrung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jit", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jita"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jiu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Youle Jinuo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jiv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shuar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jiy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Buyuan Jinuo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jje", - Added = new DateOnly(2015, 2, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jejueo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jjr", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bankal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jka", - Added = new DateOnly(2016, 5, 30), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kaera"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jkm", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mobwa Karen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jko", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kubo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jkp", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Paku Karen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jkr", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koro (India)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jks", - Added = new DateOnly(2021, 2, 20), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Amami Koniya Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jku", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Labir"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jle", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngile"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jls", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jamaican Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jma", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dima"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jmb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zumbun"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jmc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Machame"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jmd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yamdena"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jmi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jimi (Nigeria)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jml", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jumli"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jmn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Makuri Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jmr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kamara"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jms", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mashi (Nigeria)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jmw", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mouwase"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jmx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Juxtlahuaca Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jna", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jangshung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jnd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jandavra"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jng", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yangman"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jni", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Janji"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jnj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yemsa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jnl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rawat"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jns", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jaunsari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "job", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Joba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jod", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wojenaka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jog", - Added = new DateOnly(2015, 5, 27), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jogi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jor", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jorá"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jos", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jordanian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jow", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jowulu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jpa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jewish Palestinian Aramaic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jpr", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Judeo-Persian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jpx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Japanese (family)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jqr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jaqaru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jra", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jarai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jrb", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Judeo-Arabic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jrr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jiru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jrt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jakattoe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jru", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Japrería"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jsl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Japanese Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jua", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Júma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jub", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wannu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "juc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jurchen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jud", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Worodougou"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "juh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hõne"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jui", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngadjuri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "juk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wapan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jul", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jirel"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jum", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jumjum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jun", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Juang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "juo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jiba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jup", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hupdë"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jur", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jurúna"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jus", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jumla Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jut", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jutish"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "juu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ju"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "juw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wãpha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "juy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Juray"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jvd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Javindo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jvn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Caribbean Javanese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jwi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jwira-Pepesa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jya", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jiarong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jye", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "jrb", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Judeo-Yemeni Arabic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "jyy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jaya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kaa", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kara-Kalpak", @"Karakalpak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kab", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kabyle"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kac", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kachin", @"Jingpho"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kad", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Adara"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kae", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ketangalan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kaf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Katso"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kag", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kajaman"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kah", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kara (Central African Republic)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kai", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Karekare"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kaj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jju"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kak", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kalanguya", @"Kayapa Kallahan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kam", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kamba (Kenya)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kao", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Xaasongaxango"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kap", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bezhta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kaq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Capanahua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kar", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Karen languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kav", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Katukína"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kaw", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kawi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kax", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kay", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kamayurá"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kba", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kalarko"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kbb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kaxuiâna"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kbc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kadiwéu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kbd", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kabardian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kbe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kanju"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kbf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2015, 2, 12), - PreferredValue = null, - Tag = null, - Description = [@"Kakauhua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kbg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khamba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kbh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Camsá"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kbi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kaptiau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kbj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kbk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Grass Koiari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kbl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kanembu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kbm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Iwal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kbn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kare (Central African Republic)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kbo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Keliko"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kbp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kabiyè"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kbq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kamano"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kbr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kafa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kbs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kande"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kbt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Abadi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kbu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kabutra"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kbv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dera (Indonesia)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kbw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kaiep"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kbx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ap Ma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kby", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "kr", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Manga Kanuri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kbz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Duhwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kca", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khanty"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kcb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kawacha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kcc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lubila"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kcd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngkâlmpw Kanum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kce", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kaivi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kcf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ukaan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kcg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tyap"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kch", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vono"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kci", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngyian", @"Kamantan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kcj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kobiana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kck", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kalanga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kcl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kela (Papua New Guinea)", @"Kala"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kcm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gula (Central African Republic)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kcn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nubi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kco", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kinalakna"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kcp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kanga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kcq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kamo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kcr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Katla"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kcs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koenoem"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kct", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kaian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kcu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kami (Tanzania)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kcv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kete"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kcw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kabwari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kcx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kachama-Ganjule"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kcy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Korandje"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kcz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Konongo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kda", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Worimi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kdc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kutu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kdd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yankunytjatjara"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kde", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Makonde"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kdf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mamusi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kdg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Seba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kdh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tem"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kdi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kumam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kdj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Karamojong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kdk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Numèè", @"Kwényi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kdl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tsikimba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kdm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kagoma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kdn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kunda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kdo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kordofanian languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kdp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kaningdon-Nindem"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kdq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koch"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kdr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Karaim"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kdt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kuy"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kdu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kadaru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kdv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2012, 8, 12), - PreferredValue = null, - Tag = null, - Description = [@"Kado"], - Comments = [@"see zkd, zkn"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kdw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koneraw"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kdx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kdy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Keder", @"Keijar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kdz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kwaja"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kea", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kabuverdianu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "keb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kélé"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kec", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Keiga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ked", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kerewe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kee", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Keres"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kef", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kpessi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "keg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "keh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Keak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kei", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kei"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kej", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kadar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kek", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kekchí"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kel", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kela (Democratic Republic of Congo)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kem", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kemak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ken", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kenyang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "keo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kakwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kep", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kaikadi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "keq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kamar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ker", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kera"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kes", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kugbo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ket", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ket"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "keu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Akebu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kev", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kanikkaran"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kew", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"West Kewa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kex", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kukna"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "key", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kupia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kez", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kukele"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kfa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kodava"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kfb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northwestern Kolami"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kfc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Konda-Dora"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kfd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Korra Koraga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kfe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kota (India)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kff", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kfg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kudiya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kfh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kurichiya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kfi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kannada Kurumba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kfj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kemiehua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kfk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kinnauri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kfl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kfm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khunsari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kfn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kuk"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kfo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koro (Côte d'Ivoire)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kfp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Korwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kfq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Korku"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kfr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kachhi", @"Kutchi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kfs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bilaspuri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kft", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kanjari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kfu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Katkari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kfv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kurmukar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kfw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kharam Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kfx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kullu Pahari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kfy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kumaoni"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kfz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koromfé"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kga", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koyaga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kgb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kawe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kgc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2016, 5, 30), - PreferredValue = "tdf", - Tag = null, - Description = [@"Kasseng"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kgd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2017, 2, 23), - PreferredValue = null, - Tag = null, - Description = [@"Kataang"], - Comments = [@"see ncq, sct"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kge", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Komering"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kgf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kube"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kgg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kusunda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kgh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2012, 8, 12), - PreferredValue = "kml", - Tag = null, - Description = [@"Upper Tanudan Kalinga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kgi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Selangor Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kgj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gamale Kham"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kgk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kaiwá"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kgl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kunggari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kgm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2023, 3, 17), - PreferredValue = "plu", - Tag = null, - Description = [@"Karipúna"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kgn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Karingani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kgo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Krongo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kgp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kaingang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kgq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kamoro"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kgr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Abun"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kgs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kumbainggar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kgt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Somyev"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kgu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kobol"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kgv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Karas"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kgw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Karon Dori"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kgx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kamaru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kgy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kyerung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kha", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khasi"], - Comments = [@"as of 2008-04-21 this subtag does not include Lyngngam; see lyg"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "khb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lü"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "khc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tukang Besi North"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "khd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bädi Kanum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "khe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Korowai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "khf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khuen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "khg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khams Tibetan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "khh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kehu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "khi", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khoisan languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "khj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kuturmi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "khk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "mn", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Halh Mongolian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "khl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lusi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "khn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khandesi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kho", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khotanese", @"Sakan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "khp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kapori", @"Kapauri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "khq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koyra Chiini Songhay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "khr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kharia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "khs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kasua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kht", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khamti"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "khu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nkhumbi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "khv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khvarshi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "khw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khowar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "khx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kanu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "khy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kele (Democratic Republic of Congo)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "khz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Keapara"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kia", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kim"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kib", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koalib"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kic", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kickapoo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kid", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koshin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kie", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kibet"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kif", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Parbate Kham"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kig", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kimaama", @"Kimaghima"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kih", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kilmeri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kii", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kitsai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kij", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kilivila"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kil", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kariya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kim", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Karagas"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kio", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kiowa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kip", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sheshi Kham"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kiq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kosadle", @"Kosare"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kis", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kis"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kit", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Agob"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kiu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zza", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kirmanjki (individual language)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kiv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kimbu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kiw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northeast Kiwai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kix", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khiamniungan Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kiy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kirikiri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kiz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kisi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kja", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mlap"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kjb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Q'anjob'al", @"Kanjobal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kjc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Coastal Konjo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kjd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Kiwai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kje", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kisar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kjf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2020, 3, 28), - PreferredValue = null, - Tag = null, - Description = [@"Khalaj [Indo-Iranian]"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kjg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khmu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kjh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khakas"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kji", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zabana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kjj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khinalugh"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kjk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Highland Konjo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kjl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Parbate Kham"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kjm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kháng"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kjn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kunjen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kjo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kinnauri Pahari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kjp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pwo Eastern Karen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kjq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Keres"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kjr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kurudu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kjs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"East Kewa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kjt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Phrae Pwo Karen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kju", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kashaya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kjv", - Added = new DateOnly(2015, 2, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kaikavian Literary Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kjx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ramopa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kjy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Erave"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kjz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bumthangkha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kka", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kakanda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kkb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kwerisa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kkc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Odoodee"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kkd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kinuku"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kke", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kakabe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kkf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kalaktang Monpa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kkg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mabaka Valley Kalinga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kkh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khün"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kki", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kagulu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kkj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kako"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kkk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kokota"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kkl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kosarek Yale"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kkm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kiong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kkn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kon Keu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kko", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Karko"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kkp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gugubera", @"Koko-Bera"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kkq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kaeku"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kkr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kir-Balar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kks", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Giiwo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kkt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kku", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tumi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kkv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kangean"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kkw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Teke-Kukuya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kkx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kohin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kky", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guugu Yimidhirr", @"Guguyimidjir"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kkz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kaska"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kla", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Klamath-Modoc"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "klb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kiliwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "klc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kolbila"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kld", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gamilaraay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kle", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kulung (Nepal)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "klf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kendeje"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "klg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tagakaulo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "klh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Weliki"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kli", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kalumpang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "klj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khalaj"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "klk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kono (Nigeria)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kll", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kagan Kalagan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "klm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Migum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kln", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kalenjin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "klo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kapya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "klp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kamasa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "klq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rumu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "klr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khaling"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kls", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kalasha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "klt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nukna"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "klu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Klao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "klv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maskelynes"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "klw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tado", @"Lindu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "klx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koluwawa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kly", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kalao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "klz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kabola"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kma", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Konni"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kmb", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kimbundu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kmc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Dong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kmd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Majukayang Kalinga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kme", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bakole"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kmf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kare (Papua New Guinea)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kmg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kâte"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kmh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kalam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kmi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kami (Nigeria)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kmj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kumarbhag Paharia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kmk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Limos Kalinga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kml", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tanudan Kalinga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kmm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kom (India)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kmn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Awtuw"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kmo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kwoma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kmp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gimme"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kmq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kwama"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kmr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ku", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Kurdish"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kms", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kamasau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kmt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kemtuik"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kmu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kanite"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kmv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Karipúna Creole French"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kmw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Komo (Democratic Republic of Congo)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kmx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Waboda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kmy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kmz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khorasani Turkish"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kna", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dera (Nigeria)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "knb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lubuagan Kalinga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "knc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "kr", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central Kanuri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "knd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Konda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kne", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kankanaey"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "knf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mankanya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kng", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "kg", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koongo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kni", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kanufi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "knj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Kanjobal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "knk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kuranko"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "knl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Keninjal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "knm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kanamarí"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "knn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "kok", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Konkani (individual language)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kno", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kono (Sierra Leone)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "knp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kwanja"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "knq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kintaq"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "knr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kaningra"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kns", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kensiu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "knt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Panoan Katukína"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "knu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kono (Guinea)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "knv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tabo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "knw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kung-Ekoka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "knx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kendayan", @"Salako"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kny", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kanyok"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "knz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kalamsé"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "koa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Konomala"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "koc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kpati"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kod", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kodi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "koe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kacipo-Bale Suri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kof", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kubi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kog", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cogui", @"Kogi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "koh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koyo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "koi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "kv", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Komi-Permyak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "koj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2015, 2, 12), - PreferredValue = "kwv", - Tag = null, - Description = [@"Sara Dunjo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kok", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Deva", - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Konkani (macrolanguage)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kol", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kol (Papua New Guinea)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "koo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Konzo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kop", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Waube"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "koq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kota (Gabon)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kos", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kosraean"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kot", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lagwan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kou", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koke"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kov", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kudu-Camo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kow", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kugama"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kox", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2016, 5, 30), - PreferredValue = null, - Tag = null, - Description = [@"Coxima"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "koy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koyukon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "koz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Korak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kpa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kutto"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kpb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mullu Kurumba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kpc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Curripaco"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kpd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kpe", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kpelle"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kpf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Komba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kpg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kapingamarangi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kph", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kplang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kpi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kofei"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kpj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Karajá"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kpk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kpan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kpl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kpala"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kpm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koho"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kpn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kepkiriwát"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kpo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ikposo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kpp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2012, 8, 12), - PreferredValue = null, - Tag = null, - Description = [@"Paku Karen"], - Comments = [@"see jkm, jkp"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kpq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Korupun-Sela"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kpr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Korafe-Yegha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kps", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tehit"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kpt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Karata"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kpu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kafoa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kpv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "kv", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Komi-Zyrian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kpw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kobon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kpx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mountain Koiali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kpy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koryak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kpz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kupsabiny"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kqa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kqb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kovai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kqc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Doromu-Koki"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kqd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koy Sanjaq Surat"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kqe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kalagan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kqf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kakabai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kqg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kqh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kisankasa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kqi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koitabu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kqj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koromira"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kqk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kotafon Gbe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kql", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kyenele"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kqm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khisa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kqn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kaonde"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kqo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Krahn"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kqp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kimré"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kqq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Krenak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kqr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kimaragang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kqs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Kissi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kqt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Klias River Kadazan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kqu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Seroa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kqv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Okolod"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kqw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kandas"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kqx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mser"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kqy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koorete"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kqz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Korana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kra", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kumhali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "krb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Karkin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "krc", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Karachay-Balkar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "krd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kairui-Midiki"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kre", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Panará"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "krf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koro (Vanuatu)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "krh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kurama"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kri", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Krio"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "krj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kinaray-A"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "krk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kerek"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "krl", - Added = new DateOnly(2006, 3, 8), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Karelian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "krm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2017, 2, 23), - PreferredValue = "bmf", - Tag = null, - Description = [@"Krim"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "krn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sapo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kro", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kru languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "krp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Durop"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "krr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Krung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "krs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gbaya (Sudan)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "krt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "kr", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tumari Kanuri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kru", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kurukh"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "krv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kavet"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "krw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Krahn"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "krx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Karon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kry", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kryts"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "krz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sota Kanum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ksa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2023, 3, 17), - PreferredValue = null, - Tag = null, - Description = [@"Shuwa-Zamani"], - Comments = [@"see izm, rsw"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ksb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shambala"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ksc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Kalinga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ksd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kuanua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kse", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kuni"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ksf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bafia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ksg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kusaghe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ksh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kölsch"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ksi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Krisa", @"I'saka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ksj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Uare"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ksk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kansa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ksl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kumalu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ksm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kumba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ksn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kasiguranin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kso", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kofa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ksp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kaba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ksq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kwaami"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ksr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Borong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kss", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Kisi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kst", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Winyé"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ksu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khamyang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ksv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kusu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ksw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"S'gaw Karen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ksx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kedang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ksy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kharia Thar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ksz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kodaku"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kta", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Katua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ktb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kambaata"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ktc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kholok"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ktd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kokata", @"Kukatha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kte", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nubri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ktf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kwami"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ktg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kalkutung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kth", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Karanga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kti", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"North Muyu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ktj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Plapo Krumen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ktk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kaniet"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ktl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koroshi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ktm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kurti"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ktn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Karitiâna"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kto", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kuot"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ktp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kaduo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ktq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Katabaga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ktr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2016, 5, 30), - PreferredValue = "dtp", - Tag = null, - Description = [@"Kota Marudu Tinagas"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kts", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"South Muyu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ktt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ketum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ktu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kituba (Democratic Republic of Congo)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ktv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Katu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ktw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kato"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ktx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kaxararí"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kty", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kango (Bas-Uélé District)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ktz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Juǀʼhoan", @"Juǀʼhoansi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kub", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kutep"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kuc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kwinsu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kud", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"'Auhelawa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kue", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kuman (Papua New Guinea)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kuf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Katu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kug", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kupa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kuh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kushi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kui", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kuikúro-Kalapálo", @"Kalapalo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kuj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kuria"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kuk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kepo'"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kul", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kulere"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kum", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kumyk"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kun", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kunama"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kuo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kumukio"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kup", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kunimaipa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kuq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Karipuna"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kus", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kusaal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kut", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ktunaxa", @"Ksanka", @"Kutenai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kuu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Upper Kuskokwim"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kuv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kur"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kuw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kpagua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kux", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kukatja"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kuy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kuuku-Ya'u"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kuz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kunza"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kva", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bagvalal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kvb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kubu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kvc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kove"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kvd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kui (Indonesia)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kve", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kalabakan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kvf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kabalai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kvg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kuni-Boazi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kvh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Komodo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kvi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kwang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kvj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Psikye"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kvk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Korean Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kvl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kayaw"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kvm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kendem"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kvn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Border Kuna"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kvo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dobel"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kvp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kompane"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kvq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Geba Karen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kvr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kerinci"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kvs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2016, 5, 30), - PreferredValue = "gdj", - Tag = null, - Description = [@"Kunggara"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kvt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lahta Karen", @"Lahta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kvu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yinbaw Karen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kvv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kola"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kvw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wersing"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kvx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Parkari Koli"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kvy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yintale Karen", @"Yintale"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kvz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tsakwambo", @"Tsaukambo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kwa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dâw"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kwb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kwc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Likwala"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kwd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kwaio"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kwe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kwerba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kwf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kwara'ae"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kwg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sara Kaba Deme"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kwh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kowiai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kwi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Awa-Cuaiquer"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kwj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kwanga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kwk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kwak'wala", @"Kwakiutl"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kwl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kofyar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kwm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kwambi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kwn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kwangali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kwo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kwomtari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kwp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kodia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kwq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2015, 2, 12), - PreferredValue = "yam", - Tag = null, - Description = [@"Kwak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kwr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kwer"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kws", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kwese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kwt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kwesten"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kwu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kwakum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kwv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sara Kaba Náà"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kww", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kwinti"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kwx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khirwar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kwy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "kg", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"San Salvador Kongo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kwz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kwadi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kxa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kairiru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kxb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Krobu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kxc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Konso", @"Khonso"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kxd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Brunei"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kxe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2015, 2, 12), - PreferredValue = "tvd", - Tag = null, - Description = [@"Kakihum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kxf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Manumanaw Karen", @"Manumanaw"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kxh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Karo (Ethiopia)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kxi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Keningau Murut"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kxj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kulfa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kxk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zayein Karen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kxl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2020, 3, 28), - PreferredValue = "kru", - Tag = null, - Description = [@"Nepali Kurux"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kxm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Khmer"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kxn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kanowit-Tanjong Melanau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kxo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kanoé"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kxp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wadiyara Koli"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kxq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Smärky Kanum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kxr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koro (Papua New Guinea)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kxs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kangjia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kxt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koiwat"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kxu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2020, 3, 28), - PreferredValue = null, - Tag = null, - Description = [@"Kui (India)"], - Comments = [@"see dwk, uki"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kxv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kuvi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kxw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Konai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kxx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Likuba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kxy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kayong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kxz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kerewo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kya", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kwaya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kyb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Butbut Kalinga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kyc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kyaka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kyd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Karey"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kye", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Krache"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kyf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kouya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kyg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Keyagana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kyh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Karok"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kyi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kiput"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kyj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Karao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kyk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kamayo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kyl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kalapuya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kym", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kpatili"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kyn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Binukidnon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kyo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kelon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kyp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kyq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kenga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kyr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kuruáya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kys", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Baram Kayan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kyt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kayagar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kyu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Kayah"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kyv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kayort"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kyw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kudmali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kyx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rapoisi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kyy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kambaira"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kyz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kayabí"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kza", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Karaboro"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kzb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kaibobo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kzc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bondoukou Kulango"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kzd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kadai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kze", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kosena"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kzf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Da'a Kaili"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kzg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kikai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kzh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2012, 8, 12), - PreferredValue = null, - Tag = null, - Description = [@"Kenuzi-Dongola"], - Comments = [@"see dgl, xnz"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kzi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kelabit"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kzj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2016, 5, 30), - PreferredValue = "dtp", - Tag = null, - Description = [@"Coastal Kadazan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kzk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kazukuru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kzl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kayeli"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kzm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kais"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kzn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kokola"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kzo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kaningi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kzp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kaidipang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kzq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kaike"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kzr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Karang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kzs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sugut Dusun"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kzt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2016, 5, 30), - PreferredValue = "dtp", - Tag = null, - Description = [@"Tambunan Dusun"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kzu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kayupulau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kzv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Komyandaret"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kzw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Karirí-Xocó"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kzx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kamarian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kzy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kango (Tshopo District)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "kzz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kalabra"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "laa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Subanen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lab", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Linear A"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lac", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lacandon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lad", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ladino"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lae", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pattani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "laf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lafofa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lag", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rangi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lah", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lahnda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lai", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lambya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "laj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lango (Uganda)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lak", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2022, 2, 25), - PreferredValue = "ksp", - Tag = null, - Description = [@"Laka (Nigeria)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lal", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lalia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lam", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lamba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lan", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Laru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lap", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Laka (Chad)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "laq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Qabiao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lar", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Larteh"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "las", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lama (Togo)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lau", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Laba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "law", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lauje"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lax", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tiwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lay", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lama Bai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "laz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aribwatsa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lba", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2019, 4, 16), - PreferredValue = null, - Tag = null, - Description = [@"Lui"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lbb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Label"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lbc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lakkia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lbe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lbf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tinani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lbg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Laopang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lbi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"La'bi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lbj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ladakhi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lbk", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "bnc", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central Bontok"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lbl", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "bik", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Libon Bikol"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lbm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lodhi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lbn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rmeet"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lbo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Laven"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lbq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wampar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lbr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lohorung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lbs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Libyan Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lbt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lachi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lbu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Labu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lbv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lavatbura-Lamusong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lbw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tolaki"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lbx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lawangan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lby", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lamalama", @"Lamu-Lamu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lbz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lardil"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lcc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Legenyem"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lcd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lola"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lce", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Loncong", @"Sekak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lcf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lubu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lch", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Luchazi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lcl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lisela"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lcm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tungag"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lcp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Lawa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lcq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Luhu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lcs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lisabata-Nuniali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lda", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kla-Dan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ldb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dũya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ldd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Luri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ldg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lenyima"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ldh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lamja-Dengsa-Tola"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ldi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "kg", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Laari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ldj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lemoro"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ldk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Leelau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ldl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kaan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ldm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Landoma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ldn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Láadan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ldo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Loo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ldp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tso"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ldq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lufu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lea", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lega-Shabunda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "leb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lala-Bisa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lec", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Leco"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "led", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lendu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lee", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lyélé"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lef", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lelemi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "leg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2014, 2, 28), - PreferredValue = null, - Tag = null, - Description = [@"Lengua"], - Comments = [@"see enl, enx"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "leh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lenje"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lei", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lemio"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lej", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lengola"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lek", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Leipon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lel", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lele (Democratic Republic of Congo)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lem", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nomaande"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "len", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lenca"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "leo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Leti (Cameroon)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lep", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lepcha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "leq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lembena"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ler", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lenkau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "les", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "let", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lesing-Gelimi", @"Amio-Gelimi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "leu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kara (Papua New Guinea)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lev", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lamma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lew", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ledo Kaili"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lex", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Luang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ley", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lemolang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lez", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lezghian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lfa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lefa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lfb", - Added = new DateOnly(2026, 4, 9), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Buu (Cameroon)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lfn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lingua Franca Nova"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lga", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lungga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lgb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Laghu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lgg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lugbara"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lgh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Laghuu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lgi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lengilu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lgk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lingarak", @"Neverver"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lgl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wala"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lgm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lega-Mwenga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lgn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"T'apo", @"Opuuo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lgo", - Added = new DateOnly(2022, 2, 25), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lango (South Sudan)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lgq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Logba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lgr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lengo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lgs", - Added = new DateOnly(2023, 3, 17), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guinea-Bissau Sign Language", @"Língua Gestual Guineense"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lgt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pahi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lgu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Longgu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lgz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ligenza"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lha", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Laha (Viet Nam)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lhh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Laha (Indonesia)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lhi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lahu Shi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lhl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lahul Lohar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lhm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lhomi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lhn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lahanan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lhp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lhokpu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lhs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mlahsö"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lht", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lo-Toga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lhu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lahu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lia", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"West-Central Limba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lib", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Likum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lic", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hlai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lid", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyindrou"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lie", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Likila"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lif", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Limbu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lig", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ligbi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lih", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lihir"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lii", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2015, 2, 12), - PreferredValue = "raq", - Tag = null, - Description = [@"Lingkhim"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lij", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ligurian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lik", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lika"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lil", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lillooet"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lio", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Liki"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lip", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sekpele"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "liq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Libido"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lir", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Liberian English"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lis", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lisu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "liu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Logorik"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "liv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Liv"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "liw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Col"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lix", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Liabuku"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "liy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Banda-Bambari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "liz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Libinza"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lja", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Golpa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lje", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rampi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lji", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Laiyolo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ljl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Li'o"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ljp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lampung Api"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ljw", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yirandali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ljx", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yuru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lka", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lakalei"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lkb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "luy", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kabras", @"Lukabaras"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lkc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kucong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lkd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lakondê"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lke", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kenyi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lkh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lakha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lki", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Laki"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lkj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Remun"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lkl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Laeko-Libuat"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lkm", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kalaamaya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lkn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lakon", @"Vure"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lko", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "luy", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khayo", @"Olukhayo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lkr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Päri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lks", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "luy", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kisa", @"Olushisa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lkt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lakota"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lku", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kungkari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lky", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lokoya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lla", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lala-Roba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "llb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lolo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "llc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lele (Guinea)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lld", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ladin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lle", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lele (Papua New Guinea)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "llf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hermit"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "llg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lole"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "llh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lamu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lli", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Teke-Laali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "llj", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ladji Ladji"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "llk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lelak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lll", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lilau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "llm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lasalimu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lln", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lele (Chad)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "llo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2019, 4, 16), - PreferredValue = "ngt", - Tag = null, - Description = [@"Khlor"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "llp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"North Efate"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "llq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lolak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lls", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lithuanian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "llu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "llx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lauan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lma", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"East Limba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lmb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Merei"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lmc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Limilngan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lmd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lumun"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lme", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pévé"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lmf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"South Lembata"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lmg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lamogai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lmh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lambichhong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lmi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lombi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lmj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"West Lembata"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lmk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lamkang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lml", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hano"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lmm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2014, 2, 28), - PreferredValue = "rmx", - Tag = null, - Description = [@"Lamam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lmn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lambadi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lmo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lombard"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lmp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Limbum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lmq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lamatuka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lmr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lamalera"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lmu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lamenu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lmv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lomaiviti"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lmw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lake Miwok"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lmx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Laimbue"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lmy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lamboya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lmz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2020, 3, 28), - PreferredValue = null, - Tag = null, - Description = [@"Lumbee"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lna", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Langbashe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lnb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mbalanhu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lnd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lundayeh", @"Lun Bawang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lng", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Langobardic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lnh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lanoh"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lni", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Daantanai'"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lnj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Leningitij"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lnl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"South Central Banda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lnm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Langam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lnn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lorediakarkar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lno", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2022, 2, 25), - PreferredValue = null, - Tag = null, - Description = [@"Lango (South Sudan)"], - Comments = [@"see imt, lgo, lqr, oie"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lns", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lamnso'"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lnu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Longuda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lnw", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lanima"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lnz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lonzo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "loa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Loloda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lob", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lobi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "loc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Inonhan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "loe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Saluan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lof", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Logol"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "log", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Logo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "loh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Laarim", @"Narim"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "loi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Loma (Côte d'Ivoire)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "loj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lou"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lok", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Loko"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lol", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mongo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lom", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Loma (Liberia)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lon", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Malawi Lomwe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "loo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lombo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lop", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lopa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "loq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lobala"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lor", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Téén"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "los", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Loniu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lot", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Otuho"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lou", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Louisiana Creole"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lov", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lopi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "low", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tampias Lobu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lox", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Loun"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "loy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Loke"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "loz", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lozi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lpa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lelepa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lpe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lepki"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lpn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Long Phuri Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lpo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lipo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lpx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lopit"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lqr", - Added = new DateOnly(2022, 2, 25), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Logir"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lra", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rara Bakati'"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lrc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Luri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lre", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Laurentian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lrg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Laragia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lri", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "luy", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Marachi", @"Olumarachi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lrk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Loarki"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lrl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lrm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "luy", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Marama", @"Olumarama"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lrn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lorang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lro", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Laro"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lrr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Yamphu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lrt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Larantuka Malay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lrv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Larevat"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lrz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lemerig"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lsa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lasgerdi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lsb", - Added = new DateOnly(2021, 2, 20), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Burundian Sign Language", @"Langue des Signes Burundaise"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lsc", - Added = new DateOnly(2022, 2, 25), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Albarradas Sign Language", @"Lengua de señas Albarradas"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lsd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lishana Deni"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lse", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lusengo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lsg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2018, 3, 8), - PreferredValue = null, - Tag = null, - Description = [@"Lyons Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lsh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lish"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lsi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lashi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lsl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Latvian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lsm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "luy", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Saamia", @"Olusamia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lsn", - Added = new DateOnly(2019, 4, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tibetan Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lso", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Laos Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lsp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Panamanian Sign Language", @"Lengua de Señas Panameñas"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lsr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aruop"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lss", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lasi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lst", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Trinidad and Tobago Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lsv", - Added = new DateOnly(2019, 4, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sivia Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lsw", - Added = new DateOnly(2022, 2, 25), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = - [ - @"Seychelles Sign Language", - @"Lalang Siny Seselwa", - @"Langue des Signes Seychelloise", - ], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lsy", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mauritian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ltc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Late Middle Chinese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ltg", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "lv", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Latgalian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lth", - Added = new DateOnly(2017, 2, 23), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Thur"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lti", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Leti (Indonesia)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ltn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Latundê"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lto", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "luy", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tsotso", @"Olutsotso"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lts", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "luy", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tachoni", @"Lutachoni"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ltu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Latu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lua", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Luba-Lulua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "luc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aringa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lud", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ludian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lue", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Luvale"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "luf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Laua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "luh", - Added = new DateOnly(2024, 12, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zh", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Leizhou Chinese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lui", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Luiseño"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "luj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Luna"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "luk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lunanakha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lul", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Olu'bo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lum", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Luimbi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lun", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lunda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "luo", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Luo (Kenya and Tanzania)", @"Dholuo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lup", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lumbu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "luq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lucumi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lur", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Laura"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lus", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lushai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lut", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lushootseed"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "luu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lumba-Yakkha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "luv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Luwati"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "luw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Luo (Cameroon)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "luy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Luyia", @"Oluluyia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "luz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Luri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lva", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maku'a"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lvi", - Added = new DateOnly(2019, 4, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lavi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lvk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lavukaleve"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lvl", - Added = new DateOnly(2023, 3, 17), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lwel"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lvs", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "lv", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Standard Latvian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lvu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Levuka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lwa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lwalu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lwe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lewo Eleng"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lwg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "luy", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wanga", @"Oluwanga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lwh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"White Lachi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lwl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Lawa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lwm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Laomian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lwo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Luwo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lws", - Added = new DateOnly(2018, 3, 8), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Malawian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lwt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lewotobi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lwu", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lawu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lww", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lewo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lxm", - Added = new DateOnly(2021, 2, 20), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lakurumau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lya", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Layakha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lyg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lyngngam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lyn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Luyana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lzh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zh", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Literary Chinese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lzl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Litzlitz"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lzn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Leinong Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "lzz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Laz"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "maa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"San Jerónimo Tecóatl Mazatec"], - Comments = [@"see also pbm"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mab", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yutanduchi Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mad", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Madurese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mae", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bo-Rukul"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "maf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mafa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mag", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Magahi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mai", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Deva", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maithili"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "maj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jalapa De Díaz Mazatec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mak", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Makasar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mam", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "man", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mandingo", @"Manding"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "map", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Austronesian languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "maq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chiquihuitlán Mazatec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mas", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Masai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mat", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"San Francisco Matlatzinca"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mau", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Huautla Mazatec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mav", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sateré-Mawé"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "maw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mampruli"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "max", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"North Moluccan Malay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "maz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central Mazahua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mba", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Higaonon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mbb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Bukidnon Manobo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mbc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Macushi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mbd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dibabawon Manobo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mbe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Molale"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mbf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Baba Malay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mbh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mangseng"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mbi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ilianen Manobo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mbj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nadëb"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mbk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Malol"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mbl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maxakalí"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mbm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ombamba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mbn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Macaguán"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mbo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mbo (Cameroon)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mbp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Malayo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mbq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maisin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mbr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nukak Makú"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mbs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sarangani Manobo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mbt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Matigsalug Manobo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mbu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mbula-Bwazza"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mbv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mbulungish"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mbw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maring"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mbx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mari (East Sepik Province)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mby", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Memoni"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mbz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Amoltepec Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mca", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maca"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mcb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Machiguenga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mcc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bitur"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mcd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sharanahua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mce", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Itundujia Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mcf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Matsés"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mcg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mapoyo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mch", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maquiritari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mci", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mcj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mvanip"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mck", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mbunda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mcl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Macaguaje"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mcm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Malaccan Creole Portuguese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mcn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Masana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mco", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Coatlán Mixe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mcp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Makaa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mcq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mcr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Menya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mcs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mambai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mct", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mengisa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mcu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cameroon Mambila"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mcv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Minanibai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mcw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mawa (Chad)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mcx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mpiemo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mcy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"South Watut"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mcz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mawan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mda", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mada (Nigeria)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mdb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Morigi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mdc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Soq", @"Male (Papua New Guinea)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mdd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mbum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mde", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maba (Chad)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mdf", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Moksha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mdg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Massalat"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mdh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maguindanaon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mdi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mamvu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mdj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mangbetu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mdk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mangbutu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mdl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maltese Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mdm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mayogo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mdn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mbati"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mdp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mbala"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mdq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mbole"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mdr", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mandar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mds", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maria (Papua New Guinea)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mdt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mbere"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mdu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mboko"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mdv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Santa Lucía Monteverde Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mdw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mbosi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mdx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dizin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mdy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Male", @"Male (Ethiopia)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mdz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Suruí Do Pará"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mea", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Menka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "meb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ikobi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mec", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Marra"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "med", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Melpa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mee", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mengen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mef", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Megam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "meg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2013, 9, 10), - PreferredValue = "cir", - Tag = null, - Description = [@"Mea"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "meh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southwestern Tlaxiaco Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mei", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Midob"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mej", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Meyah"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mek", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mekeo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mel", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central Melanau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mem", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mangala"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "men", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mende (Sierra Leone)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "meo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kedah Malay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mep", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Miriwoong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "meq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Merey"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mer", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Meru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mes", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Masmaje"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "met", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mato"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "meu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Motu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mev", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mano"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mew", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maaka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mey", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hassaniyya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mez", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Menominee"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mfa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pattani Malay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mfb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bangka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mfc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mfd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mendankwe-Nkwen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mfe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Morisyen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mff", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Naki"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mfg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mogofin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mfh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Matal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mfi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wandala"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mfj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mefele"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mfk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"North Mofu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mfl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Putai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mfm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Marghi South"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mfn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cross River Mbembe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mfo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mbe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mfp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Makassar Malay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mfq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Moba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mfr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Marrithiyel"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mfs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mexican Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mft", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mokerang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mfu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mbwela"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mfv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mandjak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mfw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mulaha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mfx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Melo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mfy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mayo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mfz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mabaan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mga", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Middle Irish (900-1200)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mgb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mararit"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mgc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Morokodo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mgd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Moru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mge", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mango"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mgf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maklew"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mgg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mpumpong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mgh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Makhuwa-Meetto"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mgi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lijili"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mgj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Abureni"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mgk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mawes"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mgl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maleu-Kilenge"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mgm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mambae"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mgn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mbangi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mgo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Meta'"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mgp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Magar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mgq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Malila"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mgr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mambwe-Lungu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mgs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Manda (Tanzania)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mgt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mongol"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mgu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mailu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mgv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Matengo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mgw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Matumbi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mgx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2012, 8, 12), - PreferredValue = null, - Tag = null, - Description = [@"Omati"], - Comments = [@"see jbk, jmw"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mgy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mbunga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mgz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mbugwe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mha", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Manda (India)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mhb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mahongwe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mhc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mocho"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mhd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mbugu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mhe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Besisi", @"Mah Meri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mhf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mamaa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mhg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Margu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mhh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2014, 2, 28), - PreferredValue = null, - Tag = null, - Description = [@"Maskoy Pidgin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mhi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ma'di"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mhj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mogholi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mhk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mungaka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mhl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mauwake"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mhm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Makhuwa-Moniga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mhn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mòcheno"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mho", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mashi (Zambia)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mhp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Balinese Malay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mhq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mandan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mhr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "chm", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Mari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mhs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Buru (Indonesia)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mht", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mandahuaca"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mhu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Digaro-Mishmi", @"Darang Deng"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mhw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mbukushu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mhx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maru", @"Lhaovo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mhy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ma'anyan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mhz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mor (Mor Islands)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mia", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Miami"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mib", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Atatláhuca Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mic", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mi'kmaq", @"Micmac"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mid", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mandaic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mie", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ocotepec Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mif", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mofu-Gudur"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mig", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"San Miguel El Grande Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mih", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chayuco Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mii", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chigmecatitlán Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mij", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Abar", @"Mungbam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mik", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mikasuki"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mil", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Peñoles Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mim", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Alacatlatzala Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "min", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Minangkabau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mio", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pinotepa Nacional Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mip", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Apasco-Apoala Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "miq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mískito"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mir", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Isthmus Mixe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mis", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Special, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Uncoded languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mit", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Puebla Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "miu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cacaloxtepec Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "miw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Akoye"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mix", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mixtepec Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "miy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ayutla Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "miz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Coatzospan Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mja", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2011, 8, 16), - PreferredValue = null, - Tag = null, - Description = [@"Mahei"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mjb", - Added = new DateOnly(2016, 5, 30), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Makalero"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mjc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"San Juan Colorado Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mjd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northwest Maidu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mje", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Muskum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mjg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mjh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mwera (Nyasa)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mji", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kim Mun"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mjj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mawak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mjk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Matukar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mjl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mandeali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mjm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Medebur"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mjn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ma (Papua New Guinea)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mjo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Malankuravan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mjp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Malapandaram"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mjq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Malaryan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mjr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Malavedan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mjs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Miship"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mjt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sauria Paharia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mju", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Manna-Dora"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mjv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mannan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mjw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Karbi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mjx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mahali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mjy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mahican"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mjz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Majhi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mka", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mbre"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mkb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mal Paharia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mkc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Siliput"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mke", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mawchi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mkf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Miya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mkg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mak (China)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mkh", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mon-Khmer languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mki", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dhatki"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mkj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mokilese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mkk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Byep"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mkl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mokole"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mkm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Moklen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mkn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kupang Malay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mko", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mingang Doso"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mkp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Moikodi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mkq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bay Miwok"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mkr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Malas"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mks", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Silacayoapan Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mkt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vamale"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mku", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "man", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Konyanka Maninka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mkv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mafea"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mkw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kituba (Congo)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mkx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kinamiging Manobo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mky", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"East Makian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mkz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Makasae"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mla", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Malo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mlb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mbule"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mlc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cao Lan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mld", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2013, 9, 10), - PreferredValue = null, - Tag = null, - Description = [@"Malakhel"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mle", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Manambu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mlf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mlh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mape"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mli", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Malimpung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mlj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Miltu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mlk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ilwana", @"Kiwilwana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mll", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Malua Bay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mlm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mulam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mln", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Malango"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mlo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mlomp"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mlp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bargam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mlq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "man", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Maninkakan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mlr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vame"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mls", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Masalit"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mlu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"To'abaita"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mlv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Motlav", @"Mwotlap"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mlw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Moloko"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mlx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Malfaxal", @"Naha'ai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mlz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Malaynon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mma", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mama"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mmb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Momina"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mmc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Michoacán Mazahua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mmd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maonan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mme", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mae"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mmf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mundat"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mmg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"North Ambrym"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mmh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mehináku"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mmi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hember Avu", @"Amben", @"Musar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mmj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Majhwar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mmk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mukha-Dora"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mml", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Man Met"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mmm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maii"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mmn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mamanwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mmo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mangga Buang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mmp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Siawi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mmq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Musak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mmr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "hmn", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Xiangxi Miao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mmt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Malalamai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mmu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mmaala"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mmv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Miriti"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mmw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Emae"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mmx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Madak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mmy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Migaama"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mmz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mabaale"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mna", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mbula"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mnb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Muna"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mnc", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Manchu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mnd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mondé"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mne", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Naba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mnf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mundani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mng", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Mnong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mnh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mono (Democratic Republic of Congo)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mni", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Manipuri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mnj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Munji"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mnk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "man", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mandinka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mnl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tiale"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mnm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mapena"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mnn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Mnong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mno", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Manobo languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mnp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zh", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Min Bei Chinese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mnq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Minriq"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mnr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mono (USA)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mns", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mansi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mnt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2013, 9, 10), - PreferredValue = null, - Tag = null, - Description = [@"Maykulan"], - Comments = [@"see wnn, xyj, xyk, xyt"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mnu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mer"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mnv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rennell-Bellona"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mnw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mnx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Manikion"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mny", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Manyawa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mnz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Moni"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "moa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mwan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "moc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mocoví"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mod", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mobilian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "moe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Innu", @"Montagnais"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mof", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2010, 3, 11), - PreferredValue = null, - Tag = null, - Description = [@"Mohegan-Montauk-Narragansett"], - Comments = [@"see xnt, xpq"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mog", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mongondow"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "moh", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mohawk", @"Kanien'kéha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "moi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mboi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "moj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Monzombo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mok", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Morori"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mom", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mangue"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "moo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Monom"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mop", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mopán Maya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "moq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mor (Bomberai Peninsula)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mor", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Moro"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mos", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mossi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mot", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Barí"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mou", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mogum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mov", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mohave"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mow", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Moi (Congo)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mox", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Molima"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "moy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shekkacho"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "moz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mukulu", @"Gergiko"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mpa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mpoto"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mpb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Malak Malak", @"Mullukmulluk"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mpc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mangarrayi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mpd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Machinere"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mpe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Majang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mpg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Marba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mph", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mpi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mpade"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mpj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Martu Wangka", @"Wangkajunga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mpk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mbara (Chad)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mpl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Middle Watut"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mpm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yosondúa Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mpn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mindiri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mpo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Miu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mpp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Migabac"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mpq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Matís"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mpr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vangunu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mps", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dadibi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mpt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mpu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Makuráp"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mpv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mungkip"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mpw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mapidian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mpx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Misima-Panaeati"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mpy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mapia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mpz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mpi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mqa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maba (Indonesia)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mqb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mbuko"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mqc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mangole"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mqe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Matepi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mqf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Momuna"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mqg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kota Bangun Kutai Malay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mqh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tlazoyaltepec Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mqi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mariri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mqj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mamasa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mqk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rajah Kabunsuwan Manobo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mql", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mbelime"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mqm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"South Marquesan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mqn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Moronene"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mqo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Modole"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mqp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Manipa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mqq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Minokok"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mqr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mander"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mqs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"West Makian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mqt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mok"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mqu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mandari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mqv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mosimo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mqw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Murupi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mqx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mamuju"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mqy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Manggarai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mqz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pano"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mra", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mlabri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mrb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Marino"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mrc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maricopa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mrd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Magar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mre", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Martha's Vineyard Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mrf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Elseng"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mrg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mising"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mrh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mara Chin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mrj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "chm", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Mari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mrk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hmwaveke"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mrl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mortlockese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mrm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Merlav", @"Mwerlap"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mrn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cheke Holo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mro", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mrp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Morouas"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mrq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"North Marquesan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mrr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maria (India)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mrs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maragus"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mrt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Marghi Central"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mru", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mono (Cameroon)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mrv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mangareva"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mrw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maranao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mrx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maremgi", @"Dineor"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mry", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mandaya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mrz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Marind"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "msb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Masbatenyo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "msc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "man", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sankaran Maninka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "msd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yucatec Maya Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mse", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Musey"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "msf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mekwei"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "msg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Moraid"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "msh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "mg", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Masikoro Malagasy"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "msi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sabah Malay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "msj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ma (Democratic Republic of Congo)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "msk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mansaka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "msl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Molof", @"Poule"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "msm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Agusan Manobo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "msn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vurës"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mso", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mombum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "msp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maritsauá"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "msq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Caac"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "msr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mongolian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mss", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"West Masela"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mst", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2010, 3, 11), - PreferredValue = "mry", - Tag = null, - Description = [@"Cataelano Mandaya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "msu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Musom"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "msv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maslam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "msw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mansoanka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "msx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Moresada"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "msy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aruamu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "msz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Momare"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mta", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cotabato Manobo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mtb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Anyin Morofo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mtc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Munit"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mtd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mualang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mte", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mono (Solomon Islands)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mtf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Murik (Papua New Guinea)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mtg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Una"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mth", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Munggui"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mti", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maiwa (Papua New Guinea)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mtj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Moskona"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mtk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mbe'"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mtl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Montol"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mtm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mator"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mtn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Matagalpa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mto", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Totontepec Mixe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mtp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wichí Lhamtés Nocten"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mtq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Muong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mtr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "mwr", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mewari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mts", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yora"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mtt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mota"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mtu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tututepec Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mtv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Asaro'o"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mtw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Binukidnon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mtx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tidaá Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mty", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nabi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mua", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mundang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mub", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mubi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "muc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ajumbu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mud", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mednyj Aleut"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mue", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Media Lengua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mug", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Musgu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "muh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mündü"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mui", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Musi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "muj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mabire"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "muk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mugom"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mul", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Special, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Multiple languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mum", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maiwala"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mun", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Munda languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "muo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mup", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "raj", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Malvi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "muq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "hmn", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Xiangxi Miao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mur", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Murle"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mus", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Creek"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mut", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Muria"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "muu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yaaku"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "muv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Muthuvan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mux", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bo-Ung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "muy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Muyang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "muz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mursi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mva", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Manam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mvb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mattole"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mvd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mamboru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mve", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "mwr", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Marwari (Pakistan)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mvf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "mn", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Peripheral Mongolian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mvg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yucuañe Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mvh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mulgi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mvi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Miyako"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mvk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mekmek"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mvl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mbara (Australia)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mvm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2021, 2, 20), - PreferredValue = null, - Tag = null, - Description = [@"Muya"], - Comments = [@"see emq, wmg"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mvn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Minaveha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mvo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Marovo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mvp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Duri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mvq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Moere"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mvr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Marau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mvs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Massep"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mvt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mpotovoro"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mvu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Marfa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mvv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tagal Murut"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mvw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Machinga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mvx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Meoswar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mvy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Indus Kohistani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mvz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mesqan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mwa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mwatebu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mwb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Juwal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mwc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Are"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mwd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2013, 9, 10), - PreferredValue = null, - Tag = null, - Description = [@"Mudbura"], - Comments = [@"see dmw, xrq"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mwe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mwera (Chimwera)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mwf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Murrinh-Patha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mwg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aiklep"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mwh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mouk-Aria"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mwi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Labo", @"Ninde"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mwj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2015, 2, 12), - PreferredValue = "vaj", - Tag = null, - Description = [@"Maligo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mwk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "man", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kita Maninkakan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mwl", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mirandese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mwm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mwn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyamwanga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mwo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central Maewo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mwp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kala Lagaw Ya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mwq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mün Chin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mwr", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Marwari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mws", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mwimbi-Muthambi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mwt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Moken"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mwu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mittu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mwv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mentawai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mww", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "hmn", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hmong Daw"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mwx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2018, 3, 8), - PreferredValue = null, - Tag = null, - Description = [@"Mediak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mwy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2018, 3, 8), - PreferredValue = null, - Tag = null, - Description = [@"Mosiro"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mwz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Moingi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mxa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northwest Oaxaca Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mxb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tezoatlán Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mxc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Manyika"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mxd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Modang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mxe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mele-Fila"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mxf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Malgbe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mxg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mbangala"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mxh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mvuba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mxi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mozarabic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mxj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Miju-Mishmi", @"Geman Deng"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mxk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Monumbo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mxl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maxi Gbe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mxm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Meramera"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mxn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Moi (Indonesia)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mxo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mbowe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mxp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tlahuitoltepec Mixe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mxq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Juquila Mixe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mxr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Murik (Malaysia)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mxs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Huitepec Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mxt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jamiltepec Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mxu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mada (Cameroon)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mxv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Metlatónoc Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mxw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Namo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mxx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mahou", @"Mawukakan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mxy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southeastern Nochixtlán Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mxz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central Masela"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "myb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mbay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "myc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mayeka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "myd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2019, 4, 16), - PreferredValue = "aog", - Tag = null, - Description = [@"Maramba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mye", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Myene"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "myf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bambassi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "myg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Manta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "myh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Makah"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "myi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2019, 4, 16), - PreferredValue = null, - Tag = null, - Description = [@"Mina (India)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "myj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mangayat"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "myk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mamara Senoufo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "myl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Moma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mym", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Me'en"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "myn", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mayan languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "myo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Anfillo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "myp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pirahã"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "myq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "man", - Deprecated = new DateOnly(2013, 9, 10), - PreferredValue = null, - Tag = null, - Description = [@"Forest Maninka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "myr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Muniche"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mys", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mesmes"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "myt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2010, 3, 11), - PreferredValue = "mry", - Tag = null, - Description = [@"Sangab Mandaya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "myu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mundurukú"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "myv", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Erzya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "myw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Muyuw"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "myx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Masaaba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "myy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Macuna"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "myz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Classical Mandaic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mza", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Santa María Zacatepec Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mzb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tumzabt"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mzc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Madagascar Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mzd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Malimba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mze", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Morawa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mzg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Monastic Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mzh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wichí Lhamtés Güisnay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mzi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ixcatlán Mazatec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mzj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Manya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mzk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nigeria Mambila"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mzl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mazatlán Mixe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mzm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mumuye"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mzn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mazanderani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mzo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Matipuhy"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mzp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Movima"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mzq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mori Atas"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mzr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Marúbo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mzs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Macanese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mzt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mintil"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mzu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Inapang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mzv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Manza"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mzw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Deg"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mzx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mawayana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mzy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mozambican Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "mzz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maiadomu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "naa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Namla"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nab", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Nambikuára"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nac", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Narak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nad", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2016, 5, 30), - PreferredValue = "xny", - Tag = null, - Description = [@"Nijadali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nae", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Naka'ela"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "naf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nabak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nag", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Naga Pidgin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nah", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nahuatl languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nai", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"North American Indian languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "naj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nalu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nak", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nakanai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nal", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nalik"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nam", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngan'gityemerri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nan", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zh", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Min Nan Chinese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nao", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Naaba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nap", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Neapolitan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "naq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khoekhoe", @"Nama (Namibia)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nar", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Iguta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nas", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Naasioi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nat", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ca̱hungwa̱rya̱", @"Hungworo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "naw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nawuri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nax", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nakwi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nay", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngarrindjeri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "naz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Coatepec Nahuatl"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nba", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyemba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nbb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ndoe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nbc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chang Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nbd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngbinda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nbe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Konyak Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nbf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2011, 8, 16), - PreferredValue = null, - Tag = null, - Description = [@"Naxi"], - Comments = [@"see nru, nxq"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nbg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nagarchal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nbh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngamo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nbi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mao Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nbj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngarinyman"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nbk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nake"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nbm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngbaka Ma'bo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nbn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kuri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nbo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nkukoli"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nbp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nnam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nbq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nggem"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nbr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Numana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nbs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Namibian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nbt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Na"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nbu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rongmei Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nbv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngamambo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nbw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Ngbandi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nbx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2013, 9, 10), - PreferredValue = null, - Tag = null, - Description = [@"Ngura"], - Comments = [@"see ekc, gll, jbi, xpt, xwk"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nby", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ningera"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nca", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Iyo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ncb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central Nicobarese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ncc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ponam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ncd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nachering"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nce", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yale"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ncf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Notsi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ncg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nisga'a"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nch", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central Huasteca Nahuatl"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nci", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Classical Nahuatl"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ncj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Puebla Nahuatl"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nck", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Na-kara"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ncl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Michoacán Nahuatl"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ncm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nambo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ncn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nauna"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nco", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sibe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ncp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2018, 3, 8), - PreferredValue = "kdz", - Tag = null, - Description = [@"Ndaktup"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ncq", - Added = new DateOnly(2017, 2, 23), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Katang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ncr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ncane"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ncs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nicaraguan Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nct", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chothe Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ncu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chumburung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ncx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central Puebla Nahuatl"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ncz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Natchez"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nda", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ndasa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ndb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kenswei Nsei"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ndc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ndau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ndd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nde-Nsele-Nta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ndf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nadruvian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ndg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ndengereko"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ndh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ndali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ndi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Samba Leko"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ndj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ndamba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ndk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ndaka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ndl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ndolo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ndm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ndam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ndn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngundi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ndp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ndo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ndq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ndombe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ndr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ndoola"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nds", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Low German", @"Low Saxon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ndt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ndunga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ndu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dugun"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ndv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ndut"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ndw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ndobo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ndx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nduga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ndy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lutos"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ndz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ndogo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nea", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Ngad'a"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "neb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Toura (Côte d'Ivoire)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nec", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nedebang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ned", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nde-Gbite"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nee", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nêlêmwa-Nixumwak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nef", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nefamese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "neg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Negidal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "neh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyenkha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nei", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Neo-Hittite"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nej", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Neko"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nek", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Neku"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nem", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nemi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nen", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nengone"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "neo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ná-Meo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "neq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"North Central Mixe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ner", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yahadian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nes", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bhoti Kinnauri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "net", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nete"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "neu", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Neo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nev", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyaheun"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "new", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nepal Bhasa", @"Newar", @"Newari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nex", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Neme"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ney", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Neyo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nez", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nez Perce"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nfa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dhao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nfd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ahwai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nfl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ayiwo", @"Äiwoo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nfr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nafaanra"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nfu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mfumte"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nga", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngbaka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ngb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Ngbandi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ngc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngombe (Democratic Republic of Congo)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ngd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngando (Central African Republic)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nge", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngemba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ngf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Trans-New Guinea languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ngg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngbaka Manza"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ngh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nǁng"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ngi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngizim"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ngj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngie"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ngk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dalabon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ngl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lomwe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ngm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngatik Men's Creole"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ngn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngwo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ngo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2021, 2, 20), - PreferredValue = null, - Tag = null, - Description = [@"Ngoni"], - Comments = [@"see xnj, xnq"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ngp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngulu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ngq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngurimi", @"Ngoreme"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ngr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Engdewu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ngs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gvoko"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ngt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kriang", @"Ngeq"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ngu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guerrero Nahuatl"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ngv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nagumi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ngw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngwaba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ngx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nggwahyi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ngy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tibea"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ngz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngungwel"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nha", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nhanda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nhb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Beng"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nhc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tabasco Nahuatl"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nhd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "gn", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chiripá", @"Ava Guaraní"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nhe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Huasteca Nahuatl"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nhf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nhuwala"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nhg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tetelcingo Nahuatl"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nhh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nahari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nhi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zacatlán-Ahuacatlán-Tepetzintla Nahuatl"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nhk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Isthmus-Cosoleacaque Nahuatl"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nhm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Morelos Nahuatl"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nhn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central Nahuatl"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nho", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Takuu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nhp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Isthmus-Pajapan Nahuatl"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nhq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Huaxcaleca Nahuatl"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nhr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Naro"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nht", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ometepec Nahuatl"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nhu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Noone"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nhv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Temascaltepec Nahuatl"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nhw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Huasteca Nahuatl"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nhx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Isthmus-Mecayapan Nahuatl"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nhy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Oaxaca Nahuatl"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nhz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Santa María La Alta Nahuatl"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nia", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nias"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nib", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nakame"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nic", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Niger-Kordofanian languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nid", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngandi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nie", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Niellim"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nif", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nek"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nig", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngalakgan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nih", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyiha (Tanzania)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nii", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nii"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nij", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngaju"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nik", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Nicobarese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nil", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nila"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nim", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nilamba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nin", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ninzo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nio", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nganasan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "niq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "kln", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nandi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nir", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nimboran"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nis", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nimi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nit", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southeastern Kolami"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "niu", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Niuean"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "niv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gilyak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "niw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nimo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nix", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hema"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "niy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngiti"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "niz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ningil"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nja", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nzanyi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "njb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nocte Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "njd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ndonde Hamba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "njh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lotha Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nji", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gudanji"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "njj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Njen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "njl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Njalgulgule"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "njm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Angami Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "njn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Liangmai Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "njo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ao Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "njr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Njerep"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "njs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nisa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "njt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ndyuka-Trio Pidgin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nju", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngadjunmaya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "njx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kunyi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "njy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Njyem"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "njz", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyishi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nka", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nkoya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nkb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khoibu Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nkc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nkongho"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nkd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koireng"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nke", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Duke"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nkf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Inpui Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nkg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nekgini"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nkh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khezha Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nki", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Thangal Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nkj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nakai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nkk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nokuku"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nkm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Namat"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nkn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nkangala"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nko", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nkonya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nkp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Niuatoputapu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nkq", - Added = new DateOnly(2010, 4, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nkami"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nkr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nukuoro"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nks", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"North Asmat"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nkt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyika (Tanzania)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nku", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bouna Kulango"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nkv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyika (Malawi and Zambia)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nkw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nkutu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nkx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nkoroo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nkz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nkari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nla", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngombale"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nlc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nalca"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nle", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "luy", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"East Nyala"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nlg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gela"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nli", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Grangali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nlj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nlk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ninia Yali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nll", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nihali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nlm", - Added = new DateOnly(2018, 3, 8), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mankiyali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nln", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2012, 8, 12), - PreferredValue = null, - Tag = null, - Description = [@"Durango Nahuatl"], - Comments = [@"see azd, azn"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nlo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngul"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nlq", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lao Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nlr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2013, 9, 10), - PreferredValue = null, - Tag = null, - Description = [@"Ngarla"], - Comments = [@"see nrk, ywg"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nlu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nchumbulu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nlv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Orizaba Nahuatl"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nlw", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Walangama"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nlx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nahali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nly", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyamal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nlz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nalögo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nma", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maram Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nmb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Big Nambas", @"V'ënen Taut"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nmc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nmd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ndumu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nme", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mzieme Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nmf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tangkhul Naga (India)"], - Comments = [@"see ntx"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nmg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kwasio"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nmh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Monsang Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nmi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nmj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngombe (Central African Republic)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nmk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Namakura"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nml", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ndemli"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nmm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Manangba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nmn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"ǃXóõ"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nmo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Moyon Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nmp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nimanbur"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nmq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nambya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nmr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nimbari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nms", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Letemboi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nmt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Namonuito"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nmu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northeast Maidu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nmv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngamini"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nmw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nimoa", @"Rifao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nmx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nama (Papua New Guinea)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nmy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Namuyi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nmz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nawdm"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nna", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyangumarta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nnb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nande"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nnc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nancere"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nnd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"West Ambae"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nne", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngandyera"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nnf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngaing"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nng", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maring Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nnh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngiemboon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nni", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"North Nuaulu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nnj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyangatom"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nnk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nankina"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nnl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Rengma Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nnm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Namia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nnn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngete"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nnp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wancho Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nnq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngindo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nnr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Narungga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nns", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2019, 4, 16), - PreferredValue = "nbr", - Tag = null, - Description = [@"Ningye"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nnt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nanticoke"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nnu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dwang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nnv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nugunu (Australia)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nnw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Nuni"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nnx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2015, 2, 12), - PreferredValue = "ngv", - Tag = null, - Description = [@"Ngong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nny", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyangga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nnz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nda'nda'"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "noa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Woun Meu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "noc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nuk"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nod", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Thai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "noe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nimadi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nof", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nomane"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nog", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nogai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "noh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nomu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "noi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Noiri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "noj", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nonuya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nok", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nooksack", @"Lhéchelesem"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nol", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nomlaki"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nom", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2023, 3, 17), - PreferredValue = "cbr", - Tag = null, - Description = [@"Nocamán"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "non", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old Norse"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "noo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2011, 8, 16), - PreferredValue = null, - Tag = null, - Description = [@"Nootka"], - Comments = [@"see dtd, nuk"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nop", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Numanggang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "noq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngongo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nos", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Nisu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "not", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nomatsiguenga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nou", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ewage-Notu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nov", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Novial"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "now", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyambo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "noy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Noy"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "noz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nayi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "npa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nar Phu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "npb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nupbikha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "npg", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ponyo-Gongwang Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nph", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Phom Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "npi", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ne", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nepali (individual language)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "npl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southeastern Puebla Nahuatl"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "npn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mondropolon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "npo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pochuri Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nps", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nipsan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "npu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Puimei Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "npx", - Added = new DateOnly(2017, 2, 23), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Noipx"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "npy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Napu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nqg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Nago"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nqk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kura Ede Nago"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nql", - Added = new DateOnly(2017, 2, 23), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngendelengo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nqm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ndom"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nqn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nqo", - Added = new DateOnly(2006, 6, 5), - SuppressScript = "Nkoo", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"N'Ko", @"N’Ko"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nqq", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kyan-Karyaw Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nqt", - Added = new DateOnly(2021, 2, 20), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nteng"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nqy", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Akyaung Ari Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nra", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngom"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nrb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nara"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nrc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Noric"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nre", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Rengma Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nrf", - Added = new DateOnly(2015, 2, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jèrriais", @"Guernésiais", @"Sercquiais"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nrg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Narango"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nri", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chokri Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nrk", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngarla"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nrl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngarluma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nrm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Narom"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nrn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Norn"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nrp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"North Picene"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nrr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Norra", @"Nora"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nrt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Kalapuya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nru", - Added = new DateOnly(2011, 8, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Narua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nrx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngurmbur"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nrz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lala"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nsa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sangtam Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nsb", - Added = new DateOnly(2020, 3, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lower Nossob"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nsc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nshi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nsd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Nisu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nse", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nsenga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nsf", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northwestern Nisu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nsg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngasa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nsh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngoshie"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nsi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nigerian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nsk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Naskapi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nsl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Norwegian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nsm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sumi Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nsn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nehan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nso", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pedi", @"Northern Sotho", @"Sepedi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nsp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nepalese Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nsq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Sierra Miwok"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nsr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maritime Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nss", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nst", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tase Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nsu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sierra Negra Nahuatl"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nsv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southwestern Nisu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nsw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Navut"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nsx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nsongo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nsy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nasal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nsz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nisenan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ntd", - Added = new DateOnly(2016, 5, 30), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Tidung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nte", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2024, 12, 12), - PreferredValue = "eko", - Tag = null, - Description = [@"Nathembo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ntg", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngantangarra"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nti", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Natioro"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ntj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngaanyatjarra"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ntk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ikoma-Nata-Isenye"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ntm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nateni"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nto", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ntomba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ntp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Tepehuan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ntr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Delo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nts", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2016, 5, 30), - PreferredValue = "pij", - Tag = null, - Description = [@"Natagaimas"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ntu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Natügu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ntw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nottoway"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ntx", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tangkhul Naga (Myanmar)"], - Comments = [@"see nmf"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nty", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mantsi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ntz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Natanzi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nua", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yuanga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nub", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nubian languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nuc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nukuini"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nud", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngala"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nue", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngundu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nuf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nusu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nug", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nungali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nuh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ndunda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nui", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngumbi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nuj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyole"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nuk", - Added = new DateOnly(2011, 8, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nuu-chah-nulth", @"Nuuchahnulth"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nul", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nusa Laut"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "num", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Niuafo'ou"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nun", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Anong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nuo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nguôn"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nup", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nupe-Nupe-Tako"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nuq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nukumanu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nur", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nukuria"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nus", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nuer"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nut", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nung (Viet Nam)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nuu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngbundu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nuv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Nuni"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nuw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nguluwan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nux", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mehek"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nuy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nunggubuyu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nuz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tlamacazapa Nahuatl"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nvh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nasarian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nvm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Namiae"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nvo", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyokon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nwa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nawathinehena"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nwb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyabwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nwc", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Classical Newari", @"Classical Nepal Bhasa", @"Old Newari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nwe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngwe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nwg", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngayawung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nwi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southwest Tanna"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nwm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyamusa-Molo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nwo", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nauo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nwr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nawaru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nww", - Added = new DateOnly(2022, 2, 25), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ndwewe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nwx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Middle Newar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nwy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nottoway-Meherrin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nxa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nauete"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nxd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngando (Democratic Republic of Congo)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nxe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nage"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nxg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngad'a"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nxi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nindi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nxk", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koki Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nxl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"South Nuaulu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nxm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Numidian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nxn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngawun"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nxo", - Added = new DateOnly(2015, 2, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ndambomo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nxq", - Added = new DateOnly(2011, 8, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Naxi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nxr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ninggerum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nxu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2020, 3, 28), - PreferredValue = "bpp", - Tag = null, - Description = [@"Narau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nxx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nafri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nyb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyangbo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nyc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyanga-li"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nyd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "luy", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyore", @"Olunyole"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nye", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyengo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nyf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Giryama", @"Kigiryama"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nyg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyindu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nyh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyikina"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nyi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ama (Sudan)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nyj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyanga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nyk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyaneka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nyl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyeu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nym", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyamwezi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nyn", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyankole"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nyo", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyoro"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nyp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyang'i"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nyq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nayini"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nyr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyiha (Malawi)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nys", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyungar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nyt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyawaygi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nyu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyungwe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nyv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyulnyul"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nyw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyaw"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nyx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nganyaywana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nyy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyakyusa-Ngonde"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nza", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tigon Mbembe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nzb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Njebi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nzd", - Added = new DateOnly(2018, 3, 8), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nzadi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nzi", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nzima"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nzk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nzakara"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nzm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zeme Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nzr", - Added = new DateOnly(2023, 3, 17), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dir-Nyamzak-Mbarimi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nzs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"New Zealand Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nzu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Teke-Nzikou"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nzy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nzakambay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "nzz", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nanga Dama Dogon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "oaa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Orok"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "oac", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Oroch"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "oak", - Added = new DateOnly(2025, 5, 14), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Noakhali", @"Noakhailla"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "oar", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = - [ - @"Old Aramaic (up to 700 BCE)", - @"Ancient Aramaic (up to 700 BCE)", - ], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "oav", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old Avar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "obi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Obispeño"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "obk", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "bnc", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Bontok"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "obl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Oblo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "obm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Moabite"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "obo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Obo Manobo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "obr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old Burmese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "obt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old Breton"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "obu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Obulom"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "oca", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ocaina"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "och", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old Chinese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ocm", - Added = new DateOnly(2021, 2, 20), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old Cham"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "oco", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old Cornish"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ocu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Atzingo Matlatzinca"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "oda", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Odut"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "odk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Od"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "odt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old Dutch"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "odu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Odual"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ofo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ofo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ofs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old Frisian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ofu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Efutop"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ogb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ogbia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ogc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ogbah"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "oge", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old Georgian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ogg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ogbogolo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ogo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ogu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ogbronuagum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "oht", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old Hittite"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ohu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old Hungarian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "oia", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Oirata"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "oie", - Added = new DateOnly(2022, 2, 25), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Okolie"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "oin", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Inebu One"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ojb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "oj", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northwestern Ojibwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ojc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "oj", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central Ojibwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ojg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "oj", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Ojibwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ojp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old Japanese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ojs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "oj", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Severn Ojibwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ojv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ontong Java"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ojw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "oj", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Ojibwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "oka", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Okanagan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "okb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Okobo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "okc", - Added = new DateOnly(2021, 2, 20), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kobo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "okd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Okodia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "oke", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Okpe (Southwestern Edo)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "okg", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koko Babangk"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "okh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koresh-e Rostam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "oki", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "kln", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Okiek"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "okj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Oko-Juwoi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "okk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kwamtim One"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "okl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old Kentish Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "okm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Middle Korean (10th-16th cent.)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "okn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Oki-No-Erabu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "oko", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old Korean (3rd-9th cent.)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "okr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kirike"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "oks", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Oko-Eni-Osayen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "oku", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Oku"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "okv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Orokaiva"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "okx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Okpe (Northwestern Edo)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "okz", - Added = new DateOnly(2021, 2, 20), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old Khmer"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ola", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Walungge"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "olb", - Added = new DateOnly(2026, 4, 9), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Oli-Bodiman"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "old", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mochi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ole", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Olekha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "olk", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Olkol"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "olm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Oloma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "olo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Livvi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "olr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Olrat"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "olt", - Added = new DateOnly(2014, 2, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old Lithuanian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "olu", - Added = new DateOnly(2016, 5, 30), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kuvale"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "oma", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Omaha-Ponca"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "omb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"East Ambae"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "omc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mochica"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ome", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2016, 5, 30), - PreferredValue = null, - Tag = null, - Description = [@"Omejes"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "omg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Omagua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "omi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Omi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "omk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Omok"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "oml", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ombo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "omn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Minoan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "omo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Utarmbung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "omp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old Manipuri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "omq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Oto-Manguean languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "omr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old Marathi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "omt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Omotik"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "omu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Omurano"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "omv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Omotic languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "omw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"South Tairora"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "omx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old Mon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "omy", - Added = new DateOnly(2021, 2, 20), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old Malay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ona", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ona"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "onb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lingao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "one", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Oneida"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ong", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Olo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "oni", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Onin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "onj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Onjob"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "onk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kabore One"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "onn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Onobasulu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ono", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Onondaga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "onp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sartang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "onr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern One"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ons", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ono"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ont", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ontenu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "onu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Unua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "onw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old Nubian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "onx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Onin Based Pidgin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ood", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tohono O'odham"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "oog", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "oon", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Önge"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "oor", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Oorlams"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "oos", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old Ossetic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "opa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Okpamheri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "opk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kopkaka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "opm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Oksapmin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "opo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Opao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "opt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Opata"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "opy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ofayé"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ora", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Oroha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "orc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "om", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Orma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ore", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Orejón"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "org", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Oring"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "orh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Oroqen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "orn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Orang Kanaq"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "oro", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Orokolo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "orr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Oruma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ors", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Orang Seletar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ort", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Adivasi Oriya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "oru", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ormuri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "orv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old Russian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "orw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Oro Win"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "orx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Oro"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ory", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "or", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Odia (individual language)", @"Oriya (individual language)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "orz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ormu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "osa", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Osage"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "osc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Oscan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "osd", - Added = new DateOnly(2026, 4, 9), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Digor Ossetic", @"Digor", @"Digor Ossetian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "osi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Osing"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "osn", - Added = new DateOnly(2021, 2, 20), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old Sundanese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "oso", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ososo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "osp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old Spanish"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ost", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Osatu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "osu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern One"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "osx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old Saxon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ota", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ottoman Turkish (1500-1928)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "otb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old Tibetan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "otd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ot Danum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ote", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mezquital Otomi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "oti", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Oti"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "otk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old Turkish"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "otl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tilapa Otomi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "otm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Highland Otomi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "otn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tenango Otomi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "oto", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Otomian languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "otq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Querétaro Otomi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "otr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Otoro"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ots", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Estado de México Otomi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ott", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Temoaya Otomi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "otu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Otuke"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "otw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "oj", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ottawa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "otx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Texcatepec Otomi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "oty", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old Tamil"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "otz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ixtenco Otomi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "oua", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tagargrent"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "oub", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Glio-Oubi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "oue", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Oune"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "oui", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old Uighur"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "oum", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ouma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "oun", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2015, 2, 12), - PreferredValue = "vaj", - Tag = null, - Description = [@"ǃOǃung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ovd", - Added = new DateOnly(2016, 6, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Elfdalian", @"Övdalian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "owi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Owiniga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "owl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old Welsh"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "oyb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Oy"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "oyd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Oyda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "oym", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wayampi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "oyy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Oya'oya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ozm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koonzime"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "paa", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Papuan languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pab", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Parecís"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pac", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pacoh"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pad", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Paumarí"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pae", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pagibete"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "paf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Paranawát"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pag", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pangasinan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pah", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tenharim"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pai", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pak", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Parakanã"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pal", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pahlavi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pam", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pampanga", @"Kapampangan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pao", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Paiute"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pap", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Papiamento"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "paq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Parya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "par", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Panamint", @"Timbisha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pas", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Papasena"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pat", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2021, 2, 20), - PreferredValue = "kxr", - Tag = null, - Description = [@"Papitalai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pau", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Palauan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pav", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pakaásnovos"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "paw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pawnee"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pax", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pankararé"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pay", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pech"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "paz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pankararú"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pbb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Páez"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pbc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Patamona"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pbe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mezontla Popoloca"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pbf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Coyotepec Popoloca"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pbg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Paraujano"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pbh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"E'ñapa Woromaipu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pbi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Parkwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pbl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mak (Nigeria)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pbm", - Added = new DateOnly(2018, 3, 8), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Puebla Mazatec"], - Comments = [@"see also maa"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pbn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kpasam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pbo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Papel"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pbp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Badyara"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pbr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pangwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pbs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central Pame"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pbt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ps", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Pashto"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pbu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ps", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Pashto"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pbv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pnar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pby", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pyu (Papua New Guinea)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pbz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2012, 8, 12), - PreferredValue = null, - Tag = null, - Description = [@"Palu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pca", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Santa Inés Ahuatempan Popoloca"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pcb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pear"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pcc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bouyei"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pcd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Picard"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pce", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ruching Palaung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pcf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Paliyan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pcg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Paniya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pch", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pardhan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pci", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Duruwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pcj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Parenga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pck", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Paite Chin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pcl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pardhi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pcm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nigerian Pidgin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pcn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Piti"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pcp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pacahuara"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pcr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2013, 9, 10), - PreferredValue = "adx", - Tag = null, - Description = [@"Panang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pcw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pyapun"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pda", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Anam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pdc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pennsylvania German"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pdi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pa Di"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pdn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Podena", @"Fedan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pdo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Padoe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pdt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Plautdietsch"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pdu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kayan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pea", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Peranakan Indonesian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "peb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Pomo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ped", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mala (Papua New Guinea)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pee", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Taje"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pef", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northeastern Pomo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "peg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pengo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "peh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bonan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pei", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chichimeca-Jonaz"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pej", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Pomo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pek", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Penchal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pel", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pekal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pem", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Phende"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "peo", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old Persian (ca. 600-400 B.C.)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pep", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kunja"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "peq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Pomo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pes", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "fa", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Iranian Persian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pev", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pémono"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pex", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Petats"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pey", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Petjo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pez", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Penan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pfa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pááfang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pfe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pere"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pfl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pfaelzisch"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pga", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sudanese Creole Arabic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pgd", - Added = new DateOnly(2015, 2, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gāndhārī"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pgg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pangwali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pgi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pagi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pgk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rerep"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pgl", - Added = new DateOnly(2011, 8, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Primitive Irish"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pgn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Paelignian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pgs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pangseng"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pgu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pagu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pgy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2012, 8, 12), - PreferredValue = null, - Tag = null, - Description = [@"Pongyong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pgz", - Added = new DateOnly(2016, 5, 30), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Papua New Guinean Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pha", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pa-Hng"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "phd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Phudagi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "phg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Phuong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "phh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Phukha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "phi", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Philippine languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "phj", - Added = new DateOnly(2022, 2, 25), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pahari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "phk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Phake"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "phl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Phalura", @"Palula"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "phm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Phimbi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "phn", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Phoenician"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pho", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Phunoi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "phq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Phana'"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "phr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "lah", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pahari-Potwari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pht", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Phu Thai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "phu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Phuan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "phv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pahlavani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "phw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Phangduwali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pia", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pima Bajo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pib", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yine"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pic", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pinji"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pid", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Piaroa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pie", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Piro"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pif", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pingelapese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pig", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pisabo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pih", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pitcairn-Norfolk"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pii", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2022, 2, 25), - PreferredValue = null, - Tag = null, - Description = [@"Pini"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pij", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pijao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pil", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yom"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pim", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Powhatan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pin", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Piame"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pio", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Piapoco"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pip", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pero"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pir", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Piratapuyo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pis", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pijin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pit", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pitta Pitta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "piu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pintupi-Luritja"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "piv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pileni", @"Vaeakau-Taumako"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "piw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pimbwe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pix", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Piu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "piy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Piya-Kwonci"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "piz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pije"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pjt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pitjantjatjara"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pka", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ardhamāgadhī Prākrit"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pkb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pokomo", @"Kipfokomo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pkc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Paekche"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pkg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pak-Tong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pkh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pankhu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pkn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pakanha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pko", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "kln", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pökoot"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pkp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pukapuka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pkr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Attapady Kurumba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pks", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pakistan Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pkt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maleng"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pku", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Paku"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pla", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Miani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "plb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Polonombauk"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "plc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central Palawano"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pld", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Polari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ple", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Palu'e"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "plf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central Malayo-Polynesian languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "plg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pilagá"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "plh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Paulohi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "plj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2023, 3, 17), - PreferredValue = null, - Tag = null, - Description = [@"Polci"], - Comments = [@"see nzr, pze, uly, zlu"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "plk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kohistani Shina"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pll", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shwe Palaung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pln", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Palenquero"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "plo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Oluta Popoluca"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "plp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2020, 3, 28), - PreferredValue = null, - Tag = null, - Description = [@"Palpa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "plq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Palaic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "plr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Palaka Senoufo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pls", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = - [ - @"San Marcos Tlacoyalco Popoloca", - @"San Marcos Tlalcoyalco Popoloca", - ], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "plt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "mg", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Plateau Malagasy"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "plu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Palikúr"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "plv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southwest Palawano"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "plw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Brooke's Point Palawano"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ply", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bolyu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "plz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Paluan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pma", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Paama"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pmb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pambia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pmc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2016, 5, 30), - PreferredValue = "huw", - Tag = null, - Description = [@"Palumata"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pmd", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pallanganmiddang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pme", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pwaamei"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pmf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pamona"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pmh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Māhārāṣṭri Prākrit"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pmi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Pumi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pmj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Pumi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pmk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2023, 3, 17), - PreferredValue = "crr", - Tag = null, - Description = [@"Pamlico"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pml", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lingua Franca"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pmm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pomo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pmn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pmo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pom"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pmq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Pame"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pmr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Paynamar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pms", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Piemontese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pmt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tuamotuan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pmu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "lah", - Deprecated = new DateOnly(2015, 2, 12), - PreferredValue = "phr", - Tag = null, - Description = [@"Mirpur Panjabi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pmw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Plains Miwok"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pmx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Poumei Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pmy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Papuan Malay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pmz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Pame"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pna", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Punan Bah-Biau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pnb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "lah", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Panjabi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pnc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pannei"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pnd", - Added = new DateOnly(2019, 4, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mpinda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pne", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Penan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "png", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pangu", @"Pongu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pnh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Penrhyn"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pni", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aoheng"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pnj", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pinjarup"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pnk", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Paunaka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pnl", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Paleni"], - Comments = [@"see also wbf"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pnm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Punan Batu 1"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pnn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pinai-Hagahai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pno", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Panobo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pnp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pancana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pnq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pana (Burkina Faso)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pnr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Panim"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pns", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ponosakan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pnt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pontic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pnu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jiongnai Bunu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pnv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pinigura"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pnw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Banyjima", @"Panytyima"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pnx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Phong-Kniang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pny", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pinyin"], - Comments = - [ - @"a Niger-Congo language spoken in Cameroon; not to be confused with the Pinyin romanization systems used for Chinese and Tibetan", - ], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pnz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pana (Central African Republic)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "poc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Poqomam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pod", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2016, 5, 30), - PreferredValue = null, - Tag = null, - Description = [@"Ponares"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "poe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"San Juan Atzingo Popoloca"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pof", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Poke"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pog", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Potiguára"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "poh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Poqomchi'"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "poi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Highland Popoluca"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pok", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pokangá"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pom", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southeastern Pomo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pon", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pohnpeian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "poo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central Pomo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pop", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pwapwâ"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "poq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Texistepec Popoluca"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pos", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sayula Popoluca"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pot", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Potawatomi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pov", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Upper Guinea Crioulo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pow", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"San Felipe Otlaltepec Popoloca"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pox", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Polabian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "poy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pogolo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "poz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Malayo-Polynesian languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ppa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2016, 5, 30), - PreferredValue = "bfy", - Tag = null, - Description = [@"Pao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ppe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Papi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ppi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Paipai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ppk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Uma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ppl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pipil", @"Nicarao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ppm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Papuma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ppn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Papapana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ppo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Folopa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ppp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pelende"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ppq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pei"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ppr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2013, 9, 10), - PreferredValue = "lcq", - Tag = null, - Description = [@"Piru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pps", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"San Luís Temalacayuca Popoloca"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ppt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pare"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ppu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Papora"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pqa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pa'a"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pqe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Malayo-Polynesian languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pqm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Malecite-Passamaquoddy"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pqw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Malayo-Polynesian languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pra", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Prakrit languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "prb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2017, 2, 23), - PreferredValue = null, - Tag = null, - Description = [@"Lua'"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "prc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Parachi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "prd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Parsi-Dari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pre", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Principense"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "prf", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Paranan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "prg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Prussian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "prh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Porohanon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pri", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Paicî"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "prk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Parauk"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "prl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Peruvian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "prm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kibiri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "prn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Prasuni"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pro", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old Provençal (to 1500)", @"Old Occitan (to 1500)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "prp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2023, 3, 17), - PreferredValue = "gu", - Tag = null, - Description = [@"Parsi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "prq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ashéninka Perené"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "prr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Puri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "prs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "fa", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dari", @"Afghan Persian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "prt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Phai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pru", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Puragi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "prw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Parawen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "prx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Purik"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pry", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2016, 5, 30), - PreferredValue = "prt", - Tag = null, - Description = [@"Pray 3"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "prz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Providencia Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "psa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Asue Awyu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "psc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Iranian Sign Language", @"Persian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "psd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Plains Indian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pse", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central Malay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "psg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Penang Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "psh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southwest Pashai", @"Southwest Pashayi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "psi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southeast Pashai", @"Southeast Pashayi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "psl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Puerto Rican Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "psm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pauserna"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "psn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Panasuan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pso", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Polish Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "psp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Philippine Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "psq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pasi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "psr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Portuguese Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pss", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kaulong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pst", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ps", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central Pashto"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "psu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sauraseni Prākrit"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "psw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Port Sandwich"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "psy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Piscataway"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pta", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pai Tavytera"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pth", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pataxó Hã-Ha-Hãe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pti", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pindiini", @"Wangkatha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ptn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Patani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pto", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zo'é"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ptp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Patep"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ptq", - Added = new DateOnly(2014, 4, 6), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pattapu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ptr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Piamatsina"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ptt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Enrekang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ptu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bambam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ptv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Port Vato"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ptw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pentlatch"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pty", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pathiya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pua", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Highland Purepecha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pub", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Purum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "puc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Punan Merap"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pud", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Punan Aput"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pue", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Puelche"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "puf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Punan Merah"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pug", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Phuie"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pui", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Puinave"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "puj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Punan Tubu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "puk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2017, 2, 23), - PreferredValue = null, - Tag = null, - Description = [@"Pu Ko"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pum", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Puma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "puo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Puoc"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pup", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pulabu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "puq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Puquina"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pur", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Puruborá"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "put", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Putoh"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "puu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Punu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "puw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Puluwatese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pux", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Puare"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "puy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Purisimeño"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "puz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2014, 2, 28), - PreferredValue = "pub", - Tag = null, - Description = [@"Purum Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pwa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pawaia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pwb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Panawa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pwg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gapapaiwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pwi", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Patwin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pwm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Molbog"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pwn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Paiwan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pwo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pwo Western Karen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pwr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Powari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pww", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pwo Northern Karen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pxm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Quetzaltepec Mixe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pye", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pye Krumen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pym", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Fyam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pyn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Poyanáwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pys", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Paraguayan Sign Language", @"Lengua de Señas del Paraguay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pyu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Puyuma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pyx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pyu (Myanmar)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pyy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pyen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pze", - Added = new DateOnly(2023, 3, 17), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pesse"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pzh", - Added = new DateOnly(2022, 2, 25), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pazeh"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "pzn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jejara Naga", @"Para Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qaa..qtz", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.PrivateUse, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Private use"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qua", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Quapaw"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qub", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "qu", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Huallaga Huánuco Quechua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "quc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"K'iche'", @"Quiché"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qud", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "qu", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Calderón Highland Quichua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "quf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "qu", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lambayeque Quechua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qug", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "qu", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chimborazo Highland Quichua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "quh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "qu", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"South Bolivian Quechua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qui", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Quileute"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "quk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "qu", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chachapoyas Quechua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qul", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "qu", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"North Bolivian Quechua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qum", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sipacapense"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qun", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Quinault"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qup", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "qu", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Pastaza Quechua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "quq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Quinqui"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qur", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "qu", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yanahuanca Pasco Quechua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qus", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "qu", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Santiago del Estero Quichua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "quv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sacapulteco"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "quw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "qu", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tena Lowland Quichua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qux", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "qu", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yauyos Quechua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "quy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "qu", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ayacucho Quechua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "quz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "qu", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cusco Quechua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qva", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "qu", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ambo-Pasco Quechua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qvc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "qu", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cajamarca Quechua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qve", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "qu", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Apurímac Quechua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qvh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "qu", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Huamalíes-Dos de Mayo Huánuco Quechua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qvi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "qu", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Imbabura Highland Quichua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qvj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "qu", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Loja Highland Quichua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qvl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "qu", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cajatambo North Lima Quechua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qvm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "qu", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Margos-Yarowilca-Lauricocha Quechua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qvn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "qu", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"North Junín Quechua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qvo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "qu", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Napo Lowland Quechua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qvp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "qu", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pacaraos Quechua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qvs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "qu", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"San Martín Quechua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qvw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "qu", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Huaylla Wanca Quechua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qvy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Queyu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qvz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "qu", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Pastaza Quichua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qwa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "qu", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Corongo Ancash Quechua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qwc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "qu", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Classical Quechua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qwe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Quechuan (family)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qwh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "qu", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Huaylas Ancash Quechua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qwm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kuman (Russia)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qws", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "qu", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sihuas Ancash Quechua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qwt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kwalhioqua-Tlatskanai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qxa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "qu", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chiquián Ancash Quechua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qxc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "qu", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chincha Quechua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qxh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "qu", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Panao Huánuco Quechua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qxl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "qu", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Salasaca Highland Quichua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qxn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "qu", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Conchucos Ancash Quechua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qxo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "qu", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Conchucos Ancash Quechua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qxp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "qu", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Puno Quechua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qxq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Qashqa'i"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qxr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "qu", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cañar Highland Quichua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qxs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Qiang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qxt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "qu", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Santa Ana de Tusi Pasco Quechua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qxu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "qu", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Arequipa-La Unión Quechua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qxw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "qu", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jauja Wanca Quechua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qya", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Quenya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "qyp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Quiripi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "raa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dungmali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rab", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Camling"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rac", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rasawa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rad", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rade"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "raf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Meohang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rag", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "luy", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Logooli", @"Lulogooli"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rah", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rabha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rai", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ramoaaina"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "raj", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rajasthani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rak", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tulu-Bohuai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ral", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ralte"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ram", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Canela"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ran", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Riantana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rao", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rap", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rapanui"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "raq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Saam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rar", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rarotongan", @"Cook Islands Maori"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ras", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tegali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rat", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Razajerdi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rau", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Raute"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rav", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sampang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "raw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rawang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rax", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ray", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rapa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "raz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rahambuu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rbb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rumai Palaung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rbk", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "bnc", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Bontok"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rbl", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "bik", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Miraya Bikol"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rbp", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Barababaraba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rcf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Réunion Creole French"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rdb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rudbari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rea", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rerau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "reb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rembong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ree", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rejang Kayan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "reg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kara (Tanzania)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rei", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Reli"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rej", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rejang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rel", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rendille"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rem", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Remo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ren", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rengao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rer", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rer Bare"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "res", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Reshe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ret", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Retta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rey", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Reyesano"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rga", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Roria"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rge", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Romano-Greek"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rgk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rangkas"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rgn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Romagnol"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rgr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Resígaro"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rgs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Roglai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rgu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ringgou"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rhg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rohingya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rhp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yahang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ria", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Riang (India)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rib", - Added = new DateOnly(2022, 2, 25), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bribri Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rie", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2017, 2, 23), - PreferredValue = null, - Tag = null, - Description = [@"Rien"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rif", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tarifit"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ril", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Riang Lang", @"Riang (Myanmar)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rim", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyaturu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rin", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nungu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rir", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ribun"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rit", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ritharrngu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "riu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Riung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rjg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rajong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rji", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Raji"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rjs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rajbanshi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rka", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kraol"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rkb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rikbaktsa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rkh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rakahanga-Manihiki"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rki", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rakhine"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rkm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Marka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rkt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rangpuri", @"Kamta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rkw", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Arakwal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rma", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rama"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rmb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rembarrnga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rmc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "rom", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Carpathian Romani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rmd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Traveller Danish"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rme", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Angloromani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rmf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "rom", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kalo Finnish Romani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rmg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Traveller Norwegian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rmh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Murkim"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rmi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lomavren"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rmk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Romkun"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rml", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "rom", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Baltic Romani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rmm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Roma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rmn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "rom", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Balkan Romani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rmo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "rom", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sinte Romani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rmp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rempi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rmq", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Caló"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rmr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2010, 3, 11), - PreferredValue = null, - Tag = null, - Description = [@"Caló"], - Comments = [@"see emx, rmq"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rms", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Romanian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rmt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Domari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rmu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tavringer Romani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rmv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Romanova"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rmw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "rom", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Welsh Romani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rmx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Romam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rmy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "rom", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vlax Romani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rmz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Marma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rna", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2016, 5, 30), - PreferredValue = null, - Tag = null, - Description = [@"Runa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rnb", - Added = new DateOnly(2022, 2, 25), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Brunca Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rnd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ruund"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rng", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ronga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rnl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ranglong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rnn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Roon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rnp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rongpo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rnr", - Added = new DateOnly(2012, 8, 20), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nari Nari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rnw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rungwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "roa", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Romance languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rob", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tae'"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "roc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cacgia Roglai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rod", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rogo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "roe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ronji"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rof", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rombo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rog", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Roglai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rol", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Romblomanon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rom", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Romany"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "roo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rotokas"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rop", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kriol"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ror", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rongga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rou", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Runga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "row", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dela-Oenale"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rpn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Repanbitip"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rpt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rapting"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rri", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ririo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rrm", - Added = new DateOnly(2024, 3, 4), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Moriori"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rro", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Waima"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rrt", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Arritinngithigh"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rsb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Romano-Serbian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rsi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2017, 2, 23), - PreferredValue = null, - Tag = null, - Description = [@"Rennellese Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rsk", - Added = new DateOnly(2022, 2, 25), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ruthenian", @"Rusnak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rsl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Russian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rsm", - Added = new DateOnly(2016, 5, 30), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Miriwoong Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rsn", - Added = new DateOnly(2022, 2, 25), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rwandan Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rsw", - Added = new DateOnly(2023, 3, 17), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rishiwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rtc", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rungtu Chin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rth", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ratahan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rtm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rotuman"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rts", - Added = new DateOnly(2015, 2, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yurats"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rtw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rathawi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rub", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gungu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ruc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ruuli"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rue", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rusyn"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ruf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Luguru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rug", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Roviana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ruh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ruga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rui", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rufiji"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ruk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Che"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ruo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Istro Romanian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rup", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Macedo-Romanian", @"Aromanian", @"Arumanian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ruq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Megleno Romanian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rut", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rutul"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ruu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lanas Lobu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ruy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mala (Nigeria)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ruz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ruma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rwa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rawo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rwk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rwl", - Added = new DateOnly(2021, 2, 20), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ruwila"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rwm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Amba (Uganda)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rwo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rawa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rwr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "mwr", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Marwari (India)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rxd", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngardi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rxw", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Karuwali", @"Garuwali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ryn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Amami-Oshima"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rys", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yaeyama"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ryu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central Okinawan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "rzh", - Added = new DateOnly(2016, 5, 30), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rāziḥī"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "saa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Saba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sab", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Buglere"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sac", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Meskwaki"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sad", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sandawe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sae", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sabanê"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "saf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Safaliba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sah", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yakut"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sai", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"South American Indian languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "saj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sahu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sak", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sake"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sal", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Salishan languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sam", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Samaritan Aramaic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sao", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sause"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sap", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2014, 2, 28), - PreferredValue = null, - Tag = null, - Description = [@"Sanapaná"], - Comments = [@"see aqt, spn"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "saq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Samburu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sar", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Saraveca"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sas", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sasak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sat", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Santali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sau", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Saleman"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sav", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Saafi-Saafi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "saw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sawi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sax", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "say", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Saya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "saz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Saurashtra"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sba", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngambay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sbb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Simbo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sbc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kele (Papua New Guinea)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sbd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Samo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sbe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Saliba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sbf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chabu", @"Shabo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sbg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Seget"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sbh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sori-Harengan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sbi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Seti"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sbj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Surbakhal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sbk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Safwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sbl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Botolan Sambal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sbm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sagala"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sbn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sindhi Bhil"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sbo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sabüm"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sbp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sangu (Tanzania)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sbq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sileibi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sbr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sembakung Murut"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sbs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Subiya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sbt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kimki"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sbu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Stod Bhoti"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sbv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sabine"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sbw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Simba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sbx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Seberuang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sby", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Soli"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sbz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sara Kaba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sca", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2012, 8, 12), - PreferredValue = "hle", - Tag = null, - Description = [@"Sansu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "scb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chut"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sce", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dongxiang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "scf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"San Miguel Creole French"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "scg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sanggau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sch", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sakachep"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sci", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sri Lankan Creole Malay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sck", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sadri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "scl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shina"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "scn", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sicilian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sco", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Scots"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "scp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hyolmo", @"Helambu Sherpa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "scq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sa'och"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "scs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "den", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"North Slavey"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sct", - Added = new DateOnly(2017, 2, 23), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Katang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "scu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shumcho"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "scv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sheni"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "scw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "scx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sicel"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "scz", - Added = new DateOnly(2026, 4, 9), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shaetlan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sda", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Toraja-Sa'dan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sdb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shabak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sdc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "sc", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sassarese Sardinian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sde", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Surubu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sdf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sarli"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sdg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Savi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sdh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ku", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Kurdish"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sdj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Suundi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sdk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sos Kundi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sdl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Saudi Arabian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sdm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2020, 3, 28), - PreferredValue = null, - Tag = null, - Description = [@"Semandang"], - Comments = [@"see ebc, gef, sdq"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sdn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "sc", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gallurese Sardinian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sdo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bukar-Sadung Bidayuh"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sdp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sherdukpen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sdq", - Added = new DateOnly(2020, 3, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Semandang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sdr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Oraon Sadri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sds", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sened"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sdt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shuadit"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sdu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sarudu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sdv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Sudanic languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sdx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sibu Melanau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sdz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sallands"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sea", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Semai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "seb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shempire Senoufo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sec", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sechelt", @"She shashishalhem"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sed", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sedang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "see", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Seneca"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sef", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cebaara Senoufo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "seg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Segeju"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "seh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sena"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sei", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Seri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sej", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sene"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sek", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sekani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sel", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Selkup"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sem", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Semitic languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sen", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nanerigé Sénoufo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "seo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Suarmin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sep", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sìcìté Sénoufo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "seq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Senara Sénoufo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ser", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Serrano"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ses", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koyraboro Senni Songhai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "set", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sentani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "seu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Serui-Laut"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sev", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyarafolo Senoufo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sew", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sewa Bay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sey", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Secoya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sez", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Senthang Chin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sfb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = - [ - @"Langue des signes de Belgique Francophone", - @"French Belgian Sign Language", - ], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sfe", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Subanen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sfm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "hmn", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Small Flowery Miao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sfs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"South African Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sfw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sehwi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sga", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old Irish (to 900)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sgb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mag-antsi Ayta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sgc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "kln", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kipsigis"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sgd", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Surigaonon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sge", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Segai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sgg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Swiss-German Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sgh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shughni"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sgi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Suga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sgj", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Surgujia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sgk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sangkong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sgl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2010, 3, 11), - PreferredValue = null, - Tag = null, - Description = [@"Sanglechi-Ishkashimi"], - Comments = [@"see isk, sgy"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sgm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Singa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sgn", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sign languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sgo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2015, 2, 12), - PreferredValue = null, - Tag = null, - Description = [@"Songa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sgp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Singpho"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sgr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sangisari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sgs", - Added = new DateOnly(2010, 7, 26), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Samogitian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sgt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Brokpake"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sgu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Salas"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sgw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sebat Bet Gurage"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sgx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sierra Leone Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sgy", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sanglechi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sgz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sursurunga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sha", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shall-Zwall"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "shb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ninam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "shc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sonde"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "shd", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kundal Shahi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "she", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sheko"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "shg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "shh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shoshoni"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "shi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tachelhit"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "shj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shatt"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "shk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shilluk"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "shl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shendu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "shm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shahrudi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "shn", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sho", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shanga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "shp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shipibo-Conibo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "shq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sala"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "shr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "shs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shuswap", @"Secwepemctsín"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sht", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shasta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "shu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chadian Arabic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "shv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shehri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "shw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shwai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "shx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"She"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "shy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tachawit"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "shz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Syenara Senoufo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sia", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Akkala Sami"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sib", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sebop"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sid", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sidamo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sie", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Simaa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sif", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Siamou"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sig", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Paasaal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sih", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zire", @"Sîshëë"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sii", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shom Peng"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sij", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Numbami"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sik", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sikiana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sil", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tumulung Sisaala"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sim", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mende (Papua New Guinea)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sio", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Siouan languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sip", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sikkimese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "siq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sonia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sir", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Siri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sis", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Siuslaw"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sit", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sino-Tibetan languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "siu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sinagen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "siv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sumariup"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "siw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Siwai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "six", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sumau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "siy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sivandi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "siz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Siwi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sja", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Epena"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sjb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sajau Basap"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sjc", - Added = new DateOnly(2024, 12, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zh", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shaojiang Chinese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sjd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kildin Sami"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sje", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pite Sami"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sjg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Assangori"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sjk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kemi Sami"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sjl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sajalong", @"Miji"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sjm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mapun"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sjn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sindarin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sjo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Xibe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sjp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Surjapuri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sjr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Siar-Lak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sjs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Senhaja De Srair"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sjt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ter Sami"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sju", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ume Sami"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sjw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shawnee"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ska", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Skagit"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "skb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Saek"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "skc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ma Manda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "skd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Sierra Miwok"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ske", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Seke (Vanuatu)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "skf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sakirabiá"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "skg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "mg", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sakalava Malagasy"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "skh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sikule"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ski", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sika"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "skj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Seke (Nepal)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "skk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2017, 2, 23), - PreferredValue = "oyb", - Tag = null, - Description = [@"Sok"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "skm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kutong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "skn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kolibugan Subanon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sko", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Seko Tengah"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "skp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sekapan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "skq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sininkere"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "skr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "lah", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Saraiki", @"Seraiki"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sks", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "skt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sakata"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sku", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sakao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "skv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Skou"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "skw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Skepi Creole Dutch"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "skx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Seko Padang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sky", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sikaiana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "skz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sekar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sla", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Slavic languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "slc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sáliba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sld", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sissala"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sle", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sholaga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "slf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Swiss-Italian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "slg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Selungai Murut"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "slh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Puget Sound Salish"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sli", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lower Silesian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "slj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Salumá"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sll", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Salt-Yui"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "slm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pangutaran Sama"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sln", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Salinan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "slp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lamaholot"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "slq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2023, 3, 17), - PreferredValue = null, - Tag = null, - Description = [@"Salchuq"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "slr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Salar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sls", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Singapore Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "slt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sila"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "slu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Selaru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "slw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sialum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "slx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Salampasu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sly", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Selayar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "slz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ma'ya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sma", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Sami"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "smb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Simbari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "smc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Som"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "smd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2022, 2, 25), - PreferredValue = "kmb", - Tag = null, - Description = [@"Sama"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "smf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Auwe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "smg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Simbali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "smh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Samei"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "smi", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sami languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "smj", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lule Sami"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "smk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bolinao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sml", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central Sama"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "smm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Musasa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "smn", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Inari Sami"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "smp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Samaritan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "smq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Samo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "smr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Simeulue"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sms", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Skolt Sami"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "smt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Simte"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "smu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Somray"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "smv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Samvedi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "smw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sumbawa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "smx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Samba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "smy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Semnani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "smz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Simeku"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "snb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2022, 2, 25), - PreferredValue = "iba", - Tag = null, - Description = [@"Sebuyau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "snc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sinaugoro"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sne", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bau Bidayuh"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "snf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Noon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sng", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sanga (Democratic Republic of Congo)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "snh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2017, 2, 23), - PreferredValue = null, - Tag = null, - Description = [@"Shinabo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sni", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sensi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "snj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Riverain Sango"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "snk", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Soninke"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "snl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sangil"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "snm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Ma'di"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "snn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Siona"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sno", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Snohomish"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "snp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Siane"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "snq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sangu (Gabon)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "snr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sihan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sns", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"South West Bay", @"Nahavaq"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "snu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Senggi", @"Viid"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "snv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sa'ban"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "snw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Selee"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "snx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sny", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Saniyo-Hiyewe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "snz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kou"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "soa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Thai Song"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sob", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sobei"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "soc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"So (Democratic Republic of Congo)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sod", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Songoora"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "soe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Songomeno"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sog", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sogdian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "soh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "soi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sonha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "soj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Soi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sok", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sokoro"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sol", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Solos"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "son", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Songhai languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "soo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Songo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sop", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Songe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "soq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kanasi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sor", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Somrai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sos", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Seeku"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sou", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Thai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sov", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sonsorol"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sow", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sowanda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sox", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Swo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "soy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Miyobe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "soz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Temi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "spb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sepa (Indonesia)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "spc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sapé"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "spd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Saep"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "spe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sepa (Papua New Guinea)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "spg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "spi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Saponi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "spk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sengo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "spl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Selepet"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "spm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Akukem"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "spn", - Added = new DateOnly(2014, 2, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sanapaná"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "spo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Spokane"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "spp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Supyire Senoufo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "spq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Loreto-Ucayali Spanish"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "spr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Saparua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sps", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Saposa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "spt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Spiti Bhoti"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "spu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sapuan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "spv", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "or", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sambalpuri", @"Kosli"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "spx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"South Picene"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "spy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "kln", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sabaot"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sqa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shama-Sambuga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sqh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sqj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Albanian languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sqk", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Albanian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sqm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Suma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sqn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Susquehannock"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sqo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sorkhei"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sqq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sou"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sqr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Siculo Arabic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sqs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sri Lankan Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sqt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Soqotri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "squ", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Squamish", @"Sḵwx̱wú7mesh sníchim"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sqx", - Added = new DateOnly(2021, 2, 20), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kufr Qassem Sign Language (KQSL)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sra", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Saruga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "srb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sora"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "src", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "sc", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Logudorese Sardinian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sre", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sara"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "srf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nafi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "srg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sulod"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "srh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sarikoli"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sri", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Siriano"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "srk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Serudung Murut"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "srl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Isirawa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "srm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Saramaccan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "srn", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sranan Tongo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sro", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "sc", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Campidanese Sardinian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "srq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sirionó"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "srr", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Serer"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "srs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tsuut'ina", @"Sarsi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "srt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sauri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sru", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Suruí"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "srv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Sorsoganon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "srw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Serua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "srx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sirmauri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sry", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sera"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "srz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shahmirzadi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ssa", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nilo-Saharan languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ssb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Sama"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ssc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Suba-Simbiti"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ssd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Siroi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sse", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Balangingi", @"Bangingih Sama"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ssf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Thao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ssg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Seimat"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ssh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shihhi Arabic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ssi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sansi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ssj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sausi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ssk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sunam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ssl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Sisaala"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ssm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Semnam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ssn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Waata"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sso", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sissano"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ssp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Spanish Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ssq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"So'a"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ssr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Swiss-French Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sss", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sô"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sst", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sinasina"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ssu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Susuami"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ssv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shark Bay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ssx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Samberigi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ssy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Saho"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ssz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sengseng"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sta", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Settla"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "stb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Subanen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "std", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sentinel"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ste", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Liana-Seti"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "stf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Seta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "stg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Trieng"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sth", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shelta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sti", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bulo Stieng"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "stj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Matya Samo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "stk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Arammba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "stl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Stellingwerfs"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "stm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Setaman"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "stn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Owa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sto", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Stoney"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "stp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southeastern Tepehuan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "stq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Saterfriesisch"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "str", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Straits Salish"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sts", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shumashti"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "stt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Budeh Stieng"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "stu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Samtao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "stv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Silt'e"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "stw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Satawalese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sty", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Siberian Tatar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sua", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sulka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sub", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Suku"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "suc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Subanon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sue", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Suena"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sug", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Suganga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sui", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Suki"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "suj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shubi"], - Comments = [@"see also xsj"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "suk", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sukuma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sul", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2010, 3, 11), - PreferredValue = null, - Tag = null, - Description = [@"Surigaonon"], - Comments = [@"see sgd, tgn"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sum", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2010, 3, 11), - PreferredValue = null, - Tag = null, - Description = [@"Sumo-Mayangna"], - Comments = [@"see ulw, yan"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "suo", - Added = new DateOnly(2021, 2, 20), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bouni"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "suq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tirmaga-Chai Suri", @"Suri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sur", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mwaghavul"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sus", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Susu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sut", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Subtiaba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "suv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Puroik"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "suw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sumbwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sux", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sumerian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "suy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Suyá"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "suz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sunwar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sva", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Svan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "svb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ulau-Suain"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "svc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vincentian Creole English"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sve", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Serili"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "svk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Slovakian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "svm", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Slavomolisano"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "svr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2016, 5, 30), - PreferredValue = null, - Tag = null, - Description = [@"Savara"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "svs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Savosavo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "svx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Skalvian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "swb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maore Comorian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "swc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "sw", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Congo Swahili"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "swf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sere"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "swg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Swabian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "swh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "sw", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Swahili (individual language)", @"Kiswahili"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "swi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sui"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "swj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sira"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "swk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Malawi Sena"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "swl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Swedish Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "swm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Samosa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "swn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sawknah"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "swo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shanenawa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "swp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Suau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "swq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sharwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "swr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Saweru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sws", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Seluwasan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "swt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sawila"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "swu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Suwawa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "swv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "mwr", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shekhawati"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sww", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sowa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "swx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Suruahá"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "swy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sarua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sxb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Suba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sxc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sicanian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sxe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sighu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sxg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shuhi", @"Shixing"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sxk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Kalapuya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sxl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Selian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sxm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Samre"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sxn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sangir"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sxo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sorothaptic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sxr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Saaroa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sxs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sasaru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sxu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Upper Saxon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sxw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Saxwe Gbe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sya", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Siang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "syb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central Subanen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "syc", - Added = new DateOnly(2007, 4, 3), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Classical Syriac"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "syd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Samoyedic languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "syi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Seki"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "syk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sukur"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "syl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sylheti"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sym", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maya Samo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "syn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Senaya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "syo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Suoy"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "syr", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Syriac"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sys", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sinyar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "syw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kagate"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "syx", - Added = new DateOnly(2015, 2, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Samay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "syy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Al-Sayyid Bedouin Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sza", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Semelai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "szb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngalum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "szc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Semaq Beri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "szd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2023, 3, 17), - PreferredValue = "umi", - Tag = null, - Description = [@"Seru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "sze", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Seze"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "szg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sengele"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "szl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Silesian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "szn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sula"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "szp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Suabo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "szs", - Added = new DateOnly(2017, 2, 23), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Solomon Islands Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "szv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Isubu", @"Isu (Fako Division)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "szw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sawai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "szy", - Added = new DateOnly(2019, 4, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sakizaya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "taa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lower Tanana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tab", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tabassaran"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tac", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lowland Tarahumara"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tad", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tause"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tae", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tariana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "taf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tapirapé"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tag", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tagoi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tai", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tai languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "taj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Tamang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tak", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tala"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tal", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tan", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tangale"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tao", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yami"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tap", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Taabwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "taq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "tmh", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tamasheq"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tar", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central Tarahumara"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tas", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tay Boi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tau", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Upper Tanana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tav", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tatuyo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "taw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tax", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tamki"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tay", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Atayal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "taz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tocho"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tba", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aikanã"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tbb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2020, 3, 28), - PreferredValue = null, - Tag = null, - Description = [@"Tapeba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tbc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Takia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tbd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kaki Ae"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tbe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tanimbili"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tbf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mandara"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tbg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"North Tairora"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tbh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dharawal", @"Thurawal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tbi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gaam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tbj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tiang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tbk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Calamian Tagbanwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tbl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tboli"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tbm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tagbu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tbn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Barro Negro Tunebo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tbo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tawala"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tbp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Taworta", @"Diebroud"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tbq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tibeto-Burman languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tbr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tumtum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tbs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tanguat"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tbt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tembo (Kitembo)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tbu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tubar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tbv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tobo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tbw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tagbanwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tbx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kapin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tby", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tabaru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tbz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ditammari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tca", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ticuna"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tcb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tanacross"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tcc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Datooga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tcd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tafi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tce", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Tutchone"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tcf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Malinaltepec Me'phaa", @"Malinaltepec Tlapanec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tcg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tamagario"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tch", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Turks And Caicos Creole English"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tci", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wára"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tck", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tchitchege"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tcl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Taman (Myanmar)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tcm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tanahmerah"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tcn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tichurong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tco", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Taungyo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tcp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tawr Chin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tcq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kaiy"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tcs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Torres Strait Creole", @"Yumplatok"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tct", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"T'en"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tcu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southeastern Tarahumara"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tcw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tecpatlán Totonac"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tcx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Toda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tcy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tulu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tcz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Thado Chin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tda", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tagdal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tdb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Panchpargania"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tdc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Emberá-Tadó"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tdd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tai Nüa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tde", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tiranige Diga Dogon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tdf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Talieng"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tdg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Tamang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tdh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Thulung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tdi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tomadino"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tdj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tajio"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tdk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tambas"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tdl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sur"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tdm", - Added = new DateOnly(2016, 5, 30), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Taruma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tdn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tondano"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tdo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Teme"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tdq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tita"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tdr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Todrah"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tds", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Doutai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tdt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tetun Dili"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tdu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2016, 5, 30), - PreferredValue = "dtp", - Tag = null, - Description = [@"Tempasuk Dusun"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tdv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Toro"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tdx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "mg", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tandroy-Mahafaly Malagasy"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tdy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tadyawan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tea", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Temiar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "teb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tetete"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tec", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "kln", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Terik"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ted", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tepo Krumen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tee", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Huehuetla Tepehua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tef", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Teressa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "teg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Teke-Tege"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "teh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tehuelche"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tei", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Torricelli"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tek", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ibali Teke"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tem", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Timne"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ten", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tama (Colombia)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "teo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Teso"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tep", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tepecano"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "teq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Temein"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ter", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tereno"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tes", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tengger"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tet", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tetum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "teu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Soo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tev", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Teor"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tew", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tewa (USA)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tex", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tennet"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tey", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tulishi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tez", - Added = new DateOnly(2018, 3, 8), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tetserret"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tfi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tofin Gbe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tfn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tanaina"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tfo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tefaro"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tfr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Teribe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tft", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ternate"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tga", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sagalla"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tgb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tobilung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tgc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tigak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tgd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ciwogai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tge", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Gorkha Tamang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tgf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chalikha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tgg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2013, 9, 10), - PreferredValue = null, - Tag = null, - Description = [@"Tangga"], - Comments = [@"see bjp, hrc, hrw"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tgh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tobagonian Creole English"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tgi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lawunuia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tgj", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tagin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tgn", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tandaganon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tgo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sudest"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tgp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tangoa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tgq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tring"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tgr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tareng"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tgs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nume"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tgt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central Tagbanwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tgu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tanggu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tgv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tingui-Boto"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tgw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tagwana Senoufo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tgx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tagish"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tgy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Togoyo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tgz", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tagalaka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "thc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2016, 5, 30), - PreferredValue = "tpo", - Tag = null, - Description = [@"Tai Hang Tong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "thd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kuuk Thaayorre", @"Thayore"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "the", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chitwania Tharu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "thf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Thangmi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "thh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Tarahumara"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "thi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tai Long"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "thk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tharaka", @"Kitharaka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "thl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dangaura Tharu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "thm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aheu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "thn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Thachanadan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "thp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Thompson", @"Nłeʔkepmxcín", @"Thompson River Salish"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "thq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kochila Tharu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "thr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rana Tharu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ths", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Thakali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tht", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tahltan", @"Tāłtān"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "thu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Thuri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "thv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "tmh", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tahaggart Tamahaq"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "thw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2020, 6, 8), - PreferredValue = "ola", - Tag = null, - Description = [@"Thudam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "thx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2015, 2, 12), - PreferredValue = "oyb", - Tag = null, - Description = [@"The"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "thy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "thz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "tmh", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tayart Tamajeq"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tia", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tidikelt Tamazight"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tic", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tira"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tid", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2016, 5, 30), - PreferredValue = null, - Tag = null, - Description = [@"Tidong"], - Comments = [@"see itd, ntd"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tie", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2011, 8, 16), - PreferredValue = "ras", - Tag = null, - Description = [@"Tingal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tif", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tifal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tig", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tigre"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tih", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Timugon Murut"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tii", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tiene"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tij", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tilung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tik", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tikar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "til", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tillamook"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tim", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Timbe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tin", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tindi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tio", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Teop"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tip", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Trimuris"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tiq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tiéfo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tis", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Masadiit Itneg"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tit", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tinigua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tiu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Adasen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tiv", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tiv"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tiw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tiwi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tix", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Tiwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tiy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tiruray"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tiz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tai Hongjin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tja", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tajuasohn"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tjg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tunjung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tji", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Tujia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tjj", - Added = new DateOnly(2019, 4, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tjungundji"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tjl", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tai Laing"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tjm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Timucua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tjn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tonjon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tjo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Temacine Tamazight"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tjp", - Added = new DateOnly(2019, 4, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tjupany"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tjs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Tujia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tju", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tjurruru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tjw", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Djabwurrung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tka", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Truká"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tkb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Buksa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tkd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tukudede"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tke", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Takwane"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tkf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tukumanféd"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tkg", - Added = new DateOnly(2011, 8, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "mg", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tesaka Malagasy"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tkk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2011, 8, 16), - PreferredValue = "twm", - Tag = null, - Description = [@"Takpa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tkl", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tokelau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tkm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Takelma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tkn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Toku-No-Shima"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tkp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tikopia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tkq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tee"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tkr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tsakhur"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tks", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Takestani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tkt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kathoriya Tharu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tku", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Upper Necaxa Totonac"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tkv", - Added = new DateOnly(2014, 2, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mur Pano"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tkw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Teanu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tkx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tangko"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tkz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Takua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tla", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southwestern Tepehuan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tlb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tobelo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tlc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yecuatla Totonac"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tld", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Talaud"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tlf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Telefol"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tlg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tofanma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tlh", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Klingon", @"tlhIngan Hol"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tli", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tlingit"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tlj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Talinga-Bwisi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tlk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Taloki"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tll", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tetela"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tlm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tolomako"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tln", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Talondo'"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tlo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Talodi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tlp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Filomena Mata-Coahuitlán Totonac"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tlq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tai Loi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tlr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Talise"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tls", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tambotalo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tlt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sou Nama", @"Teluti"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tlu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tulehu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tlv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Taliabu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tlw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2012, 8, 12), - PreferredValue = "weo", - Tag = null, - Description = [@"South Wemale"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tlx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khehek"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tly", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Talysh"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tma", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tama (Chad)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tmb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Katbol", @"Avava"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tmc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tumak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tmd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Haruai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tme", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tremembé"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tmf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Toba-Maskoy"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tmg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ternateño"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tmh", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tamashek"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tmi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tutuba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tmj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Samarokena"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tmk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2023, 3, 17), - PreferredValue = "tdg", - Tag = null, - Description = [@"Northwestern Tamang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tml", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tamnim Citak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tmm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tai Thanh"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tmn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Taman (Indonesia)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tmo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Temoq"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tmp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2016, 5, 30), - PreferredValue = "tyj", - Tag = null, - Description = [@"Tai Mène"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tmq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tumleo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tmr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jewish Babylonian Aramaic (ca. 200-1200 CE)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tms", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tima"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tmt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tasmate"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tmu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Iau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tmv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tembo (Motembo)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tmw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Temuan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tmy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tami"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tmz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tamanaku"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tna", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tacana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tnb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Tunebo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tnc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tanimuca-Retuarã"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tnd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Angosturas Tunebo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tne", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2016, 5, 30), - PreferredValue = "kak", - Tag = null, - Description = [@"Tinoc Kallahan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tnf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2010, 3, 11), - PreferredValue = "prs", - Tag = null, - Description = [@"Tangshewi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tng", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tobanga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tnh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maiani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tni", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tandia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tnk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kwamera"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tnl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lenakel"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tnm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tabla"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tnn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"North Tanna"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tno", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Toromono"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tnp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Whitesands"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tnq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Taino"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tnr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ménik"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tns", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tenis"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tnt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tontemboan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tnu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tay Khang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tnv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tangchangya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tnw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tonsawang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tnx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tanema"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tny", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tongwe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tnz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ten'edn"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tob", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Toba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "toc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Coyutla Totonac"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tod", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Toma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "toe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2016, 5, 30), - PreferredValue = null, - Tag = null, - Description = [@"Tomedes"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tof", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gizrra"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tog", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tonga (Nyasa)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "toh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gitonga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "toi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tonga (Zambia)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "toj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tojolabal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tok", - Added = new DateOnly(2022, 2, 25), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Toki Pona"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tol", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tolowa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tom", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tombulu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "too", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Xicotepec De Juárez Totonac"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "top", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Papantla Totonac"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "toq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Toposa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tor", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Togbo-Vara Banda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tos", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Highland Totonac"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tou", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tho"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tov", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Upper Taromi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tow", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jemez"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tox", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tobian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "toy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Topoiyo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "toz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"To"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tpa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Taupota"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tpc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Azoyú Me'phaa", @"Azoyú Tlapanec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tpe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tippera"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tpf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tarpia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tpg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kula"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tpi", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tok Pisin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tpj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tapieté"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tpk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tupinikin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tpl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tlacoapa Me'phaa", @"Tlacoapa Tlapanec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tpm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tampulma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tpn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tupinambá"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tpo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tai Pao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tpp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pisaflores Tepehua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tpq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tukpa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tpr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tuparí"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tpt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tlachichilco Tepehua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tpu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tampuan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tpv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tanapag"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tpw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2023, 3, 17), - PreferredValue = "tpn", - Tag = null, - Description = [@"Tupí"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tpx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Acatepec Me'phaa", @"Acatepec Tlapanec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tpy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Trumai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tpz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tinputz"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tqb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tembé"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tql", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lehali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tqm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Turumsa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tqn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tenino"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tqo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Toaripi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tqp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tomoip"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tqq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tunni"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tqr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Torona"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tqt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Totonac"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tqu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Touo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tqw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tonkawa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tra", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tirahi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "trb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Terebu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "trc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Copala Triqui"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "trd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Turi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tre", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"East Tarangan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "trf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Trinidadian Creole English"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "trg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lishán Didán"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "trh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Turaka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tri", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Trió"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "trj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Toram"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "trk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Turkic languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "trl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Traveller Scottish"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "trm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tregami"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "trn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Trinitario"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tro", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tarao Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "trp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kok Borok"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "trq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"San Martín Itunyoso Triqui"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "trr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Taushiro"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "trs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chicahuaxtla Triqui"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "trt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tunggare"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tru", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Turoyo", @"Surayt"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "trv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sediq", @"Seediq", @"Taroko"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "trw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Torwali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "trx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tringgus-Sembaan Bidayuh"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "try", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Turung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "trz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Torá"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tsa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tsaangi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tsb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tsamai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tsc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tswa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tsd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tsakonian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tse", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tunisian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tsf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2015, 2, 12), - PreferredValue = "taj", - Tag = null, - Description = [@"Southwestern Tamang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tsg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tausug"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tsh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tsuvan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tsi", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tsimshian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tsj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tshangla"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tsk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tseku"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tsl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ts'ün-Lao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tsm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Turkish Sign Language", @"Türk İşaret Dili"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tsp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Toussian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tsq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Thai Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tsr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Akei"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tss", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Taiwan Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tst", - Added = new DateOnly(2011, 8, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tondi Songway Kiini"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tsu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tsou"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tsv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tsogo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tsw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tsishingini"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tsx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mubami"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tsy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tebul Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tsz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Purepecha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tta", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tutelo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ttb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gaa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ttc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tektiteko"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ttd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tauade"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tte", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bwanabwana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ttf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tuotomb"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ttg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tutong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tth", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Upper Ta'oih"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tti", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tobati"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ttj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tooro"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ttk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Totoro"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ttl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Totela"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ttm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Tutchone"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ttn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Towei"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tto", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lower Ta'oih"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ttp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tombelala"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ttq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "tmh", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tawallammat Tamajaq"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ttr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tera"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tts", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northeastern Thai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ttt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Muslim Tat"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ttu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Torau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ttv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Titan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ttw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Long Wat"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tty", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sikaritai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ttz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tsum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tua", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wiarumus"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tub", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tübatulabal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tuc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mutu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tud", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tuxá"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tue", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tuyuca"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tuf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central Tunebo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tug", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tunia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tuh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Taulil"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tui", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tupuri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tuj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tugutil"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tul", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tula"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tum", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tumbuka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tun", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tunica"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tuo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tucano"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tup", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tupi languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tuq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tedaga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tus", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tuscarora"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tut", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Altaic languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tuu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tututni"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tuv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Turkana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tuw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tungus languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tux", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tuxináwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tuy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "kln", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tugen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tuz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Turka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tva", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vaghua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tvd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tsuvadi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tve", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Te'un"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tvg", - Added = new DateOnly(2026, 5, 5), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tugunese", @"Batavian Portuguese Creole", @"Mardijker Creole"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tvi", - Added = new DateOnly(2023, 3, 17), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tulai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tvk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southeast Ambrym"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tvl", - Added = new DateOnly(2005, 10, 16), - SuppressScript = "Latn", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tuvalu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tvm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tela-Masbuar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tvn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tavoyan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tvo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tidore"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tvs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Taveta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tvt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tutsa Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tvu", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tunen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tvw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sedoa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tvx", - Added = new DateOnly(2019, 4, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Taivoan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tvy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Timor Pidgin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "twa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Twana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "twb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Tawbuid"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "twc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Teshenawa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "twd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Twents"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "twe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tewa (Indonesia)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "twf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Tiwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "twg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tereweng"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "twh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tai Dón"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "twl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tawara"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "twm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tawang Monpa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "twn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Twendi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "two", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tswapong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "twp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ere"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "twq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tasawaq"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "twr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southwestern Tarahumara"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "twt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Turiwára"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "twu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Termanu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tww", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tuwari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "twx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tewe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "twy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tawoyan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "txa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tombonuo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "txb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tokharian B"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "txc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tsetsaut"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "txe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Totoli"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "txg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tangut"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "txh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Thracian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "txi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ikpeng"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "txj", - Added = new DateOnly(2015, 2, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tarjumo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "txm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tomini"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "txn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"West Tarangan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "txo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Toto"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "txq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tii"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "txr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tartessian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "txs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tonsea"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "txt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Citak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "txu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kayapó"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "txx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tatana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "txy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "mg", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tanosy Malagasy"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tya", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tauya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tye", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kyanga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tyh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"O'du"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tyi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Teke-Tsaayi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tyj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tai Do", @"Tai Yo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tyl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Thu Lao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tyn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kombai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "typ", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Thaypan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tyr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tai Daeng"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tys", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tày Sa Pa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tyt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tày Tac"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tyu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tyv", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tuvinian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tyx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Teke-Tyee"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tyy", - Added = new DateOnly(2021, 2, 20), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tiyaa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tyz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tày"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tza", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tanzanian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tzh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tzeltal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tzj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tz'utujil"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tzl", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Talossan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tzm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central Atlas Tamazight"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tzn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tugun"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tzo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tzotzil"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "tzx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tabriak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "uam", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Uamué"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "uan", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kuan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "uar", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tairuma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "uba", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ubang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ubi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ubi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ubl", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "bik", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Buhi'non Bikol"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ubr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ubir"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ubu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Umbu-Ungu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "uby", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ubykh"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "uda", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Uda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ude", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Udihe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "udg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Muduga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "udi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Udi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "udj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ujir"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "udl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wuzlam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "udm", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Udmurt"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "udu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Uduk"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ues", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kioko"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ufi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ufim"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "uga", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ugaritic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ugb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kuku-Ugbanh"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "uge", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ughele"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ugh", - Added = new DateOnly(2022, 2, 25), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kubachi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ugn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ugandan Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ugo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ugong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ugy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Uruguayan Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "uha", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Uhami"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "uhn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Damal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "uis", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Uisai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "uiv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Iyive"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "uji", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tanjijili"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "uka", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kaburi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ukg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ukuriguma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ukh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ukhwejo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "uki", - Added = new DateOnly(2020, 3, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kui (India)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ukk", - Added = new DateOnly(2017, 2, 23), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Muak Sa-aak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ukl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ukrainian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ukp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ukpe-Bayobiri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ukq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ukwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "uks", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Urubú-Kaapor Sign Language", @"Kaapor Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "uku", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ukue"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ukv", - Added = new DateOnly(2020, 3, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kuku"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ukw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ukwuani-Aboh-Ndoni"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "uky", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kuuk-Yak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ula", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Fungwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ulb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ulukwumi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ulc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ulch"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ule", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lule"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ulf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Usku", @"Afra"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "uli", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ulithian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ulk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Meriam Mir"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ull", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ullatan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ulm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ulumanda'"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "uln", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Unserdeutsch"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ulu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Uma' Lung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ulw", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ulwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "uly", - Added = new DateOnly(2023, 3, 17), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Buli"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "uma", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Umatilla"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "umb", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Umbundu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "umc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Marrucinian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "umd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Umbindhamu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "umg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Morrobalama", @"Umbuygamu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "umi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ukit"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "umm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Umon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "umn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Makyan Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "umo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Umotína"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ump", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Umpila"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "umr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Umbugarla"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ums", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pendau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "umu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "del", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Munsee"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "una", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"North Watut"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "und", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Special, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Undetermined"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "une", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Uneme"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ung", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngarinyin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "uni", - Added = new DateOnly(2021, 2, 20), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Uni"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "unk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Enawené-Nawé"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "unm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "del", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Unami"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "unn", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kurnai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "unp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2012, 8, 12), - PreferredValue = null, - Tag = null, - Description = [@"Worora"], - Comments = [@"see wro, xgu"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "unr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mundari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "unu", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Unubahe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "unx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Munda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "unz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Unde Kaili"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "uok", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2015, 2, 12), - PreferredValue = "ema", - Tag = null, - Description = [@"Uokha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "uon", - Added = new DateOnly(2022, 2, 25), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kulon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "upi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Umeda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "upv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Uripiv-Wala-Rano-Atchin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ura", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Urarina"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "urb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Urubú-Kaapor", @"Kaapor"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "urc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Urningangg"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ure", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Uru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "urf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Uradhi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "urg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Urigina"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "urh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Urhobo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "uri", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Urim"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "urj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Uralic languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "urk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Urak Lawoi'"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "url", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Urali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "urm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Urapmin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "urn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Uruangnirin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "uro", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ura (Papua New Guinea)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "urp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Uru-Pa-In"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "urr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lehalurup", @"Löyöp"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "urt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Urat"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "uru", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Urumi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "urv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Uruava"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "urw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sop"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "urx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Urimo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ury", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Orya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "urz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Uru-Eu-Wau-Wau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "usa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Usarufa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ush", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ushojo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "usi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Usui"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "usk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Usaghade"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "usp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Uspanteco"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "uss", - Added = new DateOnly(2019, 4, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"us-Saare"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "usu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Uya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "uta", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Otank"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ute", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ute-Southern Paiute"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "uth", - Added = new DateOnly(2019, 4, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"ut-Hun"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "utp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Amba (Solomon Islands)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "utr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Etulo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "utu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Utu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "uum", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Urum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "uun", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2022, 2, 25), - PreferredValue = null, - Tag = null, - Description = [@"Kulon-Pazeh"], - Comments = [@"see pzh, uon"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "uur", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ura (Vanuatu)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "uuu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"U"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "uve", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"West Uvean", @"Fagauvea"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "uvh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Uri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "uvl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lote"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "uwa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kuku-Uwanh"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "uya", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Doko-Uyanga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "uzn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "uz", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Uzbek"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "uzs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "uz", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Uzbek"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vaa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vaagri Booli"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vae", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vale"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vaf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vafsi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vag", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vagla"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vah", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Varhadi-Nagpuri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vai", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vaj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sekele", @"Northwestern ǃKung", @"Vasekele"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "val", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vehes"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vam", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vanimo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "van", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Valman"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vao", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vap", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vaiphei"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "var", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Huarijio"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vas", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vasavi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vau", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vanuma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vav", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Varli"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vay", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wayu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vbb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southeast Babar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vbk", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "bnc", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southwestern Bontok"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vec", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Venetian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ved", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Veddah"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vel", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Veluws"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vem", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vemgo-Mabas"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "veo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ventureño"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vep", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Veps"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ver", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mom Jango"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vgr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vaghri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vgt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vlaamse Gebarentaal", @"Flemish Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vic", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Virgin Islands Creole English"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vid", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vidunda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vif", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vili"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vig", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Viemo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vil", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vilela"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vin", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vinza"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vis", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vishavan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vit", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Viti"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "viv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Iduna"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vjk", - Added = new DateOnly(2023, 3, 17), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bajjika"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vka", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kariyarra"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vki", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2021, 2, 20), - PreferredValue = null, - Tag = null, - Description = [@"Ija-Zuba"], - Comments = [@"see vkn, vkz"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vkj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kujarge"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vkk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kaur"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vkl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kulisusu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vkm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kamakan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vkn", - Added = new DateOnly(2021, 2, 20), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koro Nulu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vko", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kodeoha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vkp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Korlai Creole Portuguese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vkt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tenggarong Kutai Malay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vku", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kurrama"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vkz", - Added = new DateOnly(2021, 2, 20), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koro Zuba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vlp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Valpei"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vls", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vlaams"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vma", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Martuyhunira"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vmb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Barbaram"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vmc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Juxtlahuaca Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vmd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mudu Koraga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vme", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"East Masela"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vmf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mainfränkisch"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vmg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lungalunga"], - Comments = [@"see also bxf"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vmh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maraghei"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vmi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Miwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vmj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ixtayutla Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vmk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Makhuwa-Shirima"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vml", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Malgana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vmm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mitlatongo Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vmp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Soyaltepec Mazatec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vmq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Soyaltepec Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vmr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Marenje"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vms", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Moksela"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vmu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Muluridyi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vmv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Valley Maidu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vmw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Makhuwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vmx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tamazola Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vmy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ayautla Mazatec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vmz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mazatlán Mazatec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vnk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vano", @"Lovono"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vnm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vinmavis", @"Neve'ei"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vnp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vunapu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vor", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Voro"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vot", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Votic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vra", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vera'a"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vro", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "et", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Võro"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vrs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Varisi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vrt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Burmbar", @"Banam Bay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vsi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Moldova Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vsl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Venezuelan Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vsn", - Added = new DateOnly(2024, 3, 4), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "sa", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vedic Sanskrit"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vsv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Valencian Sign Language", @"Llengua de signes valenciana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vto", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vitou"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vum", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vumbu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vun", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vunjo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vut", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vute"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "vwa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Awa (China)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "waa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Walla Walla"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wab", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yote", @"Wab"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wac", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wasco-Wishram"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wad", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wamesa", @"Wondama"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wae", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Walser"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "waf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wakoná"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wag", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wa'ema"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wah", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Watubela"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wai", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wares"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "waj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Waffa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wak", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wakashan languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wal", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wolaytta", @"Wolaitta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wam", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wampanoag"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wan", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wao", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wappo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wap", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wapishana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "waq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wagiman"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "war", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Waray (Philippines)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "was", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Washo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wat", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kaninuwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wau", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Waurá"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wav", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Waka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "waw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Waiwai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wax", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Watam", @"Marangis"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "way", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wayana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "waz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wampur"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wba", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Warao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wbb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wabo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wbe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Waritai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wbf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wara"], - Comments = [@"see also pnl"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wbh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wanda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wbi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vwanji"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wbj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Alagwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wbk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Waigali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wbl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wakhi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wbm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wbp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Warlpiri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wbq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Waddar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wbr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "raj", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wagdi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wbs", - Added = new DateOnly(2017, 2, 23), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"West Bengal Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wbt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Warnman"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wbv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wajarri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wbw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Woi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wca", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yanomámi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wci", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Waci Gbe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wdd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wandji"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wdg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wadaginam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wdj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wadjiginy"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wdk", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wadikali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wdt", - Added = new DateOnly(2022, 2, 25), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wendat"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wdu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wadjigu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wdy", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wadjabangayi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wea", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wewaw"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wec", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wè Western"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wed", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wedau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "weg", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wergaia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "weh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Weh"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wei", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kiunum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wem", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Weme Gbe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wen", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sorbian languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "weo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wemale"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wep", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Westphalien"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wer", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Weri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wes", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cameroon Pidgin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wet", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Perai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "weu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rawngtu Chin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wew", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wejewa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wfg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yafi", @"Zorop"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wga", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wagaya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wgb", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wagawaga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wgg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wangkangurru", @"Wangganguru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wgi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wahgi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wgo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Waigeo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wgu", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wirangu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wgw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2010, 3, 11), - PreferredValue = null, - Tag = null, - Description = [@"Wagawaga"], - Comments = [@"see wgb, ylb"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wgy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Warrgamay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wha", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sou Upaa", @"Manusela"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "whg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"North Wahgi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "whk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wahau Kenyah"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "whu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wahau Kayan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wib", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Toussian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wic", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wichita"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wie", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wik-Epa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wif", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wik-Keyangan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wig", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wik Ngathan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wih", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wik-Me'anha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wii", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Minidien"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wij", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wik-Iiyanh"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wik", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wikalkan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wil", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wilawila"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wim", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wik-Mungkan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "win", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ho-Chunk"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wir", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wiraféd"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wit", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2013, 9, 10), - PreferredValue = null, - Tag = null, - Description = [@"Wintu"], - Comments = [@"see nol, pwi, wnw"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wiu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wiru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wiv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vitu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wiw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2012, 8, 12), - PreferredValue = null, - Tag = null, - Description = [@"Wirangu"], - Comments = [@"see nwo, wgu"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wiy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wiyot"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wja", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Waja"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wji", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Warji"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wka", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kw'adza"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wkb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kumbaran"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wkd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wakde", @"Mo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wkl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kalanadi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wkr", - Added = new DateOnly(2019, 4, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Keerray-Woorroong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wku", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kunduvadi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wkw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wakawaka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wky", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wangkayutyuru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wla", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Walio"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wlc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mwali Comorian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wle", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wolane"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wlg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kunbarlang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wlh", - Added = new DateOnly(2020, 3, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Welaun"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wli", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Waioli"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wlk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wailaki"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wll", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wali (Sudan)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wlm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Middle Welsh"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wlo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wolio"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wlr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wailapa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wls", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wallisian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wlu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wuliwuli"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wlv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wichí Lhamtés Vejoz"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wlw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Walak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wlx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wali (Ghana)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wly", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Waling"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wma", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mawa (Nigeria)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wmb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wambaya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wmc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wamas"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wmd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mamaindé"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wme", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wambule"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wmg", - Added = new DateOnly(2021, 2, 20), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Minyag"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wmh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Waima'a"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wmi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wamin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wmm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maiwa (Indonesia)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wmn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Waamwang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wmo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wom (Papua New Guinea)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wms", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wambon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wmt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Walmajarri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wmw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mwani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wmx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Womo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wnb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mokati"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wnc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wantoat"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wnd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wandarang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wne", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Waneci"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wng", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wanggom"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wni", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ndzwani Comorian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wnk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wanukaka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wnm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wanggamala"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wnn", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wunumara"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wno", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wano"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wnp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wanap"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wnu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Usan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wnw", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wintu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wny", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wanyi", @"Waanyi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "woa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kuwema", @"Tyaraity"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wob", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wè Northern"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "woc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wogeo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wod", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wolani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "woe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Woleaian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wof", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gambian Wolof"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wog", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wogamusin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "woi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kamang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wok", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Longto"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wom", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wom (Nigeria)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "won", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wongo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "woo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Manombai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wor", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Woria"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wos", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hanga Hundi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wow", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wawonii"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "woy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Weyto"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wpc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maco"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wra", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2021, 2, 20), - PreferredValue = null, - Tag = null, - Description = [@"Warapu"], - Comments = [@"see bpe, suo, uni"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wrb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Waluwarra", @"Warluwara"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wrd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2022, 2, 25), - PreferredValue = null, - Tag = null, - Description = [@"Warduji"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wrg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Warungu", @"Gudjal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wrh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wiradjuri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wri", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wariyangga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wrk", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Garrwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wrl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Warlmanpa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wrm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Warumungu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wrn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Warnang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wro", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Worrorra"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wrp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Waropen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wrr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wardaman"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wrs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Waris"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wru", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Waru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wrv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Waruna"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wrw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gugu Warra"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wrx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wae Rana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wry", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "mwr", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Merwari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wrz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Waray (Australia)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wsa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Warembori"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wsg", - Added = new DateOnly(2016, 5, 30), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "gon", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Adilabad Gondi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wsi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wusi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wsk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Waskia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wsr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Owenia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wss", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wasa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wsu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wasu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wsv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wotapuri-Katarqalai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wtb", - Added = new DateOnly(2023, 3, 17), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Matambwe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wtf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Watiwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wth", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wathawurrung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wti", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Berta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wtk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Watakataui"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wtm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mewati"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wtw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wotu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wua", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wikngenchera"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wub", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wunambal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wud", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wudu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wuh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wutunhua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wul", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Silimo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wum", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wumbvu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wun", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bungu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wur", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wurrugu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wut", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wutung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wuu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zh", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wu Chinese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wuv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wuvulu-Aua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wux", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wulna"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wuy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wauyai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wwa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Waama"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wwb", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wakabunga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wwo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wetamut", @"Dorig"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wwr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Warrwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "www", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wawa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wxa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Waxianghua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wxw", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wardandi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wya", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2022, 2, 25), - PreferredValue = null, - Tag = null, - Description = [@"Wyandot"], - Comments = [@"see wdt, wyn"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wyb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wangaaybuwan-Ngiyambaa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wyi", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Woiwurrung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wym", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wymysorys"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wyn", - Added = new DateOnly(2022, 2, 25), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wyandot"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wyr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wayoró"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "wyy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Fijian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xaa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Andalusian Arabic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xab", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sambe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xac", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kachari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xad", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Adai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xae", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aequian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xag", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aghwan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xai", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kaimbé"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xaj", - Added = new DateOnly(2014, 2, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ararandewára"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xak", - Added = new DateOnly(2016, 5, 30), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Máku"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xal", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kalmyk", @"Oirat"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xam", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"ǀXam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xan", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Xamtanga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xao", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xap", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Apalachee"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xaq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aquitanian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xar", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Karami"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xas", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kamas"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xat", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Katawixi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xau", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kauwera"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xav", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Xavánte"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xaw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kawaiisu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xay", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kayan Mahakam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xba", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2016, 5, 30), - PreferredValue = "cax", - Tag = null, - Description = [@"Kamba (Brazil)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xbb", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lower Burdekin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xbc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bactrian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xbd", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bindal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xbe", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bigambal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xbg", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bunganditj"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xbi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kombio"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xbj", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Birrpayi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xbm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Middle Breton"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xbn", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kenaboi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xbo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bolgarian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xbp", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bibbulman"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xbr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kambera"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xbw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kambiwá"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xbx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2016, 5, 30), - PreferredValue = null, - Tag = null, - Description = [@"Kabixí"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xby", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Batjala", @"Batyala"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xcb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cumbric"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xcc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Camunic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xce", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Celtiberian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xcg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cisalpine Gaulish"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xch", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chemakum", @"Chimakum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xcl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Classical Armenian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xcm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Comecrudo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xcn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cotoname"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xco", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chorasmian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xcr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Carian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xct", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Classical Tibetan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xcu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Curonian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xcv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chuvantsy"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xcw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Coahuilteco"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xcy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cayuse"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xda", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Darkinyung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xdc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dacian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xdk", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dharuk"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xdm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Edomite"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xdo", - Added = new DateOnly(2017, 2, 23), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kwandu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xdq", - Added = new DateOnly(2022, 2, 25), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kaitag"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xdy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Malayic Dayak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xeb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eblan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xed", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hdi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xeg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"ǁXegwi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xel", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kelo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xem", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kembayan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xep", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Epi-Olmec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xer", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Xerénte"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xes", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kesawai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xet", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Xetá"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xeu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Keoru-Ahia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xfa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Faliscan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xga", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Galatian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xgb", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gbin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xgd", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gudang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xgf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gabrielino-Fernandeño"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xgg", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Goreng"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xgi", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Garingbal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xgl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Galindan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xgm", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dharumbal", @"Guwinmal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xgn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mongolian languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xgr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Garza"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xgu", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Unggumi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xgw", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xha", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Harami"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xhc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hunnic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xhd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hadrami"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xhe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "lah", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khetrani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xhm", - Added = new DateOnly(2022, 2, 25), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Middle Khmer (1400 to 1850 CE)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xhr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hernican"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xht", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hattic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xhu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hurrian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xhv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xia", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2013, 9, 10), - PreferredValue = "acn", - Tag = null, - Description = [@"Xiandao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xib", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Iberian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xii", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Xiri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xil", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Illyrian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xin", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Xinca"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xip", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2016, 5, 30), - PreferredValue = null, - Tag = null, - Description = [@"Xipináwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xir", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Xiriâna"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xis", - Added = new DateOnly(2014, 2, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kisan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xiv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Indus Valley Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xiy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Xipaya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xjb", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Minjungbal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xjt", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jaitmatang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xka", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kalkoti"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xkb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Nago"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xkc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kho'ini"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xkd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mendalam Kayan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xke", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kereho"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xkf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khengkha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xkg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kagoro"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xkh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2016, 5, 30), - PreferredValue = "waw", - Tag = null, - Description = [@"Karahawyana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xki", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kenyan Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xkj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kajali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xkk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kachok", @"Kaco'"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xkl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mainstream Kenyah"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xkn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kayan River Kayan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xko", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kiorr"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xkp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kabatei"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xkq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koroni"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xkr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Xakriabá"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xks", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kumbewaha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xkt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kantosi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xku", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kaamba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xkv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kgalagadi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xkw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kembra"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xkx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Karore"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xky", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Uma' Lasan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xkz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kurtokha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xla", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kamula"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xlb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Loup B"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xlc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lycian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xld", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lydian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xle", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lemnian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xlg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ligurian (Ancient)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xli", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Liburnian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xln", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Alanic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xlo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Loup A"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xlp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lepontic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xls", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lusitanian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xlu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cuneiform Luwian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xly", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Elymian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xma", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mushungulu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xmb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mbonga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xmc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Makhuwa-Marrevone"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xmd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mbudum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xme", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Median"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xmf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mingrelian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xmg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mengaka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xmh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kugu-Muminh"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xmj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Majera"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xmk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ancient Macedonian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xml", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Malaysian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xmm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Manado Malay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xmn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Manichaean Middle Persian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xmo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Morerebi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xmp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kuku-Mu'inh"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xmq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kuku-Mangk"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xmr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Meroitic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xms", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Moroccan Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xmt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Matbat"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xmu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kamu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xmv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "mg", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Antankarana Malagasy", @"Tankarana Malagasy"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xmw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "mg", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tsimihety Malagasy"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xmx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Salawati", @"Maden"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xmy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mayaguduna"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xmz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mori Bawah"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xna", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ancient North Arabian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xnb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kanakanabu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xnd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Na-Dene languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xng", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Middle Mongolian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xnh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kuanhua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xni", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngarigu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xnj", - Added = new DateOnly(2021, 2, 20), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngoni (Tanzania)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xnk", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nganakarti"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xnm", - Added = new DateOnly(2020, 3, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngumbarl"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xnn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Kankanay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xno", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Anglo-Norman"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xnq", - Added = new DateOnly(2021, 2, 20), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngoni (Mozambique)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xnr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "doi", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kangri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xns", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kanashi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xnt", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Narragansett"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xnu", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nukunul"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xny", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyiyaparli"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xnz", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kenzi", @"Mattoki"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xoc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"O'chi'chi'"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xod", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kokoda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xog", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Soga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xoi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kominimung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xok", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Xokleng"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xom", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Komo (Sudan)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xon", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Konkomba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xoo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Xukurú"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xop", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kopar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xor", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Korubo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xow", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kowaki"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xpa", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pirriya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xpb", - Added = new DateOnly(2020, 3, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northeastern Tasmanian", @"Pyemmairrener"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xpc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pecheneg"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xpd", - Added = new DateOnly(2020, 3, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Oyster Bay Tasmanian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xpe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "kpe", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Liberia Kpelle"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xpf", - Added = new DateOnly(2020, 3, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southeast Tasmanian", @"Nuenonne"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xpg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Phrygian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xph", - Added = new DateOnly(2020, 3, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"North Midlands Tasmanian", @"Tyerrenoterpanner"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xpi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pictish"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xpj", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mpalitjanh"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xpk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kulina Pano"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xpl", - Added = new DateOnly(2020, 3, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Port Sorell Tasmanian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xpm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pumpokol"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xpn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kapinawá"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xpo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pochutec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xpp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Puyo-Paekche"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xpq", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mohegan-Pequot"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xpr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Parthian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xps", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pisidian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xpt", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Punthamara"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xpu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Punic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xpv", - Added = new DateOnly(2020, 3, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Tasmanian", @"Tommeginne"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xpw", - Added = new DateOnly(2020, 3, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northwestern Tasmanian", @"Peerapper"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xpx", - Added = new DateOnly(2020, 3, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southwestern Tasmanian", @"Toogee"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xpy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Puyo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xpz", - Added = new DateOnly(2020, 3, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bruny Island Tasmanian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xqa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Karakhanid"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xqt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Qatabanian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xra", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Krahô"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xrb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Karaboro"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xrd", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gundungurra"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xre", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kreye"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xrg", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Minang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xri", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Krikati-Timbira"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xrm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Armazic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xrn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Arin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xrq", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2020, 3, 28), - PreferredValue = "dmw", - Tag = null, - Description = [@"Karranga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xrr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Raetic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xrt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aranama-Tamique"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xru", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Marriammu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xrw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Karawa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xsa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sabaean"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xsb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sambal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xsc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Scythian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xsd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sidetic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xse", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sempan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xsh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shamang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xsi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sio"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xsj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Subi"], - Comments = [@"see also suj"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xsl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "den", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"South Slavey"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xsm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kasem"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xsn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sanga (Nigeria)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xso", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Solano"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xsp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Silopi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xsq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Makhuwa-Saka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xsr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sherpa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xss", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2023, 3, 17), - PreferredValue = "zko", - Tag = null, - Description = [@"Assan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xsu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sanumá"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xsv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sudovian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xsy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Saisiyat"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xta", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Alcozauca Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xtb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chazumba Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xtc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Katcha-Kadugli-Miri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xtd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Diuxi-Tilantongo Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xte", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ketengban"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xtg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Transalpine Gaulish"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xth", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yitha Yitha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xti", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sinicahua Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xtj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"San Juan Teita Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xtl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tijaltepec Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xtm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Magdalena Peñasco Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xtn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Tlaxiaco Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xto", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tokharian A"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xtp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"San Miguel Piedras Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xtq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tumshuqese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xtr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Early Tripuri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xts", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sindihui Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xtt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tacahua Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xtu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cuyamecalco Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xtv", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Thawa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xtw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tawandê"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xty", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yoloxochitl Mixtec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xtz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2020, 3, 28), - PreferredValue = null, - Tag = null, - Description = [@"Tasmanian"], - Comments = [@"see xpb, xpd, xpf, xph, xpl, xpv, xpw, xpx, xpz"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xua", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Alu Kurumba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xub", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Betta Kurumba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xud", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Umiida"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xug", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kunigami"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xuj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jennu Kurumba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xul", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngunawal", @"Nunukul"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xum", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Umbrian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xun", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Unggaranggu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xuo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kuo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xup", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Upper Umpqua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xur", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Urartian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xut", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kuthant"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xuu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kxoe", @"Khwedam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xve", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Venetic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xvi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kamviri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xvn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vandalic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xvo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Volscian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xvs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vestinian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xwa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kwaza"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xwc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Woccon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xwd", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wadi Wadi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xwe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Xwela Gbe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xwg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kwegu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xwj", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wajuk"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xwk", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wangkumara"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xwl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Xwla Gbe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xwo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Written Oirat"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xwr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kwerba Mamberamo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xwt", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wotjobaluk"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xww", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wemba Wemba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xxb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Boro (Ghana)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xxk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ke'o"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xxm", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Minkin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xxr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koropó"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xxt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tambora"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xya", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yaygir"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xyb", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yandjibara"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xyj", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mayi-Yapi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xyk", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mayi-Kulan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xyl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yalakalore"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xyt", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mayi-Thakurti"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xyy", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yorta Yorta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xzh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zhang-Zhung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xzm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zemgalian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "xzp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ancient Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yaa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yaminahua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yab", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yuhup"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yac", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pass Valley Yali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yad", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yagua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yae", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pumé"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yaf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yaka (Democratic Republic of Congo)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yag", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yámana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yah", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yazgulyam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yai", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yagnobi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yaj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Banda-Yangere"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yak", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yakama"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yal", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yalunka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yam", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yamba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yan", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mayangna"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yao", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yap", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yapese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yaq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yaqui"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yar", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yabarana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yas", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nugunu (Cameroon)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yat", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yambeta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yau", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yuwana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yav", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yangben"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yaw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yawalapití"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yax", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yauma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yay", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Agwagwune"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yaz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lokaa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yba", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yala"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ybb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yemba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ybd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2012, 8, 12), - PreferredValue = "rki", - Tag = null, - Description = [@"Yangbye"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ybe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"West Yugur"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ybh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yakha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ybi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yamphu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ybj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hasha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ybk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bokha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ybl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yukuben"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ybm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yaben"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ybn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yabaâna"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ybo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yabong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ybx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yawiyo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yby", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yaweyuha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ych", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chesu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ycl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lolopo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ycn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yucuna"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ycp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chepya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ycr", - Added = new DateOnly(2023, 3, 17), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yilan Creole"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yda", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yanda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ydd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "yi", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Yiddish"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yde", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yangum Dey"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ydg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yidgha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ydk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yoidik"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yds", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2015, 2, 12), - PreferredValue = null, - Tag = null, - Description = [@"Yiddish Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yea", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ravula"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yec", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yeniche"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yee", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yimas"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yei", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yeni"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yej", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yevanic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yel", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yela"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yen", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2012, 8, 12), - PreferredValue = null, - Tag = null, - Description = [@"Yendang"], - Comments = [@"see ynq, yot"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yer", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tarok"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yes", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyankpa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yet", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yetfa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yeu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yerukula"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yev", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yapunda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yey", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yeyi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yga", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Malyangapa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ygi", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yiningayi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ygl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yangum Gel"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ygm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yagomi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ygp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gepo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ygr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yagaria"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ygs", - Added = new DateOnly(2014, 2, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yolŋu Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ygu", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yugul"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ygw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yagwoia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yha", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Baha Buyang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yhd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "jrb", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Judeo-Iraqi Arabic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yhl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hlepho Phowa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yhs", - Added = new DateOnly(2015, 4, 17), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yan-nhaŋu Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yia", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yinggarda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yif", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ache"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yig", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wusa Nasu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yih", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "yi", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Yiddish"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yii", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yidiny"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yij", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yindjibarndi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yik", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dongshanba Lalo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yil", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yindjilandji"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yim", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yimchungru Naga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yin", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Riang Lai", @"Yinchia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yip", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pholo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yiq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Miqie"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yir", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"North Awyu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yis", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yis"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yit", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Lalu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yiu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Awu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yiv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Nisu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yix", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Axi Yi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yiy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2013, 9, 10), - PreferredValue = null, - Tag = null, - Description = [@"Yir Yoront"], - Comments = [@"see yrm, yyr"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yiz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Azhe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yka", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yakan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ykg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Yukaghir"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ykh", - Added = new DateOnly(2023, 3, 17), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khamnigan Mongol"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yki", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yoke"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ykk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yakaikeke"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ykl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khlula"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ykm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kap"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ykn", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kua-nsi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yko", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Iyasa", @"Yasa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ykr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yekora"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ykt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kathu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yku", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kuamasi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yky", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yakoma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yla", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yaul"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ylb", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yaleba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yle", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yele"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ylg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yelogu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yli", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Angguruk Yali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yll", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yil"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ylm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Limi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yln", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Langnian Buyang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ylo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Naluo Yi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ylr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yalarnnga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ylu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aribwaung"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yly", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyâlayu", @"Nyelâyu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yma", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2012, 8, 12), - PreferredValue = "lrr", - Tag = null, - Description = [@"Yamphe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ymb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yambes"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ymc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Muji"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ymd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Muda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yme", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yameo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ymg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yamongeri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ymh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mili"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ymi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Moji"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ymk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Makwe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yml", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Iamalele"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ymm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ymn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yamna", @"Sunum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ymo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yangum Mon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ymp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yamap"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ymq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Qila Muji"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ymr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Malasar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yms", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mysian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ymt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2015, 2, 12), - PreferredValue = "mtm", - Tag = null, - Description = [@"Mator-Taygi-Karagas"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ymx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Muji"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ymz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Muzi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yna", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aluo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ynb", - Added = new DateOnly(2025, 2, 6), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yamben"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ynd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yandruwandha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yne", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lang'e"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yng", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yango"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ynh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2015, 2, 12), - PreferredValue = null, - Tag = null, - Description = [@"Yangho"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ynk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Naukan Yupik"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ynl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yangulam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ynn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yno", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ynq", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yendang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yns", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yansi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ynu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yahuna"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yob", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yoba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yog", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yogad"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yoi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yonaguni"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yok", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yokuts"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yol", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2026, 4, 9), - PreferredValue = "enm", - Tag = null, - Description = [@"Yola"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yom", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yombe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yon", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yongkom"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yos", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2013, 9, 10), - PreferredValue = "zom", - Tag = null, - Description = [@"Yos"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yot", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yotti"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yox", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yoron"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yoy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yoy"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ypa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Phala"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ypb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Labo Phowa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ypg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Phola"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yph", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Phupha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ypk", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yupik languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ypm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Phuma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ypn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ani Phowa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ypo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Alo Phola"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ypp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Phupa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ypz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Phuza"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yra", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yerakai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yrb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yareba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yre", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yaouré"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yri", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2016, 5, 30), - PreferredValue = null, - Tag = null, - Description = [@"Yarí"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yrk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nenets"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yrl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nhengatu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yrm", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yirrk-Mel"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yrn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yerong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yro", - Added = new DateOnly(2016, 5, 30), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yaroamë"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yrs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yarsun"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yrw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yarawata"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yry", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yarluyandi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ysc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yassic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ysd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Samatao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ysg", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sonaga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ysl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yugoslavian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ysm", - Added = new DateOnly(2021, 2, 20), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Myanmar Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ysn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yso", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nisi (China)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ysp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Lolopo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ysr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sirenik Yupik"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yss", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yessan-Mayo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ysy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sanie"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yta", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Talu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ytl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tanglang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ytp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Thopho"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ytw", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yout Wam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yty", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yatay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yua", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yucateco", @"Yucatec Maya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yub", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yugambal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yuc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yuchi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yud", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "jrb", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Judeo-Tripolitanian Arabic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yue", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zh", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yue Chinese", @"Cantonese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yuf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Havasupai-Walapai-Yavapai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yug", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yug"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yui", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yurutí"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yuj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Karkar-Yuri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yuk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yuki"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yul", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yulu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yum", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Quechan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yun", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bena (Nigeria)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yup", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yukpa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yuq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yuqui"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yur", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yurok"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yut", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yopno"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yuu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2014, 2, 28), - PreferredValue = "yug", - Tag = null, - Description = [@"Yugh"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yuw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yau (Morobe Province)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yux", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Yukaghir"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yuy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"East Yugur"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yuz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yuracare"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yva", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yawa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yvt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yavitero"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ywa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kalou"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ywg", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yinhawangka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ywl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Lalu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ywn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yawanawa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ywq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wuding-Luquan Yi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ywr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yawuru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ywt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Xishanba Lalo", @"Central Lalo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ywu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wumeng Nasu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yww", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yawarawarga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yxa", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mayawali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yxg", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yagara"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yxl", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yardliyawarra"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yxm", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yinwum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yxu", - Added = new DateOnly(2013, 9, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yuyu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yxy", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yabula Yabula"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yyr", - Added = new DateOnly(2013, 9, 3), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yir Yoront"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yyu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yau (Sandaun Province)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yyz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ayizi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yzg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"E'ma Buyang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "yzk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zokhuo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zaa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sierra de Juárez Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zab", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = - [ - @"Western Tlacolula Valley Zapotec", - @"San Juan Guelavía Zapotec", - ], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zac", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ocotlán Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zad", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cajonos Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zae", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yareni Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zaf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ayoquesco Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zag", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zaghawa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zah", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zangwal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zai", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Isthmus Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zaj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zaramo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zak", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zanaki"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zal", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zauzou"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zam", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Miahuatlán Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zao", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ozolotepec Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zap", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zaq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aloápam Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zar", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rincón Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zas", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Santo Domingo Albarradas Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zat", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tabaa Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zau", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zangskari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zav", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yatzachi Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zaw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mitla Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zax", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Xadani Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zay", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zayse-Zergulla", @"Zaysete"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zaz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zba", - Added = new DateOnly(2020, 3, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Balaibalan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zbc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central Berawan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zbe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"East Berawan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zbl", - Added = new DateOnly(2007, 8, 21), - SuppressScript = "Blis", - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Blissymbols", @"Bliss", @"Blissymbolics"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zbt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Batui"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zbu", - Added = new DateOnly(2021, 2, 20), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bu (Bauchi State)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zbw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"West Berawan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zca", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Coatecas Altas Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zcd", - Added = new DateOnly(2022, 2, 25), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Las Delicias Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zch", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "za", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central Hongshuihe Zhuang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zdj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ngazidja Comorian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zea", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zeeuws"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zeg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zenag"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zeh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "za", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Hongshuihe Zhuang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zem", - Added = new DateOnly(2023, 3, 17), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zeem"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zen", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zenaga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zga", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kinga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zgb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "za", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guibei Zhuang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zgh", - Added = new DateOnly(2013, 1, 25), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Standard Moroccan Tamazight"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zgm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "za", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Minz Zhuang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zgn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "za", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guibian Zhuang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zgr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Magori"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zhb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zhaba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zhd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "za", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dai Zhuang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zhi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zhire"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zhk", - Added = new DateOnly(2026, 5, 5), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kurdish Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zhn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "za", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nong Zhuang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zhw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zhoa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zhx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chinese (family)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zia", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zib", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zimbabwe Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zik", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zimakani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zil", - Added = new DateOnly(2011, 8, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zialo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zim", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mesme"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zin", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zinza"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zir", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2020, 3, 28), - PreferredValue = "scv", - Tag = null, - Description = [@"Ziriya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ziw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zigula"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ziz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zizilivakan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zka", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kaimbulawa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zkb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2023, 3, 17), - PreferredValue = "kjh", - Tag = null, - Description = [@"Koibal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zkd", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kadu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zkg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Koguryo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zkh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khorezmian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zkk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Karankawa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zkn", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kanan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zko", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kott"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zkp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"São Paulo Kaingáng"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zkr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zakhring"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zkt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kitan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zku", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kaurna"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zkv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Krevinian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zkz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khazar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zla", - Added = new DateOnly(2021, 2, 20), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zula"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zle", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"East Slavic languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zlj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "za", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Liujiang Zhuang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zlm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Malay (individual language)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zln", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "za", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lianshan Zhuang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zlq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "za", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Liuqian Zhuang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zls", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"South Slavic languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zlu", - Added = new DateOnly(2023, 3, 17), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zul"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zlw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"West Slavic languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zma", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Manda (Australia)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zmb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zimba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zmc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Margany"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zmd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maridan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zme", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mangerr"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zmf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mfinu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zmg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Marti Ke"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zmh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Makolkol"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zmi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Negeri Sembilan Malay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zmj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maridjabin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zmk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mandandanyi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zml", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Matngala"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zmm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Marimanindji", @"Marramaninyshi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zmn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mbangwe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zmo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Molo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zmp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mbuun"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zmq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mituku"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zmr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maranunggu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zms", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mbesa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zmt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maringarr"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zmu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Muruwari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zmv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mbariman-Gudhinma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zmw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mbo (Democratic Republic of Congo)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zmx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bomitaba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zmy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mariyedi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zmz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mbandja"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zna", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zan Gula"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "znd", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Collection, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zande languages"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zne", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zande (individual language)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zng", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "znk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Manangkari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zns", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mangas"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zoc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Copainalá Zoque"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zoh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chimalapa Zoque"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zom", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zou"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zoo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Asunción Mixtepec Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zoq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tabasco Zoque"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zor", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rayón Zoque"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zos", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Francisco León Zoque"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zpa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lachiguiri Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zpb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yautepec Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zpc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Choapan Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zpd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southeastern Ixtlán Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zpe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Petapa Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zpf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"San Pedro Quiatoni Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zpg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guevea De Humboldt Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zph", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Totomachapan Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zpi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Santa María Quiegolani Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zpj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Quiavicuzas Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zpk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tlacolulita Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zpl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lachixío Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zpm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mixtepec Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zpn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Santa Inés Yatzechi Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zpo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Amatlán Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zpp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"El Alto Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zpq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zoogocho Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zpr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Santiago Xanica Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zps", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Coatlán Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zpt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"San Vicente Coatlán Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zpu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yalálag Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zpv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chichicapan Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zpw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zaniza Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zpx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"San Baltazar Loxicha Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zpy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mazaltepec Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zpz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Texmelucan Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zqe", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "za", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Qiubei Zhuang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zra", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kara (Korea)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zrg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mirgan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zrn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zerenkel"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zro", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Záparo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zrp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zarphatic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zrs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mairasi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zsa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sarasira"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zsk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kaskean"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zsl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zambian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zsm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Standard Malay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zsr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Rincon Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zsu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sukurum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zte", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Elotepec Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ztg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Xanaguía Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ztl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lapaguía-Guivini Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ztm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"San Agustín Mixtepec Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ztn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Santa Catarina Albarradas Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ztp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Loxicha Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ztq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Quioquitani-Quierí Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zts", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tilquiapan Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ztt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tejalapan Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ztu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Güilá Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "ztx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zaachila Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zty", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zap", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yatee Zapotec"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zua", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2023, 3, 17), - PreferredValue = null, - Tag = null, - Description = [@"Zeem"], - Comments = [@"see cxh, dsk, dyr, tvi, zem"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zuh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tokano"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zum", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kumzari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zun", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zuni"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zuy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zumaya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zwa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zxx", - Added = new DateOnly(2006, 3, 8), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.Special, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"No linguistic content", @"Not applicable"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zyb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "za", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yongbei Zhuang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zyg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "za", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yang Zhuang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zyj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "za", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Youjiang Zhuang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zyn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "za", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yongnan Zhuang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zyp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zyphe Chin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zza", - Added = new DateOnly(2006, 8, 24), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.MacroLanguage, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = - [ - @"Zaza", - @"Dimili", - @"Dimli (macrolanguage)", - @"Kirdki", - @"Kirmanjki (macrolanguage)", - @"Zazaki", - ], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Language, - SubTag = "zzj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "za", - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zuojiang Zhuang"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "aao", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = "aao", - Tag = null, - Description = [@"Algerian Saharan Arabic"], - Comments = [], - Prefix = [@"ar"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "abh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = "abh", - Tag = null, - Description = [@"Tajiki Arabic"], - Comments = [], - Prefix = [@"ar"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "abv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = "abv", - Tag = null, - Description = [@"Baharna Arabic"], - Comments = [], - Prefix = [@"ar"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "acm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = "acm", - Tag = null, - Description = [@"Mesopotamian Arabic"], - Comments = [], - Prefix = [@"ar"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "acq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = "acq", - Tag = null, - Description = [@"Ta'izzi-Adeni Arabic"], - Comments = [], - Prefix = [@"ar"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "acw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = "acw", - Tag = null, - Description = [@"Hijazi Arabic"], - Comments = [], - Prefix = [@"ar"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "acx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = "acx", - Tag = null, - Description = [@"Omani Arabic"], - Comments = [], - Prefix = [@"ar"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "acy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = "acy", - Tag = null, - Description = [@"Cypriot Arabic"], - Comments = [], - Prefix = [@"ar"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "adf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = "adf", - Tag = null, - Description = [@"Dhofari Arabic"], - Comments = [], - Prefix = [@"ar"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "ads", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "ads", - Tag = null, - Description = [@"Adamorobe Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "aeb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = "aeb", - Tag = null, - Description = [@"Tunisian Arabic"], - Comments = [], - Prefix = [@"ar"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "aec", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = "aec", - Tag = null, - Description = [@"Saidi Arabic"], - Comments = [], - Prefix = [@"ar"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "aed", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "aed", - Tag = null, - Description = [@"Argentine Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "aen", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "aen", - Tag = null, - Description = [@"Armenian Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "afb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = "afb", - Tag = null, - Description = [@"Gulf Arabic"], - Comments = [], - Prefix = [@"ar"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "afg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "afg", - Tag = null, - Description = [@"Afghan Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "ajp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = new DateOnly(2023, 3, 17), - PreferredValue = "ajp", - Tag = null, - Description = [@"South Levantine Arabic"], - Comments = [], - Prefix = [@"ar"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "ajs", - Added = new DateOnly(2022, 2, 25), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "ajs", - Tag = null, - Description = [@"Algerian Jewish Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "apc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = "apc", - Tag = null, - Description = [@"Levantine Arabic"], - Comments = [], - Prefix = [@"ar"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "apd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = "apd", - Tag = null, - Description = [@"Sudanese Arabic"], - Comments = [], - Prefix = [@"ar"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "arb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = "arb", - Tag = null, - Description = [@"Standard Arabic"], - Comments = [], - Prefix = [@"ar"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "arq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = "arq", - Tag = null, - Description = [@"Algerian Arabic"], - Comments = [], - Prefix = [@"ar"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "ars", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = "ars", - Tag = null, - Description = [@"Najdi Arabic"], - Comments = [], - Prefix = [@"ar"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "ary", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = "ary", - Tag = null, - Description = [@"Moroccan Arabic"], - Comments = [], - Prefix = [@"ar"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "arz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = "arz", - Tag = null, - Description = [@"Egyptian Arabic"], - Comments = [], - Prefix = [@"ar"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "ase", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "ase", - Tag = null, - Description = [@"American Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "asf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "asf", - Tag = null, - Description = [@"Auslan", @"Australian Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "asp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "asp", - Tag = null, - Description = [@"Algerian Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "asq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "asq", - Tag = null, - Description = [@"Austrian Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "asw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "asw", - Tag = null, - Description = [@"Australian Aborigines Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "auz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = "auz", - Tag = null, - Description = [@"Uzbeki Arabic"], - Comments = [], - Prefix = [@"ar"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "avl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = "avl", - Tag = null, - Description = [@"Eastern Egyptian Bedawi Arabic"], - Comments = [], - Prefix = [@"ar"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "ayh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = "ayh", - Tag = null, - Description = [@"Hadrami Arabic"], - Comments = [], - Prefix = [@"ar"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "ayl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = "ayl", - Tag = null, - Description = [@"Libyan Arabic"], - Comments = [], - Prefix = [@"ar"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "ayn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = "ayn", - Tag = null, - Description = [@"Sanaani Arabic"], - Comments = [], - Prefix = [@"ar"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "ayp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = "ayp", - Tag = null, - Description = [@"North Mesopotamian Arabic"], - Comments = [], - Prefix = [@"ar"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "bbz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = new DateOnly(2020, 3, 28), - PreferredValue = "bbz", - Tag = null, - Description = [@"Babalia Creole Arabic"], - Comments = [], - Prefix = [@"ar"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "bfi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "bfi", - Tag = null, - Description = [@"British Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "bfk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "bfk", - Tag = null, - Description = [@"Ban Khor Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "bjn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = "bjn", - Tag = null, - Description = [@"Banjar"], - Comments = [], - Prefix = [@"ms"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "bog", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "bog", - Tag = null, - Description = [@"Bamako Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "bqn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "bqn", - Tag = null, - Description = [@"Bulgarian Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "bqy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "bqy", - Tag = null, - Description = [@"Bengkala Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "btj", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = "btj", - Tag = null, - Description = [@"Bacanese Malay"], - Comments = [], - Prefix = [@"ms"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "bve", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = "bve", - Tag = null, - Description = [@"Berau Malay"], - Comments = [], - Prefix = [@"ms"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "bvl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "bvl", - Tag = null, - Description = [@"Bolivian Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "bvu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = "bvu", - Tag = null, - Description = [@"Bukit Malay"], - Comments = [], - Prefix = [@"ms"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "bzs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "bzs", - Tag = null, - Description = [@"Brazilian Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "cdo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zh", - Deprecated = null, - PreferredValue = "cdo", - Tag = null, - Description = [@"Min Dong Chinese"], - Comments = [], - Prefix = [@"zh"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "cds", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "cds", - Tag = null, - Description = [@"Chadian Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "cjy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zh", - Deprecated = null, - PreferredValue = "cjy", - Tag = null, - Description = [@"Jinyu Chinese"], - Comments = [], - Prefix = [@"zh"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "cmn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zh", - Deprecated = null, - PreferredValue = "cmn", - Tag = null, - Description = [@"Mandarin Chinese"], - Comments = [], - Prefix = [@"zh"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "cnp", - Added = new DateOnly(2020, 3, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zh", - Deprecated = null, - PreferredValue = "cnp", - Tag = null, - Description = [@"Northern Ping Chinese", @"Northern Pinghua"], - Comments = [], - Prefix = [@"zh"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "coa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = "coa", - Tag = null, - Description = [@"Cocos Islands Malay"], - Comments = [], - Prefix = [@"ms"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "cpx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zh", - Deprecated = null, - PreferredValue = "cpx", - Tag = null, - Description = [@"Pu-Xian Chinese"], - Comments = [], - Prefix = [@"zh"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "csc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "csc", - Tag = null, - Description = - [ - @"Catalan Sign Language", - @"Lengua de señas catalana", - @"Llengua de Signes Catalana", - ], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "csd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "csd", - Tag = null, - Description = [@"Chiangmai Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "cse", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "cse", - Tag = null, - Description = [@"Czech Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "csf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "csf", - Tag = null, - Description = [@"Cuba Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "csg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "csg", - Tag = null, - Description = [@"Chilean Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "csl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "csl", - Tag = null, - Description = [@"Chinese Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "csn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "csn", - Tag = null, - Description = [@"Colombian Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "csp", - Added = new DateOnly(2020, 3, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zh", - Deprecated = null, - PreferredValue = "csp", - Tag = null, - Description = [@"Southern Ping Chinese", @"Southern Pinghua"], - Comments = [], - Prefix = [@"zh"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "csq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "csq", - Tag = null, - Description = [@"Croatia Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "csr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "csr", - Tag = null, - Description = [@"Costa Rican Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "csx", - Added = new DateOnly(2021, 2, 20), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "csx", - Tag = null, - Description = [@"Cambodian Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "czh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zh", - Deprecated = null, - PreferredValue = "czh", - Tag = null, - Description = [@"Huizhou Chinese"], - Comments = [], - Prefix = [@"zh"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "czo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zh", - Deprecated = null, - PreferredValue = "czo", - Tag = null, - Description = [@"Min Zhong Chinese"], - Comments = [], - Prefix = [@"zh"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "doq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "doq", - Tag = null, - Description = [@"Dominican Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "dse", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "dse", - Tag = null, - Description = [@"Dutch Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "dsl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "dsl", - Tag = null, - Description = [@"Danish Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "dsz", - Added = new DateOnly(2022, 2, 25), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "dsz", - Tag = null, - Description = [@"Mardin Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "dup", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = "dup", - Tag = null, - Description = [@"Duano"], - Comments = [], - Prefix = [@"ms"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "dyl", - Added = new DateOnly(2026, 4, 9), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "dyl", - Tag = null, - Description = [@"Bhutanese Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "ecs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "ecs", - Tag = null, - Description = [@"Ecuadorian Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "ehs", - Added = new DateOnly(2021, 2, 20), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "ehs", - Tag = null, - Description = [@"Miyakubo Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "esl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "esl", - Tag = null, - Description = [@"Egypt Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "esn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "esn", - Tag = null, - Description = [@"Salvadoran Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "eso", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "eso", - Tag = null, - Description = [@"Estonian Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "eth", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "eth", - Tag = null, - Description = [@"Ethiopian Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "fcs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "fcs", - Tag = null, - Description = [@"Quebec Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "fse", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "fse", - Tag = null, - Description = [@"Finnish Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "fsl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "fsl", - Tag = null, - Description = [@"French Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "fss", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "fss", - Tag = null, - Description = - [ - @"Finland-Swedish Sign Language", - @"finlandssvenskt teckenspråk", - @"suomenruotsalainen viittomakieli", - ], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "gan", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zh", - Deprecated = null, - PreferredValue = "gan", - Tag = null, - Description = [@"Gan Chinese"], - Comments = [], - Prefix = [@"zh"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "gds", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "gds", - Tag = null, - Description = [@"Ghandruk Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "gom", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "kok", - Deprecated = null, - PreferredValue = "gom", - Tag = null, - Description = [@"Goan Konkani"], - Comments = [], - Prefix = [@"kok"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "gse", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "gse", - Tag = null, - Description = [@"Ghanaian Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "gsg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "gsg", - Tag = null, - Description = [@"German Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "gsm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "gsm", - Tag = null, - Description = [@"Guatemalan Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "gss", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "gss", - Tag = null, - Description = [@"Greek Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "gus", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "gus", - Tag = null, - Description = [@"Guinean Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "hab", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "hab", - Tag = null, - Description = [@"Hanoi Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "haf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "haf", - Tag = null, - Description = [@"Haiphong Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "hak", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zh", - Deprecated = null, - PreferredValue = "hak", - Tag = null, - Description = [@"Hakka Chinese"], - Comments = [], - Prefix = [@"zh"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "hds", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "hds", - Tag = null, - Description = [@"Honduras Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "hji", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = "hji", - Tag = null, - Description = [@"Haji"], - Comments = [], - Prefix = [@"ms"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "hks", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "hks", - Tag = null, - Description = [@"Hong Kong Sign Language", @"Heung Kong Sau Yue"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "hnm", - Added = new DateOnly(2024, 12, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zh", - Deprecated = null, - PreferredValue = "hnm", - Tag = null, - Description = [@"Hainanese"], - Comments = [], - Prefix = [@"zh"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "hos", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "hos", - Tag = null, - Description = [@"Ho Chi Minh City Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "hps", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "hps", - Tag = null, - Description = [@"Hawai'i Sign Language (HSL)", @"Hawai'i Pidgin Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "hsh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "hsh", - Tag = null, - Description = [@"Hungarian Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "hsl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "hsl", - Tag = null, - Description = [@"Hausa Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "hsn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zh", - Deprecated = null, - PreferredValue = "hsn", - Tag = null, - Description = [@"Xiang Chinese"], - Comments = [], - Prefix = [@"zh"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "icl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "icl", - Tag = null, - Description = [@"Icelandic Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "iks", - Added = new DateOnly(2015, 2, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "iks", - Tag = null, - Description = [@"Inuit Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "ils", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "ils", - Tag = null, - Description = [@"International Sign"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "inl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "inl", - Tag = null, - Description = [@"Indonesian Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "ins", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "ins", - Tag = null, - Description = [@"Indian Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "ise", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "ise", - Tag = null, - Description = [@"Italian Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "isg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "isg", - Tag = null, - Description = [@"Irish Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "isr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "isr", - Tag = null, - Description = [@"Israeli Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "jak", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = "jak", - Tag = null, - Description = [@"Jakun"], - Comments = [], - Prefix = [@"ms"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "jax", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = "jax", - Tag = null, - Description = [@"Jambi Malay"], - Comments = [], - Prefix = [@"ms"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "jcs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "jcs", - Tag = null, - Description = [@"Jamaican Country Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "jhs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "jhs", - Tag = null, - Description = [@"Jhankot Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "jks", - Added = new DateOnly(2021, 2, 20), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "jks", - Tag = null, - Description = [@"Amami Koniya Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "jls", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "jls", - Tag = null, - Description = [@"Jamaican Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "jos", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "jos", - Tag = null, - Description = [@"Jordanian Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "jsl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "jsl", - Tag = null, - Description = [@"Japanese Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "jus", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "jus", - Tag = null, - Description = [@"Jumla Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "kgi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "kgi", - Tag = null, - Description = [@"Selangor Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "knn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "kok", - Deprecated = null, - PreferredValue = "knn", - Tag = null, - Description = [@"Konkani (individual language)"], - Comments = [], - Prefix = [@"kok"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "kvb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = "kvb", - Tag = null, - Description = [@"Kubu"], - Comments = [], - Prefix = [@"ms"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "kvk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "kvk", - Tag = null, - Description = [@"Korean Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "kvr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = "kvr", - Tag = null, - Description = [@"Kerinci"], - Comments = [], - Prefix = [@"ms"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "kxd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = "kxd", - Tag = null, - Description = [@"Brunei"], - Comments = [], - Prefix = [@"ms"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "lbs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "lbs", - Tag = null, - Description = [@"Libyan Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "lce", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = "lce", - Tag = null, - Description = [@"Loncong", @"Sekak"], - Comments = [], - Prefix = [@"ms"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "lcf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = "lcf", - Tag = null, - Description = [@"Lubu"], - Comments = [], - Prefix = [@"ms"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "lgs", - Added = new DateOnly(2023, 3, 17), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "lgs", - Tag = null, - Description = [@"Guinea-Bissau Sign Language", @"Língua Gestual Guineense"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "liw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = "liw", - Tag = null, - Description = [@"Col"], - Comments = [], - Prefix = [@"ms"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "lls", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "lls", - Tag = null, - Description = [@"Lithuanian Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "lsb", - Added = new DateOnly(2021, 2, 20), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "lsb", - Tag = null, - Description = [@"Burundian Sign Language", @"Langue des Signes Burundaise"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "lsc", - Added = new DateOnly(2022, 2, 25), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "lsc", - Tag = null, - Description = [@"Albarradas Sign Language", @"Lengua de señas Albarradas"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "lsg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2018, 3, 8), - PreferredValue = "lsg", - Tag = null, - Description = [@"Lyons Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "lsl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "lsl", - Tag = null, - Description = [@"Latvian Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "lsn", - Added = new DateOnly(2019, 4, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "lsn", - Tag = null, - Description = [@"Tibetan Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "lso", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "lso", - Tag = null, - Description = [@"Laos Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "lsp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "lsp", - Tag = null, - Description = [@"Panamanian Sign Language", @"Lengua de Señas Panameñas"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "lst", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "lst", - Tag = null, - Description = [@"Trinidad and Tobago Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "lsv", - Added = new DateOnly(2019, 4, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "lsv", - Tag = null, - Description = [@"Sivia Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "lsw", - Added = new DateOnly(2022, 2, 25), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "lsw", - Tag = null, - Description = - [ - @"Seychelles Sign Language", - @"Lalang Siny Seselwa", - @"Langue des Signes Seychelloise", - ], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "lsy", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "lsy", - Tag = null, - Description = [@"Mauritian Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "ltg", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "lv", - Deprecated = null, - PreferredValue = "ltg", - Tag = null, - Description = [@"Latgalian"], - Comments = [], - Prefix = [@"lv"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "luh", - Added = new DateOnly(2024, 12, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zh", - Deprecated = null, - PreferredValue = "luh", - Tag = null, - Description = [@"Leizhou Chinese"], - Comments = [], - Prefix = [@"zh"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "lvs", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "lv", - Deprecated = null, - PreferredValue = "lvs", - Tag = null, - Description = [@"Standard Latvian"], - Comments = [], - Prefix = [@"lv"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "lws", - Added = new DateOnly(2018, 3, 8), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "lws", - Tag = null, - Description = [@"Malawian Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "lzh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zh", - Deprecated = null, - PreferredValue = "lzh", - Tag = null, - Description = [@"Literary Chinese"], - Comments = [], - Prefix = [@"zh"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "max", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = "max", - Tag = null, - Description = [@"North Moluccan Malay"], - Comments = [], - Prefix = [@"ms"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "mdl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "mdl", - Tag = null, - Description = [@"Maltese Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "meo", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = "meo", - Tag = null, - Description = [@"Kedah Malay"], - Comments = [], - Prefix = [@"ms"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "mfa", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = "mfa", - Tag = null, - Description = [@"Pattani Malay"], - Comments = [], - Prefix = [@"ms"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "mfb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = "mfb", - Tag = null, - Description = [@"Bangka"], - Comments = [], - Prefix = [@"ms"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "mfs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "mfs", - Tag = null, - Description = [@"Mexican Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "min", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = "min", - Tag = null, - Description = [@"Minangkabau"], - Comments = [], - Prefix = [@"ms"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "mnp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zh", - Deprecated = null, - PreferredValue = "mnp", - Tag = null, - Description = [@"Min Bei Chinese"], - Comments = [], - Prefix = [@"zh"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "mqg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = "mqg", - Tag = null, - Description = [@"Kota Bangun Kutai Malay"], - Comments = [], - Prefix = [@"ms"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "mre", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "mre", - Tag = null, - Description = [@"Martha's Vineyard Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "msd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "msd", - Tag = null, - Description = [@"Yucatec Maya Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "msi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = "msi", - Tag = null, - Description = [@"Sabah Malay"], - Comments = [], - Prefix = [@"ms"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "msr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "msr", - Tag = null, - Description = [@"Mongolian Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "mui", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = "mui", - Tag = null, - Description = [@"Musi"], - Comments = [], - Prefix = [@"ms"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "mzc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "mzc", - Tag = null, - Description = [@"Madagascar Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "mzg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "mzg", - Tag = null, - Description = [@"Monastic Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "mzy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "mzy", - Tag = null, - Description = [@"Mozambican Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "nan", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zh", - Deprecated = null, - PreferredValue = "nan", - Tag = null, - Description = [@"Min Nan Chinese"], - Comments = [], - Prefix = [@"zh"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "nbs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "nbs", - Tag = null, - Description = [@"Namibian Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "ncs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "ncs", - Tag = null, - Description = [@"Nicaraguan Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "nsi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "nsi", - Tag = null, - Description = [@"Nigerian Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "nsl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "nsl", - Tag = null, - Description = [@"Norwegian Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "nsp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "nsp", - Tag = null, - Description = [@"Nepalese Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "nsr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "nsr", - Tag = null, - Description = [@"Maritime Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "nzs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "nzs", - Tag = null, - Description = [@"New Zealand Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "okl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "okl", - Tag = null, - Description = [@"Old Kentish Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "orn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = "orn", - Tag = null, - Description = [@"Orang Kanaq"], - Comments = [], - Prefix = [@"ms"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "ors", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = "ors", - Tag = null, - Description = [@"Orang Seletar"], - Comments = [], - Prefix = [@"ms"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "pel", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = "pel", - Tag = null, - Description = [@"Pekal"], - Comments = [], - Prefix = [@"ms"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "pga", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = "pga", - Tag = null, - Description = [@"Sudanese Creole Arabic"], - Comments = [], - Prefix = [@"ar"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "pgz", - Added = new DateOnly(2016, 5, 30), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "pgz", - Tag = null, - Description = [@"Papua New Guinean Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "pks", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "pks", - Tag = null, - Description = [@"Pakistan Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "prl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "prl", - Tag = null, - Description = [@"Peruvian Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "prz", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "prz", - Tag = null, - Description = [@"Providencia Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "psc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "psc", - Tag = null, - Description = [@"Iranian Sign Language", @"Persian Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "psd", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "psd", - Tag = null, - Description = [@"Plains Indian Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "pse", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = "pse", - Tag = null, - Description = [@"Central Malay"], - Comments = [], - Prefix = [@"ms"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "psg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "psg", - Tag = null, - Description = [@"Penang Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "psl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "psl", - Tag = null, - Description = [@"Puerto Rican Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "pso", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "pso", - Tag = null, - Description = [@"Polish Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "psp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "psp", - Tag = null, - Description = [@"Philippine Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "psr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "psr", - Tag = null, - Description = [@"Portuguese Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "pys", - Added = new DateOnly(2010, 3, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "pys", - Tag = null, - Description = [@"Paraguayan Sign Language", @"Lengua de Señas del Paraguay"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "rib", - Added = new DateOnly(2022, 2, 25), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "rib", - Tag = null, - Description = [@"Bribri Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "rms", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "rms", - Tag = null, - Description = [@"Romanian Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "rnb", - Added = new DateOnly(2022, 2, 25), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "rnb", - Tag = null, - Description = [@"Brunca Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "rsi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2017, 2, 23), - PreferredValue = "rsi", - Tag = null, - Description = [@"Rennellese Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "rsl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "rsl", - Tag = null, - Description = [@"Russian Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "rsm", - Added = new DateOnly(2016, 5, 30), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "rsm", - Tag = null, - Description = [@"Miriwoong Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "rsn", - Added = new DateOnly(2022, 2, 25), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "rsn", - Tag = null, - Description = [@"Rwandan Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "sdl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "sdl", - Tag = null, - Description = [@"Saudi Arabian Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "sfb", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "sfb", - Tag = null, - Description = - [ - @"Langue des signes de Belgique Francophone", - @"French Belgian Sign Language", - ], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "sfs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "sfs", - Tag = null, - Description = [@"South African Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "sgg", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "sgg", - Tag = null, - Description = [@"Swiss-German Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "sgx", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "sgx", - Tag = null, - Description = [@"Sierra Leone Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "shu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = "shu", - Tag = null, - Description = [@"Chadian Arabic"], - Comments = [], - Prefix = [@"ar"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "sjc", - Added = new DateOnly(2024, 12, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zh", - Deprecated = null, - PreferredValue = "sjc", - Tag = null, - Description = [@"Shaojiang Chinese"], - Comments = [], - Prefix = [@"zh"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "slf", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "slf", - Tag = null, - Description = [@"Swiss-Italian Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "sls", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "sls", - Tag = null, - Description = [@"Singapore Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "sqk", - Added = new DateOnly(2012, 8, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "sqk", - Tag = null, - Description = [@"Albanian Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "sqs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "sqs", - Tag = null, - Description = [@"Sri Lankan Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "sqx", - Added = new DateOnly(2021, 2, 20), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "sqx", - Tag = null, - Description = [@"Kufr Qassem Sign Language (KQSL)"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "ssh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ar", - Deprecated = null, - PreferredValue = "ssh", - Tag = null, - Description = [@"Shihhi Arabic"], - Comments = [], - Prefix = [@"ar"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "ssp", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "ssp", - Tag = null, - Description = [@"Spanish Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "ssr", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "ssr", - Tag = null, - Description = [@"Swiss-French Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "svk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "svk", - Tag = null, - Description = [@"Slovakian Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "swc", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "sw", - Deprecated = null, - PreferredValue = "swc", - Tag = null, - Description = [@"Congo Swahili"], - Comments = [], - Prefix = [@"sw"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "swh", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "sw", - Deprecated = null, - PreferredValue = "swh", - Tag = null, - Description = [@"Swahili (individual language)", @"Kiswahili"], - Comments = [], - Prefix = [@"sw"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "swl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "swl", - Tag = null, - Description = [@"Swedish Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "syy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "syy", - Tag = null, - Description = [@"Al-Sayyid Bedouin Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "szs", - Added = new DateOnly(2017, 2, 23), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "szs", - Tag = null, - Description = [@"Solomon Islands Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "tmw", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = "tmw", - Tag = null, - Description = [@"Temuan"], - Comments = [], - Prefix = [@"ms"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "tse", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "tse", - Tag = null, - Description = [@"Tunisian Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "tsm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "tsm", - Tag = null, - Description = [@"Turkish Sign Language", @"Türk İşaret Dili"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "tsq", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "tsq", - Tag = null, - Description = [@"Thai Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "tss", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "tss", - Tag = null, - Description = [@"Taiwan Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "tsy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "tsy", - Tag = null, - Description = [@"Tebul Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "tza", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "tza", - Tag = null, - Description = [@"Tanzanian Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "ugn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "ugn", - Tag = null, - Description = [@"Ugandan Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "ugy", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "ugy", - Tag = null, - Description = [@"Uruguayan Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "ukl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "ukl", - Tag = null, - Description = [@"Ukrainian Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "uks", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "uks", - Tag = null, - Description = [@"Urubú-Kaapor Sign Language", @"Kaapor Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "urk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = "urk", - Tag = null, - Description = [@"Urak Lawoi'"], - Comments = [], - Prefix = [@"ms"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "uzn", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "uz", - Deprecated = null, - PreferredValue = "uzn", - Tag = null, - Description = [@"Northern Uzbek"], - Comments = [], - Prefix = [@"uz"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "uzs", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "uz", - Deprecated = null, - PreferredValue = "uzs", - Tag = null, - Description = [@"Southern Uzbek"], - Comments = [], - Prefix = [@"uz"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "vgt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "vgt", - Tag = null, - Description = [@"Vlaamse Gebarentaal", @"Flemish Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "vkk", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = "vkk", - Tag = null, - Description = [@"Kaur"], - Comments = [], - Prefix = [@"ms"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "vkt", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = "vkt", - Tag = null, - Description = [@"Tenggarong Kutai Malay"], - Comments = [], - Prefix = [@"ms"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "vsi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "vsi", - Tag = null, - Description = [@"Moldova Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "vsl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "vsl", - Tag = null, - Description = [@"Venezuelan Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "vsv", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "vsv", - Tag = null, - Description = [@"Valencian Sign Language", @"Llengua de signes valenciana"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "wbs", - Added = new DateOnly(2017, 2, 23), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "wbs", - Tag = null, - Description = [@"West Bengal Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "wuu", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zh", - Deprecated = null, - PreferredValue = "wuu", - Tag = null, - Description = [@"Wu Chinese"], - Comments = [], - Prefix = [@"zh"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "xki", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "xki", - Tag = null, - Description = [@"Kenyan Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "xml", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "xml", - Tag = null, - Description = [@"Malaysian Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "xmm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = "xmm", - Tag = null, - Description = [@"Manado Malay"], - Comments = [], - Prefix = [@"ms"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "xms", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "xms", - Tag = null, - Description = [@"Moroccan Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "yds", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2015, 2, 12), - PreferredValue = "yds", - Tag = null, - Description = [@"Yiddish Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "ygs", - Added = new DateOnly(2014, 2, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "ygs", - Tag = null, - Description = [@"Yolŋu Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "yhs", - Added = new DateOnly(2015, 4, 17), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "yhs", - Tag = null, - Description = [@"Yan-nhaŋu Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "ysl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "ysl", - Tag = null, - Description = [@"Yugoslavian Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "ysm", - Added = new DateOnly(2021, 2, 20), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "ysm", - Tag = null, - Description = [@"Myanmar Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "yue", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "zh", - Deprecated = null, - PreferredValue = "yue", - Tag = null, - Description = [@"Yue Chinese", @"Cantonese"], - Comments = [], - Prefix = [@"zh"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "zhk", - Added = new DateOnly(2026, 5, 5), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "zhk", - Tag = null, - Description = [@"Kurdish Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "zib", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "zib", - Tag = null, - Description = [@"Zimbabwe Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "zlm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = "zlm", - Tag = null, - Description = [@"Malay (individual language)"], - Comments = [], - Prefix = [@"ms"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "zmi", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = "zmi", - Tag = null, - Description = [@"Negeri Sembilan Malay"], - Comments = [], - Prefix = [@"ms"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "zsl", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = "zsl", - Tag = null, - Description = [@"Zambian Sign Language"], - Comments = [], - Prefix = [@"sgn"], - }, - new() - { - Type = Rfc5646Record.RecordType.ExtLanguage, - SubTag = "zsm", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = "ms", - Deprecated = null, - PreferredValue = "zsm", - Tag = null, - Description = [@"Standard Malay"], - Comments = [], - Prefix = [@"ms"], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Adlm", - Added = new DateOnly(2014, 12, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Adlam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Afak", - Added = new DateOnly(2011, 1, 7), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Afaka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Aghb", - Added = new DateOnly(2012, 11, 1), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Caucasian Albanian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Ahom", - Added = new DateOnly(2013, 12, 2), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ahom", @"Tai Ahom"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Arab", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Arabic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Aran", - Added = new DateOnly(2014, 12, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Arabic (Nastaliq variant)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Armi", - Added = new DateOnly(2007, 12, 5), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Imperial Aramaic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Armn", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Armenian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Avst", - Added = new DateOnly(2007, 7, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Avestan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Bali", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Balinese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Bamu", - Added = new DateOnly(2009, 7, 30), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bamum"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Bass", - Added = new DateOnly(2010, 4, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bassa Vah"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Batk", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Batak"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Beng", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bengali", @"Bangla"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Berf", - Added = new DateOnly(2025, 2, 6), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Beria Erfe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Bhks", - Added = new DateOnly(2015, 7, 24), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bhaiksuki"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Blis", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Blissymbols"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Bopo", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bopomofo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Brah", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Brahmi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Brai", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Braille"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Bugi", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Buginese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Buhd", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Buhid"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Cakm", - Added = new DateOnly(2007, 12, 5), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chakma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Cans", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Unified Canadian Aboriginal Syllabics"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Cari", - Added = new DateOnly(2006, 7, 21), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Carian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Cham", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cham"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Cher", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cherokee"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Chis", - Added = new DateOnly(2023, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chisoi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Chrs", - Added = new DateOnly(2019, 9, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chorasmian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Cirt", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cirth"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Copt", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Coptic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Cpmn", - Added = new DateOnly(2017, 8, 13), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cypro-Minoan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Cprt", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cypriot syllabary"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Cyrl", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cyrillic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Cyrs", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cyrillic (Old Church Slavonic variant)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Deva", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Devanagari", @"Nagari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Diak", - Added = new DateOnly(2019, 9, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dives Akuru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Dogr", - Added = new DateOnly(2017, 1, 13), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dogra"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Dsrt", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Deseret", @"Mormon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Dupl", - Added = new DateOnly(2010, 8, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Duployan shorthand", @"Duployan stenography"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Egyd", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Egyptian demotic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Egyh", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Egyptian hieratic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Egyp", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Egyptian hieroglyphs"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Elba", - Added = new DateOnly(2010, 8, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Elbasan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Elym", - Added = new DateOnly(2018, 10, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Elymaic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Ethi", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ethiopic", @"Geʻez", @"Ge'ez"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Gara", - Added = new DateOnly(2023, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Garay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Geok", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khutsuri (Asomtavruli and Nuskhuri)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Geor", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Georgian (Mkhedruli and Mtavruli)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Glag", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Glagolitic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Gong", - Added = new DateOnly(2017, 1, 13), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gunjala Gondi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Gonm", - Added = new DateOnly(2017, 1, 13), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Masaram Gondi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Goth", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gothic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Gran", - Added = new DateOnly(2009, 12, 9), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Grantha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Grek", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Greek"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Gujr", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gujarati"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Gukh", - Added = new DateOnly(2023, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gurung Khema"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Guru", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gurmukhi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Hanb", - Added = new DateOnly(2016, 2, 8), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Han with Bopomofo (alias for Han + Bopomofo)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Hang", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hangul", @"Hangŭl", @"Hangeul"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Hani", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Han", @"Hanzi", @"Kanji", @"Hanja"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Hano", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hanunoo", @"Hanunóo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Hans", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Han (Simplified variant)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Hant", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Han (Traditional variant)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Hatr", - Added = new DateOnly(2013, 12, 2), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hatran"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Hebr", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hebrew"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Hira", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hiragana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Hluw", - Added = new DateOnly(2011, 12, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = - [ - @"Anatolian Hieroglyphs", - @"Luwian Hieroglyphs", - @"Hittite Hieroglyphs", - ], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Hmng", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pahawh Hmong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Hmnp", - Added = new DateOnly(2017, 8, 13), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nyiakeng Puachue Hmong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Hntl", - Added = new DateOnly(2025, 5, 14), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Han (Traditional variant) with Latin (alias for Hant + Latn)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Hrkt", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Japanese syllabaries (alias for Hiragana + Katakana)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Hung", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old Hungarian", @"Hungarian Runic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Inds", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Indus", @"Harappan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Ital", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old Italic (Etruscan, Oscan, etc.)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Jamo", - Added = new DateOnly(2016, 2, 8), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jamo (alias for Jamo subset of Hangul)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Java", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Javanese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Jpan", - Added = new DateOnly(2006, 7, 21), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Japanese (alias for Han + Hiragana + Katakana)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Jurc", - Added = new DateOnly(2011, 1, 7), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jurchen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Kali", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kayah Li"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Kana", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Katakana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Kawi", - Added = new DateOnly(2021, 12, 24), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kawi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Khar", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kharoshthi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Khmr", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khmer"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Khoj", - Added = new DateOnly(2011, 8, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khojki"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Kitl", - Added = new DateOnly(2014, 12, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khitan large script"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Kits", - Added = new DateOnly(2014, 12, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khitan small script"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Knda", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kannada"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Kore", - Added = new DateOnly(2007, 7, 5), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Korean (alias for Hangul + Han)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Kpel", - Added = new DateOnly(2010, 4, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kpelle"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Krai", - Added = new DateOnly(2023, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kirat Rai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Kthi", - Added = new DateOnly(2007, 12, 5), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kaithi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Lana", - Added = new DateOnly(2006, 7, 21), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tai Tham", @"Lanna"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Laoo", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Latf", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Latin (Fraktur variant)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Latg", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Latin (Gaelic variant)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Latn", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Latin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Leke", - Added = new DateOnly(2015, 7, 24), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Leke"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Lepc", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lepcha", @"Róng"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Limb", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Limbu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Lina", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Linear A"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Linb", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Linear B"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Lisu", - Added = new DateOnly(2009, 3, 13), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lisu", @"Fraser"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Loma", - Added = new DateOnly(2010, 4, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Loma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Lyci", - Added = new DateOnly(2006, 7, 21), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lycian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Lydi", - Added = new DateOnly(2006, 7, 21), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lydian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Mahj", - Added = new DateOnly(2012, 11, 1), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mahajani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Maka", - Added = new DateOnly(2017, 1, 13), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Makasar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Mand", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mandaic", @"Mandaean"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Mani", - Added = new DateOnly(2007, 7, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Manichaean"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Marc", - Added = new DateOnly(2014, 12, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Marchen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Maya", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mayan hieroglyphs"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Medf", - Added = new DateOnly(2017, 1, 13), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Medefaidrin", @"Oberi Okaime", @"Oberi Ɔkaimɛ"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Mend", - Added = new DateOnly(2010, 4, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mende Kikakui"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Merc", - Added = new DateOnly(2009, 12, 9), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Meroitic Cursive"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Mero", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Meroitic Hieroglyphs"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Mlym", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Malayalam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Modi", - Added = new DateOnly(2013, 12, 2), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Modi", @"Moḍī"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Mong", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mongolian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Moon", - Added = new DateOnly(2007, 1, 26), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Moon", @"Moon code", @"Moon script", @"Moon type"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Mroo", - Added = new DateOnly(2011, 1, 7), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mro", @"Mru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Mtei", - Added = new DateOnly(2007, 1, 26), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Meitei Mayek", @"Meithei", @"Meetei"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Mult", - Added = new DateOnly(2013, 12, 2), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Multani"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Mymr", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Myanmar", @"Burmese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Nagm", - Added = new DateOnly(2021, 12, 24), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nag Mundari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Nand", - Added = new DateOnly(2018, 10, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nandinagari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Narb", - Added = new DateOnly(2010, 4, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old North Arabian", @"Ancient North Arabian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Nbat", - Added = new DateOnly(2010, 4, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nabataean"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Newa", - Added = new DateOnly(2016, 1, 4), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Newa", @"Newar", @"Newari", @"Nepāla lipi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Nkdb", - Added = new DateOnly(2017, 8, 13), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Naxi Dongba", @"na²¹ɕi³³ to³³ba²¹", @"Nakhi Tomba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Nkgb", - Added = new DateOnly(2009, 3, 13), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = - [ - @"Naxi Geba", - @"na²¹ɕi³³ gʌ²¹ba²¹", - @"'Na-'Khi ²Ggŏ-¹baw", - @"Nakhi Geba", - ], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Nkoo", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"N’Ko", @"N'Ko"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Nshu", - Added = new DateOnly(2011, 1, 7), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nüshu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Ogam", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ogham"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Olck", - Added = new DateOnly(2006, 7, 21), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ol Chiki", @"Ol Cemet'", @"Ol", @"Santali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Onao", - Added = new DateOnly(2023, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ol Onal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Orkh", - Added = new DateOnly(2009, 7, 30), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old Turkic", @"Orkhon Runic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Orya", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Oriya", @"Odia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Osge", - Added = new DateOnly(2014, 12, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Osage"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Osma", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Osmanya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Ougr", - Added = new DateOnly(2021, 2, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old Uyghur"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Palm", - Added = new DateOnly(2010, 4, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Palmyrene"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Pauc", - Added = new DateOnly(2013, 12, 2), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pau Cin Hau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Pcun", - Added = new DateOnly(2021, 2, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Proto-Cuneiform"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Pelm", - Added = new DateOnly(2021, 2, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Proto-Elamite"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Perm", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old Permic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Phag", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Phags-pa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Phli", - Added = new DateOnly(2007, 12, 5), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Inscriptional Pahlavi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Phlp", - Added = new DateOnly(2007, 12, 5), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Psalter Pahlavi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Phlv", - Added = new DateOnly(2007, 7, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Book Pahlavi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Phnx", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Phoenician"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Piqd", - Added = new DateOnly(2016, 1, 4), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Klingon (KLI pIqaD)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Plrd", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Miao", @"Pollard"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Prti", - Added = new DateOnly(2007, 12, 5), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Inscriptional Parthian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Psin", - Added = new DateOnly(2021, 2, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Proto-Sinaitic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Qaaa..Qabx", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Private use"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Ranj", - Added = new DateOnly(2021, 2, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ranjana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Rjng", - Added = new DateOnly(2006, 10, 17), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rejang", @"Redjang", @"Kaganga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Rohg", - Added = new DateOnly(2017, 12, 13), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hanifi Rohingya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Roro", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rongorongo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Runr", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Runic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Samr", - Added = new DateOnly(2007, 7, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Samaritan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Sara", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sarati"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Sarb", - Added = new DateOnly(2009, 7, 30), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old South Arabian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Saur", - Added = new DateOnly(2006, 7, 21), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Saurashtra"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Seal", - Added = new DateOnly(2025, 5, 14), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Seal", @"Small Seal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Sgnw", - Added = new DateOnly(2006, 10, 17), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"SignWriting"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Shaw", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shavian", @"Shaw"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Shrd", - Added = new DateOnly(2011, 1, 7), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sharada", @"Śāradā"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Shui", - Added = new DateOnly(2017, 8, 13), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Shuishu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Sidd", - Added = new DateOnly(2013, 12, 2), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Siddham", @"Siddhaṃ", @"Siddhamātṛkā"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Sidt", - Added = new DateOnly(2023, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sidetic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Sind", - Added = new DateOnly(2010, 8, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Khudawadi", @"Sindhi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Sinh", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sinhala"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Sogd", - Added = new DateOnly(2017, 12, 13), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sogdian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Sogo", - Added = new DateOnly(2017, 12, 13), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old Sogdian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Sora", - Added = new DateOnly(2011, 1, 7), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sora Sompeng"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Soyo", - Added = new DateOnly(2017, 1, 13), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Soyombo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Sund", - Added = new DateOnly(2006, 7, 21), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sundanese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Sunu", - Added = new DateOnly(2021, 12, 24), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sunuwar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Sylo", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Syloti Nagri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Syrc", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Syriac"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Syre", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Syriac (Estrangelo variant)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Syrj", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Syriac (Western variant)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Syrn", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Syriac (Eastern variant)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Tagb", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tagbanwa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Takr", - Added = new DateOnly(2011, 1, 7), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Takri", @"Ṭākrī", @"Ṭāṅkrī"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Tale", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tai Le"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Talu", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"New Tai Lue"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Taml", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tamil"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Tang", - Added = new DateOnly(2011, 1, 7), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tangut"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Tavt", - Added = new DateOnly(2007, 12, 5), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tai Viet"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Tayo", - Added = new DateOnly(2023, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tai Yo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Telu", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Telugu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Teng", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tengwar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Tfng", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tifinagh", @"Berber"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Tglg", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tagalog", @"Baybayin", @"Alibata"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Thaa", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Thaana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Thai", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Thai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Tibt", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tibetan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Tirh", - Added = new DateOnly(2011, 8, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tirhuta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Tnsa", - Added = new DateOnly(2021, 3, 5), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tangsa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Todr", - Added = new DateOnly(2023, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Todhri"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Tols", - Added = new DateOnly(2023, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tolong Siki"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Toto", - Added = new DateOnly(2020, 5, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Toto"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Tutg", - Added = new DateOnly(2023, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tulu-Tigalari"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Ugar", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ugaritic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Vaii", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Visp", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Visible Speech"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Vith", - Added = new DateOnly(2021, 3, 5), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vithkuqi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Wara", - Added = new DateOnly(2009, 12, 9), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Warang Citi", @"Varang Kshiti"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Wcho", - Added = new DateOnly(2017, 8, 13), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wancho"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Wole", - Added = new DateOnly(2011, 1, 7), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Woleai"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Xpeo", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Old Persian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Xsux", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sumero-Akkadian cuneiform"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Yezi", - Added = new DateOnly(2019, 9, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yezidi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Yiii", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Zanb", - Added = new DateOnly(2017, 1, 13), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = - [ - @"Zanabazar Square", - @"Zanabazarin Dörböljin Useg", - @"Xewtee Dörböljin Bicig", - @"Horizontal Square Script", - ], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Zinh", - Added = new DateOnly(2009, 4, 3), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Code for inherited script"], - Comments = [@"Not intended for use as a language subtag"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Zmth", - Added = new DateOnly(2007, 12, 5), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mathematical notation"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Zsye", - Added = new DateOnly(2016, 1, 4), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Symbols (Emoji variant)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Zsym", - Added = new DateOnly(2007, 12, 5), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Symbols"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Zxxx", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Code for unwritten documents"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Zyyy", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Code for undetermined script"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Script, - SubTag = "Zzzz", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Code for uncoded script"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "AA", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Private use"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "AC", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ascension Island"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "AD", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Andorra"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "AE", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"United Arab Emirates"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "AF", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Afghanistan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "AG", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Antigua and Barbuda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "AI", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Anguilla"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "AL", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Albania"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "AM", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Armenia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "AN", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2011, 1, 7), - PreferredValue = null, - Tag = null, - Description = [@"Netherlands Antilles"], - Comments = [@"see BQ, CW, and SX"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "AO", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Angola"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "AQ", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Antarctica"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "AR", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Argentina"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "AS", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"American Samoa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "AT", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Austria"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "AU", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Australia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "AW", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aruba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "AX", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Åland Islands"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "AZ", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Azerbaijan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "BA", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bosnia and Herzegovina"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "BB", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Barbados"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "BD", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bangladesh"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "BE", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Belgium"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "BF", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Burkina Faso"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "BG", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bulgaria"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "BH", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bahrain"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "BI", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Burundi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "BJ", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Benin"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "BL", - Added = new DateOnly(2007, 11, 2), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Saint Barthélemy"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "BM", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bermuda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "BN", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Brunei Darussalam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "BO", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bolivia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "BQ", - Added = new DateOnly(2011, 1, 7), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bonaire, Sint Eustatius and Saba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "BR", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Brazil"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "BS", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bahamas"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "BT", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bhutan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "BU", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(1989, 12, 5), - PreferredValue = "MM", - Tag = null, - Description = [@"Burma"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "BV", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bouvet Island"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "BW", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Botswana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "BY", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Belarus"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "BZ", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Belize"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "CA", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Canada"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "CC", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cocos (Keeling) Islands"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "CD", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"The Democratic Republic of the Congo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "CF", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central African Republic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "CG", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Congo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "CH", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Switzerland"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "CI", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Côte d'Ivoire"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "CK", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cook Islands"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "CL", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chile"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "CM", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cameroon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "CN", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"China"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "CO", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Colombia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "CP", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Clipperton Island"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "CQ", - Added = new DateOnly(2023, 2, 7), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sark"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "CR", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Costa Rica"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "CS", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2006, 10, 5), - PreferredValue = null, - Tag = null, - Description = [@"Serbia and Montenegro"], - Comments = [@"see RS for Serbia or ME for Montenegro"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "CU", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cuba"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "CV", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cabo Verde", @"Cape Verde"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "CW", - Added = new DateOnly(2011, 1, 7), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Curaçao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "CX", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Christmas Island"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "CY", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cyprus"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "CZ", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Czechia", @"Czech Republic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "DD", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(1990, 10, 30), - PreferredValue = "DE", - Tag = null, - Description = [@"German Democratic Republic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "DE", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Germany"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "DG", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Diego Garcia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "DJ", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Djibouti"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "DK", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Denmark"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "DM", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dominica"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "DO", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Dominican Republic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "DZ", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Algeria"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "EA", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ceuta, Melilla"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "EC", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ecuador"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "EE", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Estonia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "EG", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Egypt"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "EH", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Sahara"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "ER", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eritrea"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "ES", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Spain"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "ET", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ethiopia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "EU", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"European Union"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "EZ", - Added = new DateOnly(2016, 7, 14), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eurozone"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "FI", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Finland"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "FJ", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Fiji"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "FK", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Falkland Islands (Malvinas)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "FM", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Federated States of Micronesia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "FO", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Faroe Islands"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "FR", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"France"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "FX", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(1997, 7, 14), - PreferredValue = "FR", - Tag = null, - Description = [@"Metropolitan France"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "GA", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gabon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "GB", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"United Kingdom"], - Comments = - [ - @"as of 2006-03-29 GB no longer includes the Channel Islands and Isle of Man; see GG, JE, IM", - ], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "GD", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Grenada"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "GE", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Georgia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "GF", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"French Guiana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "GG", - Added = new DateOnly(2006, 3, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guernsey"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "GH", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ghana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "GI", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gibraltar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "GL", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Greenland"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "GM", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gambia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "GN", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guinea"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "GP", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guadeloupe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "GQ", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Equatorial Guinea"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "GR", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Greece"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "GS", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"South Georgia and the South Sandwich Islands"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "GT", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guatemala"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "GU", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "GW", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guinea-Bissau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "GY", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Guyana"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "HK", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hong Kong"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "HM", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Heard Island and McDonald Islands"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "HN", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Honduras"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "HR", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Croatia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "HT", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Haiti"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "HU", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hungary"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "IC", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Canary Islands"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "ID", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Indonesia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "IE", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ireland"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "IL", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Israel"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "IM", - Added = new DateOnly(2006, 3, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Isle of Man"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "IN", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"India"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "IO", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"British Indian Ocean Territory"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "IQ", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Iraq"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "IR", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Islamic Republic of Iran"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "IS", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Iceland"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "IT", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Italy"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "JE", - Added = new DateOnly(2006, 3, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jersey"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "JM", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jamaica"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "JO", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jordan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "JP", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Japan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "KE", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kenya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "KG", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kyrgyzstan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "KH", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cambodia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "KI", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kiribati"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "KM", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Comoros"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "KN", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Saint Kitts and Nevis"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "KP", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Democratic People's Republic of Korea"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "KR", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Republic of Korea"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "KW", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kuwait"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "KY", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cayman Islands"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "KZ", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kazakhstan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "LA", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lao People's Democratic Republic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "LB", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lebanon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "LC", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Saint Lucia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "LI", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Liechtenstein"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "LK", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sri Lanka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "LR", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Liberia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "LS", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lesotho"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "LT", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lithuania"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "LU", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Luxembourg"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "LV", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Latvia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "LY", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Libya"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "MA", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Morocco"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "MC", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Monaco"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "MD", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Moldova"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "ME", - Added = new DateOnly(2006, 10, 5), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Montenegro"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "MF", - Added = new DateOnly(2007, 11, 2), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Saint Martin (French part)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "MG", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Madagascar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "MH", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Marshall Islands"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "MK", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"North Macedonia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "ML", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mali"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "MM", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Myanmar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "MN", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mongolia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "MO", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Macao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "MP", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Mariana Islands"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "MQ", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Martinique"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "MR", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mauritania"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "MS", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Montserrat"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "MT", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Malta"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "MU", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mauritius"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "MV", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Maldives"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "MW", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Malawi"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "MX", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mexico"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "MY", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Malaysia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "MZ", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mozambique"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "NA", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Namibia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "NC", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"New Caledonia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "NE", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Niger"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "NF", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Norfolk Island"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "NG", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nigeria"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "NI", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nicaragua"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "NL", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Netherlands"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "NO", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Norway"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "NP", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nepal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "NR", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Nauru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "NT", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(1993, 7, 12), - PreferredValue = null, - Tag = null, - Description = [@"Neutral Zone"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "NU", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Niue"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "NZ", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"New Zealand"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "OM", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Oman"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "PA", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Panama"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "PE", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Peru"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "PF", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"French Polynesia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "PG", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Papua New Guinea"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "PH", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Philippines"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "PK", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pakistan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "PL", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Poland"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "PM", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Saint Pierre and Miquelon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "PN", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pitcairn"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "PR", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Puerto Rico"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "PS", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"State of Palestine"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "PT", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Portugal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "PW", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Palau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "PY", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Paraguay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "QA", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Qatar"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "QM..QZ", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Private use"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "RE", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Réunion"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "RO", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Romania"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "RS", - Added = new DateOnly(2006, 10, 5), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Serbia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "RU", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Russian Federation"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "RW", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rwanda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "SA", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Saudi Arabia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "SB", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Solomon Islands"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "SC", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Seychelles"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "SD", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sudan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "SE", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sweden"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "SG", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Singapore"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "SH", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Saint Helena, Ascension and Tristan da Cunha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "SI", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Slovenia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "SJ", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Svalbard and Jan Mayen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "SK", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Slovakia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "SL", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sierra Leone"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "SM", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"San Marino"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "SN", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Senegal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "SO", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Somalia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "SR", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Suriname"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "SS", - Added = new DateOnly(2011, 8, 25), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"South Sudan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "ST", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sao Tome and Principe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "SU", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(1992, 8, 30), - PreferredValue = null, - Tag = null, - Description = [@"Union of Soviet Socialist Republics"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "SV", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"El Salvador"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "SX", - Added = new DateOnly(2011, 1, 7), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sint Maarten (Dutch part)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "SY", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Syrian Arab Republic"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "SZ", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eswatini", @"eSwatini", @"Swaziland"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "TA", - Added = new DateOnly(2009, 7, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tristan da Cunha"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "TC", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Turks and Caicos Islands"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "TD", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Chad"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "TF", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"French Southern Territories"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "TG", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Togo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "TH", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Thailand"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "TJ", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tajikistan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "TK", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tokelau"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "TL", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Timor-Leste"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "TM", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Turkmenistan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "TN", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tunisia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "TO", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tonga"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "TP", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2002, 5, 20), - PreferredValue = "TL", - Tag = null, - Description = [@"East Timor"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "TR", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Türkiye", @"Turkey"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "TT", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Trinidad and Tobago"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "TV", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tuvalu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "TW", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Taiwan, Province of China"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "TZ", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"United Republic of Tanzania"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "UA", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ukraine"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "UG", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Uganda"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "UM", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"United States Minor Outlying Islands"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "UN", - Added = new DateOnly(2016, 7, 14), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"United Nations"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "US", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"United States"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "UY", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Uruguay"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "UZ", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Uzbekistan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "VA", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Holy See (Vatican City State)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "VC", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Saint Vincent and the Grenadines"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "VE", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Venezuela"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "VG", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"British Virgin Islands"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "VI", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"U.S. Virgin Islands"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "VN", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Viet Nam"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "VU", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vanuatu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "WF", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wallis and Futuna"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "WS", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Samoa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "XA..XZ", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Private use"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "YD", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(1990, 8, 14), - PreferredValue = "YE", - Tag = null, - Description = [@"Democratic Yemen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "YE", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Yemen"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "YT", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mayotte"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "YU", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2003, 7, 23), - PreferredValue = null, - Tag = null, - Description = [@"Yugoslavia"], - Comments = [@"see BA, HR, ME, MK, RS, or SI"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "ZA", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"South Africa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "ZM", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zambia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "ZR", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(1997, 7, 14), - PreferredValue = "CD", - Tag = null, - Description = [@"Zaire"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "ZW", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Zimbabwe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "ZZ", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Private use"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "001", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"World"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "002", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Africa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "003", - Added = new DateOnly(2010, 8, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"North America"], - Comments = - [ - @"Includes Northern America (021), Caribbean (029), and Central America (013); see also 021", - ], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "005", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"South America"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "009", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Oceania"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "011", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Africa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "013", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central America"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "014", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Africa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "015", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Africa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "017", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Middle Africa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "018", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Africa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "019", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Americas"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "021", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern America"], - Comments = - [ - @"Does not include Caribbean (029) or Central America (013); see also 003", - ], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "029", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Caribbean"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "030", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Asia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "034", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Asia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "035", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"South-Eastern Asia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "039", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Southern Europe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "053", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Australia and New Zealand"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "054", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Melanesia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "057", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Micronesia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "061", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Polynesia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "142", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Asia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "143", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Central Asia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "145", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Asia"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "150", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Europe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "151", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Eastern Europe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "154", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Northern Europe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "155", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Western Europe"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "202", - Added = new DateOnly(2017, 4, 18), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sub-Saharan Africa"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Region, - SubTag = "419", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Latin America and the Caribbean"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "1606nict", - Added = new DateOnly(2007, 3, 20), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Late Middle French (to 1606)"], - Comments = - [ - @"16th century French as in Jean Nicot, ""Thresor de la langue francoyse"", 1606, but also including some French similar to that of Rabelais", - ], - Prefix = [@"frm"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "1694acad", - Added = new DateOnly(2007, 3, 20), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Early Modern French"], - Comments = - [ - @"17th century French, as catalogued in the ""Dictionnaire de l'académie françoise"", 4eme ed. 1694; frequently includes elements of Middle French, as this is a transitional period", - ], - Prefix = [@"fr"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "1901", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Traditional German orthography"], - Comments = [], - Prefix = [@"de"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "1959acad", - Added = new DateOnly(2008, 9, 30), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = - [ - @"""Academic"" (""governmental"") variant of Belarusian as codified in 1959", - ], - Comments = [], - Prefix = [@"be"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "1994", - Added = new DateOnly(2007, 7, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Standardized Resian orthography"], - Comments = [@"For standardized Resian an orthography was published in 1994."], - Prefix = - [ - @"sl-rozaj", - @"sl-rozaj-biske", - @"sl-rozaj-njiva", - @"sl-rozaj-osojs", - @"sl-rozaj-solba", - ], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "1996", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"German orthography of 1996"], - Comments = [], - Prefix = [@"de"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "abl1943", - Added = new DateOnly(2015, 5, 6), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = - [ - @"Orthographic formulation of 1943 - Official in Brazil (Formulário Ortográfico de 1943 - Oficial no Brasil)", - ], - Comments = - [ - @"Denotes conventions established by the Academia Brasileira de Letras in 1943 and generally used in Brazil until 2009", - ], - Prefix = [@"pt-BR"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "akhmimic", - Added = new DateOnly(2025, 7, 14), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Akhmimic dialect of Coptic"], - Comments = [], - Prefix = [@"cop"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "akuapem", - Added = new DateOnly(2017, 6, 5), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Akuapem Twi"], - Comments = [], - Prefix = [@"tw"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "alalc97", - Added = new DateOnly(2009, 12, 9), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"ALA-LC Romanization, 1997 edition"], - Comments = - [ - @"Romanizations recommended by the American Library Association and the Library of Congress, in ""ALA-LC Romanization Tables: Transliteration Schemes for Non-Roman Scripts"" (1997), ISBN 978-0-8444-0940-5.", - ], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "aluku", - Added = new DateOnly(2009, 9, 5), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aluku dialect", @"Boni dialect"], - Comments = - [ - @"Aluku dialect of the ""Busi Nenge Tongo"" English-based Creole continuum in Eastern Suriname and Western French Guiana", - ], - Prefix = [@"djk"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "anpezo", - Added = new DateOnly(2024, 3, 4), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Anpezo standard of Ladin"], - Comments = [@"Represents the standard written form of Ladin in Anpezo"], - Prefix = [@"lld"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "ao1990", - Added = new DateOnly(2015, 5, 6), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = - [ - @"Portuguese Language Orthographic Agreement of 1990 (Acordo Ortográfico da Língua Portuguesa de 1990)", - ], - Comments = - [ - @"Portuguese orthography conventions established in 1990 but not brought into effect until 2009", - ], - Prefix = [@"pt", @"gl"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "aranes", - Added = new DateOnly(2018, 4, 22), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Aranese"], - Comments = [@"Occitan variant spoken in the Val d'Aran"], - Prefix = [@"oc"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "arevela", - Added = new DateOnly(2006, 9, 18), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2018, 3, 24), - PreferredValue = null, - Tag = null, - Description = [@"Eastern Armenian"], - Comments = [@"Preferred tag is hy"], - Prefix = [@"hy"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "arevmda", - Added = new DateOnly(2006, 9, 18), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2018, 3, 24), - PreferredValue = null, - Tag = null, - Description = [@"Western Armenian"], - Comments = [@"Preferred tag is hyw"], - Prefix = [@"hy"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "arkaika", - Added = new DateOnly(2020, 12, 17), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Arcaicam Esperantom", @"Arkaika Esperanto"], - Comments = [@"Archaic Esperanto variant devised by Manuel Halvelik"], - Prefix = [@"eo"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "asante", - Added = new DateOnly(2017, 6, 5), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Asante Twi", @"Ashanti Twi"], - Comments = [], - Prefix = [@"tw"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "auvern", - Added = new DateOnly(2018, 4, 22), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Auvergnat"], - Comments = [@"Occitan variant spoken in Auvergne"], - Prefix = [@"oc"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "baku1926", - Added = new DateOnly(2007, 4, 18), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Unified Turkic Latin Alphabet (Historical)"], - Comments = - [ - @"Denotes alphabet used in Turkic republics/regions of the former USSR in late 1920s, and throughout 1930s, which aspired to represent equivalent phonemes in a unified fashion. Also known as: New Turkic Alphabet; Birlәşdirilmiş Jeni Tyrk Әlifbasь (Birlesdirilmis Jeni Tyrk Elifbasi); Jaŋalif (Janalif).", - ], - Prefix = - [ - @"az", - @"ba", - @"crh", - @"kk", - @"krc", - @"ky", - @"sah", - @"tk", - @"tt", - @"uz", - ], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "balanka", - Added = new DateOnly(2014, 2, 15), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"The Balanka dialect of Anii"], - Comments = [@"Balanka is one of 19 Anii dialects."], - Prefix = [@"blo"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "barla", - Added = new DateOnly(2013, 12, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"The Barlavento dialect group of Kabuverdianu"], - Comments = - [ - @"Barlavento is one of the two main dialect groups of Kabuverdianu.", - ], - Prefix = [@"kea"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "basiceng", - Added = new DateOnly(2015, 12, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Basic English"], - Comments = [], - Prefix = [@"en"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "bauddha", - Added = new DateOnly(2010, 7, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Buddhist Hybrid Sanskrit"], - Comments = [], - Prefix = [@"sa"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "bciav", - Added = new DateOnly(2023, 5, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"BCI Blissymbolics AV"], - Comments = - [ - @"Name given to a subset of the variety of Blissymbolics curated by Blissymbolics Communication International, as represented by entries in the BCI Authorized Vocabulary", - ], - Prefix = [@"zbl"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "bcizbl", - Added = new DateOnly(2023, 5, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"BCI Blissymbolics"], - Comments = - [ - @"Name given to the variety of Blissymbolics curated by Blissymbolics Communication International", - ], - Prefix = [@"zbl"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "biscayan", - Added = new DateOnly(2010, 4, 13), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Biscayan dialect of Basque"], - Comments = [], - Prefix = [@"eu"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "biske", - Added = new DateOnly(2007, 7, 5), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = - [ - @"The San Giorgio dialect of Resian", - @"The Bila dialect of Resian", - ], - Comments = - [ - @"The dialect of San Giorgio/Bila is one of the four major local dialects of Resian", - ], - Prefix = [@"sl-rozaj"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "blasl", - Added = new DateOnly(2023, 7, 31), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Black American Sign Language dialect"], - Comments = - [ - @"Black American Sign Language (BASL) or Black Sign Variation (BSV) is a dialect of American Sign Language (ASL)", - ], - Prefix = [@"ase", @"sgn-ase"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "bohairic", - Added = new DateOnly(2025, 7, 14), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bohairic dialect of Coptic"], - Comments = [], - Prefix = [@"cop"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "bohoric", - Added = new DateOnly(2012, 6, 27), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Slovene in Bohorič alphabet"], - Comments = - [ - @"The subtag represents the alphabet codified by Adam Bohorič in 1584 and used from the first printed Slovene book and up to the mid-19th century.", - ], - Prefix = [@"sl"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "boont", - Added = new DateOnly(2006, 9, 18), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Boontling"], - Comments = [@"Jargon embedded in American English"], - Prefix = [@"en"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "bornholm", - Added = new DateOnly(2019, 3, 27), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bornholmsk"], - Comments = [], - Prefix = [@"da"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "cisaup", - Added = new DateOnly(2018, 4, 22), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cisalpine"], - Comments = [@"Occitan variant spoken in northwestern Italy"], - Prefix = [@"oc"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "colb1945", - Added = new DateOnly(2015, 5, 6), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = - [ - @"Portuguese-Brazilian Orthographic Convention of 1945 (Convenção Ortográfica Luso-Brasileira de 1945)", - ], - Comments = - [ - @"Portuguese orthography conventions established in 1945, generally in effect until 2009. This reform was not ratified in Brazil.", - ], - Prefix = [@"pt"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "cornu", - Added = new DateOnly(2015, 12, 7), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Cornu-English", @"Cornish English", @"Anglo-Cornish"], - Comments = [], - Prefix = [@"en"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "creiss", - Added = new DateOnly(2018, 4, 22), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Occitan variants of the Croissant area"], - Comments = [], - Prefix = [@"oc"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "dajnko", - Added = new DateOnly(2012, 6, 27), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Slovene in Dajnko alphabet"], - Comments = - [ - @"The subtag represents the alphabet codified by Peter Dajnko and used from 1824 to 1839 mostly in Styria (in what is now Eastern Slovenia).", - ], - Prefix = [@"sl"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "ekavsk", - Added = new DateOnly(2013, 12, 2), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Serbian with Ekavian pronunciation"], - Comments = [], - Prefix = [@"sr", @"sr-Latn", @"sr-Cyrl"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "emodeng", - Added = new DateOnly(2012, 2, 5), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Early Modern English (1500-1700)"], - Comments = [], - Prefix = [@"en"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "fascia", - Added = new DateOnly(2024, 3, 4), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Fascia standard of Ladin"], - Comments = - [ - @"Represents the standard written form of Ladin in Fascia which unified the three subvarieties Cazet, Brach and Moenat", - ], - Prefix = [@"lld"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "fayyumic", - Added = new DateOnly(2025, 7, 14), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Fayyumic dialect of Coptic"], - Comments = [], - Prefix = [@"cop"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "fodom", - Added = new DateOnly(2024, 3, 4), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Fodom standard of Ladin"], - Comments = - [ - @"Represents the standard written form of Ladin in Livinallongo and Colle Santa Lucia", - ], - Prefix = [@"lld"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "fonipa", - Added = new DateOnly(2006, 12, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"International Phonetic Alphabet"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "fonkirsh", - Added = new DateOnly(2018, 4, 22), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kirshenbaum Phonetic Alphabet"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "fonnapa", - Added = new DateOnly(2016, 6, 24), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = - [ - @"North American Phonetic Alphabet", - @"Americanist Phonetic Notation", - ], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "fonupa", - Added = new DateOnly(2006, 12, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Uralic Phonetic Alphabet"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "fonxsamp", - Added = new DateOnly(2010, 10, 23), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"X-SAMPA transcription"], - Comments = [@"Indicates that the content is transcribed according to X-SAMPA"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "gallo", - Added = new DateOnly(2021, 8, 5), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gallo"], - Comments = [], - Prefix = [@"fr"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "gascon", - Added = new DateOnly(2018, 4, 22), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gascon"], - Comments = [@"Occitan variant spoken in Gascony"], - Prefix = [@"oc"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "gherd", - Added = new DateOnly(2024, 3, 4), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Gherdëina standard of Ladin"], - Comments = [@"Represents the standard written form of Ladin in Gherdëina"], - Prefix = [@"lld"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "grclass", - Added = new DateOnly(2018, 4, 22), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Classical Occitan orthography"], - Comments = - [ - @"Classical written standard for Occitan developed in 1935 by Alibèrt", - ], - Prefix = - [ - @"oc", - @"oc-aranes", - @"oc-auvern", - @"oc-cisaup", - @"oc-creiss", - @"oc-gascon", - @"oc-lemosin", - @"oc-lengadoc", - @"oc-nicard", - @"oc-provenc", - @"oc-vivaraup", - ], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "grital", - Added = new DateOnly(2018, 4, 22), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Italian-inspired Occitan orthography"], - Comments = [], - Prefix = [@"oc", @"oc-cisaup", @"oc-nicard", @"oc-provenc"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "grmistr", - Added = new DateOnly(2018, 4, 22), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mistralian or Mistralian-inspired Occitan orthography"], - Comments = - [ - @"Written standard developed by Romanilha in 1853 and used by Mistral and the Félibres, including derived standards such as Escolo dóu Po, Escolo Gaston Febus, and others", - ], - Prefix = - [ - @"oc", - @"oc-aranes", - @"oc-auvern", - @"oc-cisaup", - @"oc-creiss", - @"oc-gascon", - @"oc-lemosin", - @"oc-lengadoc", - @"oc-nicard", - @"oc-provenc", - @"oc-vivaraup", - ], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "hanoi", - Added = new DateOnly(2025, 3, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"The Hà Nội variant of Vietnamese"], - Comments = [], - Prefix = [@"vi"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "hepburn", - Added = new DateOnly(2009, 10, 1), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Hepburn romanization"], - Comments = [], - Prefix = [@"ja-Latn"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "heploc", - Added = new DateOnly(2009, 10, 1), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2010, 2, 7), - PreferredValue = "alalc97", - Tag = null, - Description = [@"Hepburn romanization, Library of Congress method"], - Comments = [@"Preferred tag is ja-Latn-alalc97"], - Prefix = [@"ja-Latn-hepburn"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "hognorsk", - Added = new DateOnly(2010, 1, 2), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Norwegian in Høgnorsk (High Norwegian) orthography"], - Comments = - [ - @"Norwegian following Ivar Aasen's orthographical principles, including modern usage.", - ], - Prefix = [@"nn"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "hsistemo", - Added = new DateOnly(2017, 3, 14), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = - [ - @"Standard H-system orthographic fallback for spelling Esperanto", - ], - Comments = [], - Prefix = [@"eo"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "huett", - Added = new DateOnly(2025, 3, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"The Huế (province Thừa Thiên) variant of Vietnamese"], - Comments = [], - Prefix = [@"vi"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "ijekavsk", - Added = new DateOnly(2013, 12, 2), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Serbian with Ijekavian pronunciation"], - Comments = [], - Prefix = [@"sr", @"sr-Latn", @"sr-Cyrl"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "itihasa", - Added = new DateOnly(2010, 7, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Epic Sanskrit"], - Comments = [], - Prefix = [@"sa"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "ivanchov", - Added = new DateOnly(2017, 12, 13), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Bulgarian in 1899 orthography"], - Comments = [@"Bulgarian orthography introduced by Todor Ivanchov in 1899"], - Prefix = [@"bg"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "jauer", - Added = new DateOnly(2010, 6, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jauer dialect of Romansh"], - Comments = - [ - @"The spoken dialect of the Val Müstair, which has no written standard.", - ], - Prefix = [@"rm"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "jyutping", - Added = new DateOnly(2010, 10, 23), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Jyutping Cantonese Romanization"], - Comments = [@"Jyutping romanization of Cantonese"], - Prefix = [@"yue"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "kkcor", - Added = new DateOnly(2008, 10, 14), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Common Cornish orthography of Revived Cornish"], - Comments = [], - Prefix = [@"kw"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "kleinsch", - Added = new DateOnly(2024, 7, 20), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Kleinschmidt orthography", @"Allattaasitaamut"], - Comments = - [ - @"Orthography for Greenlandic designed by Samuel Kleinschmidt, used from 1851 to 1973.", - ], - Prefix = [@"kl", @"kl-tunumiit"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "kociewie", - Added = new DateOnly(2014, 11, 27), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"The Kociewie dialect of Polish"], - Comments = - [ - @"The dialect of Kociewie is spoken in the region around Starogard Gdański, Tczew and Świecie in northern Poland.", - ], - Prefix = [@"pl"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "kscor", - Added = new DateOnly(2012, 6, 27), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = - [ - @"Standard Cornish orthography of Revived Cornish", - @"Kernowek Standard", - ], - Comments = [], - Prefix = [@"kw"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "laukika", - Added = new DateOnly(2010, 7, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2024, 6, 8), - PreferredValue = null, - Tag = null, - Description = [@"Classical Sanskrit"], - Comments = [@"Preferred tag is cls"], - Prefix = [@"sa"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "leidentr", - Added = new DateOnly(2025, 2, 6), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ancient Egyptian in Leiden Unified Transliteration"], - Comments = [@"Recommended by the International Association of Egyptologists"], - Prefix = [@"egy"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "lemosin", - Added = new DateOnly(2018, 4, 22), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Limousin"], - Comments = [@"Occitan variant spoken in Limousin"], - Prefix = [@"oc"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "lengadoc", - Added = new DateOnly(2018, 4, 22), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Languedocien"], - Comments = [@"Occitan variant spoken in Languedoc"], - Prefix = [@"oc"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "lipaw", - Added = new DateOnly(2007, 8, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = - [ - @"The Lipovaz dialect of Resian", - @"The Lipovec dialect of Resian", - ], - Comments = - [ - @"The dialect of Lipovaz/Lipovec is one of the minor local dialects of Resian", - ], - Prefix = [@"sl-rozaj"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "ltg1929", - Added = new DateOnly(2022, 8, 5), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"The Latgalian language orthography codified in 1929"], - Comments = [], - Prefix = [@"ltg"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "ltg2007", - Added = new DateOnly(2022, 6, 23), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = - [ - @"The Latgalian language orthography codified in the language law in 2007", - ], - Comments = [], - Prefix = [@"ltg"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "luna1918", - Added = new DateOnly(2010, 10, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Post-1917 Russian orthography"], - Comments = - [ - @"Russian orthography as established by the 1917/1918 orthographic reforms", - ], - Prefix = [@"ru"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "lycopol", - Added = new DateOnly(2025, 7, 14), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Lycopolitan alias Subakhmimic dialect of Coptic"], - Comments = [], - Prefix = [@"cop"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "mdcegyp", - Added = new DateOnly(2025, 2, 6), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ancient Egyptian hieroglyphs encoded in Manuel de Codage"], - Comments = [], - Prefix = [@"egy"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "mdctrans", - Added = new DateOnly(2025, 2, 6), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ancient Egyptian transliteration encoded in Manuel de Codage"], - Comments = [], - Prefix = [@"egy"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "mesokem", - Added = new DateOnly(2025, 7, 14), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Mesokemic alias Oxyrhynchite dialect of Coptic"], - Comments = [], - Prefix = [@"cop"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "metelko", - Added = new DateOnly(2012, 6, 27), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Slovene in Metelko alphabet"], - Comments = - [ - @"The subtag represents the alphabet codified by Franc Serafin Metelko and used from 1825 to 1833.", - ], - Prefix = [@"sl"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "moderat", - Added = new DateOnly(2026, 4, 21), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = - [ - @"The moderate (conservative, i.e. Danish-like) spelling variant of Bokmål", - ], - Comments = [], - Prefix = [@"nb"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "monoton", - Added = new DateOnly(2006, 12, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Monotonic Greek"], - Comments = [], - Prefix = [@"el"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "ndyuka", - Added = new DateOnly(2009, 9, 5), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ndyuka dialect", @"Aukan dialect"], - Comments = - [ - @"Ndyuka dialect of the ""Busi Nenge Tongo"" English-based Creole continuum in Eastern Suriname and Western French Guiana", - ], - Prefix = [@"djk"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "nedis", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Natisone dialect", @"Nadiza dialect"], - Comments = [], - Prefix = [@"sl"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "newfound", - Added = new DateOnly(2015, 11, 25), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Newfoundland English"], - Comments = [], - Prefix = [@"en-CA"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "nicard", - Added = new DateOnly(2018, 4, 22), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Niçard"], - Comments = [@"Occitan variant spoken in Nice"], - Prefix = [@"oc"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "njiva", - Added = new DateOnly(2007, 7, 5), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"The Gniva dialect of Resian", @"The Njiva dialect of Resian"], - Comments = - [ - @"The dialect of Gniva/Njiva is one of the four major local dialects of Resian", - ], - Prefix = [@"sl-rozaj"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "nulik", - Added = new DateOnly(2012, 1, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = - [ - @"Volapük nulik", - @"Volapük perevidöl", - @"Volapük nulädik", - @"de Jong's Volapük", - @"New Volapük", - @"Revised Volapük", - @"Modern Volapük", - ], - Comments = [], - Prefix = [@"vo"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "osojs", - Added = new DateOnly(2007, 7, 5), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = - [ - @"The Oseacco dialect of Resian", - @"The Osojane dialect of Resian", - ], - Comments = - [ - @"The dialect of Oseacco/Osojane is one of the four major local dialects of Resian", - ], - Prefix = [@"sl-rozaj"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "oxendict", - Added = new DateOnly(2015, 4, 17), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Oxford English Dictionary spelling"], - Comments = [], - Prefix = [@"en"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "pahawh2", - Added = new DateOnly(2017, 1, 13), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pahawh Hmong Second Stage Reduced orthography"], - Comments = [], - Prefix = [@"mww", @"hnj"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "pahawh3", - Added = new DateOnly(2017, 1, 13), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pahawh Hmong Third Stage Reduced orthography"], - Comments = [], - Prefix = [@"mww", @"hnj"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "pahawh4", - Added = new DateOnly(2017, 1, 13), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pahawh Hmong Final Version orthography"], - Comments = [], - Prefix = [@"mww", @"hnj"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "pamaka", - Added = new DateOnly(2009, 9, 5), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pamaka dialect"], - Comments = - [ - @"Pamaka dialect of the ""Busi Nenge Tongo"" English-based Creole continuum in Eastern Suriname and Western French Guiana", - ], - Prefix = [@"djk"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "peano", - Added = new DateOnly(2020, 3, 12), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = - [ - @"Latino Sine Flexione", - @"Interlingua de API", - @"Interlingua de Peano", - ], - Comments = - [ - @"Peano’s Interlingua, created in 1903 by Giuseppe Peano as an international auxiliary language", - ], - Prefix = [@"la"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "pehoeji", - Added = new DateOnly(2024, 3, 4), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = - [ - @"Hokkien Vernacular Romanization System", - @"Pe̍h-ōe-jī orthography/romanization", - ], - Comments = - [ - @"Modern Hokkien Vernacular Romanization System, evolved from the New Dictionary in the Amoy by John Van Nest Talmage in 1894", - ], - Prefix = [@"nan-Latn"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "petr1708", - Added = new DateOnly(2010, 10, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Petrine orthography"], - Comments = - [ - @"Russian orthography from the Petrine orthographic reforms of 1708 to the 1917 orthographic reform", - ], - Prefix = [@"ru"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "pinyin", - Added = new DateOnly(2008, 10, 14), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Pinyin romanization"], - Comments = [], - Prefix = [@"zh-Latn", @"bo-Latn"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "polyton", - Added = new DateOnly(2006, 12, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Polytonic Greek"], - Comments = [], - Prefix = [@"el"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "provenc", - Added = new DateOnly(2018, 4, 22), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Provençal"], - Comments = [@"Occitan variant spoken in Provence"], - Prefix = [@"oc"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "puter", - Added = new DateOnly(2010, 6, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Puter idiom of Romansh"], - Comments = - [ - @"Puter is one of the five traditional written standards or ""idioms"" of the Romansh language.", - ], - Prefix = [@"rm"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "radikalt", - Added = new DateOnly(2026, 4, 21), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Radical (i.e. Nynorsk-like) spelling variant of Bokmål"], - Comments = [], - Prefix = [@"nb"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "rigik", - Added = new DateOnly(2012, 1, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = - [ - @"Volapük rigik", - @"Schleyer's Volapük", - @"Original Volapük", - @"Classic Volapük", - ], - Comments = [], - Prefix = [@"vo"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "rozaj", - Added = new DateOnly(2005, 10, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Resian", @"Resianic", @"Rezijan"], - Comments = [], - Prefix = [@"sl"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "rumgr", - Added = new DateOnly(2010, 6, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Rumantsch Grischun"], - Comments = [@"Supraregional Romansh written standard"], - Prefix = [@"rm"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "sahidic", - Added = new DateOnly(2025, 7, 14), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sahidic dialect of Coptic"], - Comments = [], - Prefix = [@"cop"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "saigon", - Added = new DateOnly(2025, 3, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"The Sài Gòn variant of Vietnamese"], - Comments = [], - Prefix = [@"vi"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "scotland", - Added = new DateOnly(2007, 8, 31), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Scottish Standard English"], - Comments = [], - Prefix = [@"en"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "scouse", - Added = new DateOnly(2006, 9, 18), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Scouse"], - Comments = [@"English Liverpudlian dialect known as 'Scouse'"], - Prefix = [@"en"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "simple", - Added = new DateOnly(2015, 12, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Simplified form"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "slepe", - Added = new DateOnly(2026, 4, 9), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sorbian dialect of Schleife"], - Comments = [@"Spoken in the Free State of Saxony in Germany"], - Prefix = [@"dsb"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "solba", - Added = new DateOnly(2007, 7, 5), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = - [ - @"The Stolvizza dialect of Resian", - @"The Solbica dialect of Resian", - ], - Comments = - [ - @"The dialect of Stolvizza/Solbica is one of the four major local dialects of Resian", - ], - Prefix = [@"sl-rozaj"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "sotav", - Added = new DateOnly(2013, 12, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"The Sotavento dialect group of Kabuverdianu"], - Comments = - [ - @"Sotavento is one of the two main dialect groups of Kabuverdianu.", - ], - Prefix = [@"kea"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "spanglis", - Added = new DateOnly(2017, 2, 23), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Spanglish"], - Comments = [@"A variety of contact dialects of English and Spanish"], - Prefix = [@"en", @"es"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "stadi", - Added = new DateOnly(2026, 4, 9), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"The ""Stadin slangi"" dialect of Finnish"], - Comments = [@"""Stadi"" means the city of Helsinki in the dialect."], - Prefix = [@"fi"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "surmiran", - Added = new DateOnly(2010, 6, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Surmiran idiom of Romansh"], - Comments = - [ - @"Surmiran is one of the five traditional written standards or ""idioms"" of the Romansh language.", - ], - Prefix = [@"rm"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "sursilv", - Added = new DateOnly(2010, 6, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sursilvan idiom of Romansh"], - Comments = - [ - @"Sursilvan is one of the five traditional written standards or ""idioms"" of the Romansh language.", - ], - Prefix = [@"rm"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "sutsilv", - Added = new DateOnly(2010, 6, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Sutsilvan idiom of Romansh"], - Comments = - [ - @"Sutsilvan is one of the five traditional written standards or ""idioms"" of the Romansh language.", - ], - Prefix = [@"rm"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "synnejyl", - Added = new DateOnly(2021, 7, 17), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Synnejysk", @"South Jutish"], - Comments = [], - Prefix = [@"da"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "taglish", - Added = new DateOnly(2026, 4, 9), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tagalog-English code-switching"], - Comments = - [ - @"This subtag represents Taglish, wherever it is different from straight Tagalog or straight English.", - ], - Prefix = [@"en", @"tl", @"fil"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "tailo", - Added = new DateOnly(2024, 3, 4), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = - [ - @"Taiwanese Hokkien Romanization System for Hokkien languages", - @"Tâi-lô orthography/romanization", - ], - Comments = - [ - @"Taiwanese Hokkien Romanization System (Tâi-lô) published in 2006 by the Taiwan Ministry of Education", - ], - Prefix = [@"nan-Latn"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "tarask", - Added = new DateOnly(2007, 4, 27), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Belarusian in Taraskievica orthography"], - Comments = - [ - @"The subtag represents Branislau Taraskievic's Belarusian orthography as published in ""Bielaruski klasycny pravapis"" by Juras Buslakou, Vincuk Viacorka, Zmicier Sanko, and Zmicier Sauka (Vilnia- Miensk 2005).", - ], - Prefix = [@"be"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "tongyong", - Added = new DateOnly(2020, 6, 8), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tongyong Pinyin romanization"], - Comments = - [ - @"Former official transcription standard for Mandarin Chinese in Taiwan.", - ], - Prefix = [@"zh-Latn"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "tunumiit", - Added = new DateOnly(2020, 7, 16), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Tunumiisiut", @"East Greenlandic", @"Østgrønlandsk"], - Comments = [@"Also known as Tunumiit oraasiat"], - Prefix = [@"kl"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "uccor", - Added = new DateOnly(2008, 10, 14), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Unified Cornish orthography of Revived Cornish"], - Comments = [], - Prefix = [@"kw"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "ucrcor", - Added = new DateOnly(2008, 10, 14), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Unified Cornish Revised orthography of Revived Cornish"], - Comments = [], - Prefix = [@"kw"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "ulster", - Added = new DateOnly(2010, 4, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Ulster dialect of Scots"], - Comments = [], - Prefix = [@"sco"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "unifon", - Added = new DateOnly(2013, 10, 2), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Unifon phonetic alphabet"], - Comments = [], - Prefix = [@"en", @"hup", @"kyh", @"tol", @"yur"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "vaidika", - Added = new DateOnly(2010, 7, 28), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2024, 6, 8), - PreferredValue = null, - Tag = null, - Description = [@"Vedic Sanskrit"], - Comments = - [ - @"The most ancient dialect of Sanskrit used in verse and prose composed until about the 4th century B.C.E.", - @"Preferred tag is vsn", - ], - Prefix = [@"sa"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "valbadia", - Added = new DateOnly(2024, 3, 4), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Val Badia standard of Ladin"], - Comments = - [ - @"Represents the standard written form of Ladin in the Val Badia, unifying the three variants Marô, Mesaval and Badiot spoken in this valley", - ], - Prefix = [@"lld"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "valencia", - Added = new DateOnly(2007, 3, 6), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Valencian"], - Comments = - [ - @"Variety spoken in the ""Comunidad Valenciana"" region of Spain, where it is co-official with Spanish.", - ], - Prefix = [@"ca"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "vallader", - Added = new DateOnly(2010, 6, 29), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vallader idiom of Romansh"], - Comments = - [ - @"Vallader is one of the five traditional written standards or ""idioms"" of the Romansh language.", - ], - Prefix = [@"rm"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "vecdruka", - Added = new DateOnly(2020, 9, 26), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Latvian orthography used before 1920s (""vecā druka"")"], - Comments = - [ - @"The subtag represents the old orthography of the Latvian language used during c. 1600s–1920s.", - ], - Prefix = [@"lv"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "viennese", - Added = new DateOnly(2025, 6, 22), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"The Viennese dialect of German"], - Comments = [], - Prefix = [@"de"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "vivaraup", - Added = new DateOnly(2018, 4, 22), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Vivaro-Alpine"], - Comments = [@"Occitan variant spoken in northeastern Occitania"], - Prefix = [@"oc"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "wadegile", - Added = new DateOnly(2008, 10, 3), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = [@"Wade-Giles romanization"], - Comments = [], - Prefix = [@"zh-Latn"], - }, - new() - { - Type = Rfc5646Record.RecordType.Variant, - SubTag = "xsistemo", - Added = new DateOnly(2017, 3, 14), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = null, - Description = - [ - @"Standard X-system orthographic fallback for spelling Esperanto", - ], - Comments = [], - Prefix = [@"eo"], - }, - new() - { - Type = Rfc5646Record.RecordType.Grandfathered, - SubTag = null, - Added = new DateOnly(2001, 11, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2003, 9, 2), - PreferredValue = "jbo", - Tag = "art-lojban", - Description = [@"Lojban"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Grandfathered, - SubTag = null, - Added = new DateOnly(2001, 5, 25), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2015, 3, 29), - PreferredValue = null, - Tag = "cel-gaulish", - Description = [@"Gaulish"], - Comments = [@"see xcg, xga, xtg"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Grandfathered, - SubTag = null, - Added = new DateOnly(2003, 7, 9), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2015, 4, 17), - PreferredValue = "en-GB-oxendict", - Tag = "en-GB-oed", - Description = [@"English, Oxford English Dictionary spelling"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Grandfathered, - SubTag = null, - Added = new DateOnly(1999, 5, 25), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2009, 7, 29), - PreferredValue = "ami", - Tag = "i-ami", - Description = [@"Amis"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Grandfathered, - SubTag = null, - Added = new DateOnly(1999, 5, 25), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2009, 7, 29), - PreferredValue = "bnn", - Tag = "i-bnn", - Description = [@"Bunun"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Grandfathered, - SubTag = null, - Added = new DateOnly(1998, 3, 10), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = "i-default", - Description = [@"Default Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Grandfathered, - SubTag = null, - Added = new DateOnly(2002, 7, 3), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2015, 3, 29), - PreferredValue = null, - Tag = "i-enochian", - Description = [@"Enochian"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Grandfathered, - SubTag = null, - Added = new DateOnly(1999, 1, 31), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2000, 1, 10), - PreferredValue = "hak", - Tag = "i-hak", - Description = [@"Hakka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Grandfathered, - SubTag = null, - Added = new DateOnly(1999, 5, 26), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2004, 2, 24), - PreferredValue = "tlh", - Tag = "i-klingon", - Description = [@"Klingon"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Grandfathered, - SubTag = null, - Added = new DateOnly(1997, 9, 19), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(1998, 9, 9), - PreferredValue = "lb", - Tag = "i-lux", - Description = [@"Luxembourgish"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Grandfathered, - SubTag = null, - Added = new DateOnly(1997, 9, 19), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = "i-mingo", - Description = [@"Mingo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Grandfathered, - SubTag = null, - Added = new DateOnly(1997, 9, 19), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2000, 2, 18), - PreferredValue = "nv", - Tag = "i-navajo", - Description = [@"Navajo"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Grandfathered, - SubTag = null, - Added = new DateOnly(1999, 5, 25), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2009, 7, 29), - PreferredValue = "pwn", - Tag = "i-pwn", - Description = [@"Paiwan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Grandfathered, - SubTag = null, - Added = new DateOnly(1999, 5, 25), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2009, 7, 29), - PreferredValue = "tao", - Tag = "i-tao", - Description = [@"Tao"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Grandfathered, - SubTag = null, - Added = new DateOnly(1999, 5, 25), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2009, 7, 29), - PreferredValue = "tay", - Tag = "i-tay", - Description = [@"Tayal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Grandfathered, - SubTag = null, - Added = new DateOnly(1999, 5, 25), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2009, 7, 29), - PreferredValue = "tsu", - Tag = "i-tsu", - Description = [@"Tsou"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Grandfathered, - SubTag = null, - Added = new DateOnly(1995, 8, 23), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2000, 2, 18), - PreferredValue = "nb", - Tag = "no-bok", - Description = [@"Norwegian Bokmal"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Grandfathered, - SubTag = null, - Added = new DateOnly(1995, 8, 23), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2000, 2, 18), - PreferredValue = "nn", - Tag = "no-nyn", - Description = [@"Norwegian Nynorsk"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Grandfathered, - SubTag = null, - Added = new DateOnly(2001, 11, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2009, 7, 29), - PreferredValue = "sfb", - Tag = "sgn-BE-FR", - Description = [@"Belgian-French Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Grandfathered, - SubTag = null, - Added = new DateOnly(2001, 11, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2009, 7, 29), - PreferredValue = "vgt", - Tag = "sgn-BE-NL", - Description = [@"Belgian-Flemish Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Grandfathered, - SubTag = null, - Added = new DateOnly(2001, 11, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2009, 7, 29), - PreferredValue = "sgg", - Tag = "sgn-CH-DE", - Description = [@"Swiss German Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Grandfathered, - SubTag = null, - Added = new DateOnly(1999, 12, 18), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2005, 7, 15), - PreferredValue = "cmn", - Tag = "zh-guoyu", - Description = [@"Mandarin or Standard Chinese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Grandfathered, - SubTag = null, - Added = new DateOnly(1999, 12, 18), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2009, 7, 29), - PreferredValue = "hak", - Tag = "zh-hakka", - Description = [@"Hakka"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Grandfathered, - SubTag = null, - Added = new DateOnly(1999, 12, 18), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2009, 7, 29), - PreferredValue = null, - Tag = "zh-min", - Description = [@"Min, Fuzhou, Hokkien, Amoy, or Taiwanese"], - Comments = [@"see cdo, cpx, czo, mnp, nan"], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Grandfathered, - SubTag = null, - Added = new DateOnly(2001, 3, 26), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2009, 7, 29), - PreferredValue = "nan", - Tag = "zh-min-nan", - Description = - [ - @"Minnan, Hokkien, Amoy, Taiwanese, Southern Min, Southern Fujian, Hoklo, Southern Fukien, Ho-lo", - ], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Grandfathered, - SubTag = null, - Added = new DateOnly(1999, 12, 18), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2009, 7, 29), - PreferredValue = "hsn", - Tag = "zh-xiang", - Description = [@"Xiang or Hunanese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2003, 5, 30), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = "az-Arab", - Description = [@"Azerbaijani in Arabic script"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2003, 5, 30), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = "az-Cyrl", - Description = [@"Azerbaijani in Cyrillic script"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2003, 5, 30), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = "az-Latn", - Description = [@"Azerbaijani in Latin script"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2005, 1, 6), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = "be-Latn", - Description = [@"Belarusian in Latin script"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2005, 2, 17), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = "bs-Cyrl", - Description = [@"Bosnian in Cyrillic script"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2005, 2, 17), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = "bs-Latn", - Description = [@"Bosnian in Latin script"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2001, 7, 17), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = "de-1901", - Description = [@"German, traditional orthography"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2001, 7, 17), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = "de-1996", - Description = [@"German, orthography of 1996"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2001, 7, 17), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = "de-AT-1901", - Description = [@"German, Austrian variant, traditional orthography"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2001, 7, 17), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = "de-AT-1996", - Description = [@"German, Austrian variant, orthography of 1996"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2001, 7, 17), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = "de-CH-1901", - Description = [@"German, Swiss variant, traditional orthography"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2001, 7, 17), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = "de-CH-1996", - Description = [@"German, Swiss variant, orthography of 1996"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2001, 7, 17), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = "de-DE-1901", - Description = [@"German, German variant, traditional orthography"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2001, 7, 17), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = "de-DE-1996", - Description = [@"German, German variant, orthography of 1996"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2003, 2, 14), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = "en-boont", - Description = [@"Boontling"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2000, 5, 25), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = "en-scouse", - Description = [@"Scouse"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2005, 7, 15), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = "es-419", - Description = [@"Latin American Spanish"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2005, 2, 17), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = "iu-Cans", - Description = [@"Inuktitut in Canadian Aboriginal Syllabic script"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2005, 2, 17), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = "iu-Latn", - Description = [@"Inuktitut in Latin script"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2005, 2, 17), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = "mn-Cyrl", - Description = [@"Mongolian in Cyrillic script"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2005, 2, 17), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = "mn-Mong", - Description = [@"Mongolian in Mongolian script"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2001, 11, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2009, 7, 29), - PreferredValue = "bzs", - Tag = "sgn-BR", - Description = [@"Brazilian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2001, 11, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2009, 7, 29), - PreferredValue = "csn", - Tag = "sgn-CO", - Description = [@"Colombian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2001, 11, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2009, 7, 29), - PreferredValue = "gsg", - Tag = "sgn-DE", - Description = [@"German Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2001, 11, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2009, 7, 29), - PreferredValue = "dsl", - Tag = "sgn-DK", - Description = [@"Danish Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2001, 11, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2009, 7, 29), - PreferredValue = "ssp", - Tag = "sgn-ES", - Description = [@"Spanish Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2001, 11, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2009, 7, 29), - PreferredValue = "fsl", - Tag = "sgn-FR", - Description = [@"French Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2001, 3, 2), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2009, 7, 29), - PreferredValue = "bfi", - Tag = "sgn-GB", - Description = [@"British Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2001, 11, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2009, 7, 29), - PreferredValue = "gss", - Tag = "sgn-GR", - Description = [@"Greek Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2001, 3, 2), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2009, 7, 29), - PreferredValue = "isg", - Tag = "sgn-IE", - Description = [@"Irish Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2001, 11, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2009, 7, 29), - PreferredValue = "ise", - Tag = "sgn-IT", - Description = [@"Italian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2001, 11, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2009, 7, 29), - PreferredValue = "jsl", - Tag = "sgn-JP", - Description = [@"Japanese Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2001, 11, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2009, 7, 29), - PreferredValue = "mfs", - Tag = "sgn-MX", - Description = [@"Mexican Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2001, 3, 2), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2009, 7, 29), - PreferredValue = "ncs", - Tag = "sgn-NI", - Description = [@"Nicaraguan Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2001, 11, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2009, 7, 29), - PreferredValue = "dse", - Tag = "sgn-NL", - Description = [@"Dutch Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2001, 11, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2009, 7, 29), - PreferredValue = "nsl", - Tag = "sgn-NO", - Description = [@"Norwegian Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2001, 11, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2009, 7, 29), - PreferredValue = "psr", - Tag = "sgn-PT", - Description = [@"Portuguese Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2001, 11, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2009, 7, 29), - PreferredValue = "swl", - Tag = "sgn-SE", - Description = [@"Swedish Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2001, 3, 2), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2009, 7, 29), - PreferredValue = "ase", - Tag = "sgn-US", - Description = [@"American Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2001, 11, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2009, 7, 29), - PreferredValue = "sfs", - Tag = "sgn-ZA", - Description = [@"South African Sign Language"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2004, 6, 1), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = "sl-nedis", - Description = [@"Natisone dialect, Nadiza dialect"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2003, 10, 9), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = "sl-rozaj", - Description = [@"Resian, Resianic, Rezijan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2003, 5, 30), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = "sr-Cyrl", - Description = [@"Serbian in Cyrillic script"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2003, 5, 30), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = "sr-Latn", - Description = [@"Serbian in Latin script"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2005, 2, 17), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = "tg-Arab", - Description = [@"Tajik in Arabic script"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2005, 2, 17), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = "tg-Cyrl", - Description = [@"Tajik in Cyrillic script"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2003, 5, 30), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = "uz-Cyrl", - Description = [@"Uzbek in Cyrillic script"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2003, 5, 30), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = "uz-Latn", - Description = [@"Uzbek in Latin script"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2003, 1, 7), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = "yi-Latn", - Description = [@"Yiddish, in Latin script"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2005, 7, 15), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2009, 7, 29), - PreferredValue = "cmn", - Tag = "zh-cmn", - Description = [@"Mandarin Chinese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2005, 7, 15), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2009, 7, 29), - PreferredValue = "cmn-Hans", - Tag = "zh-cmn-Hans", - Description = [@"Mandarin Chinese (Simplified)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2005, 7, 15), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2009, 7, 29), - PreferredValue = "cmn-Hant", - Tag = "zh-cmn-Hant", - Description = [@"Mandarin Chinese (Traditional)"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(1999, 12, 18), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2009, 7, 29), - PreferredValue = "gan", - Tag = "zh-gan", - Description = [@"Kan or Gan"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2003, 5, 30), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = "zh-Hans", - Description = [@"simplified Chinese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2005, 4, 13), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = "zh-Hans-CN", - Description = [@"PRC Mainland Chinese in simplified script"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2005, 4, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = "zh-Hans-HK", - Description = [@"Hong Kong Chinese in simplified script"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2005, 4, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = "zh-Hans-MO", - Description = [@"Macao Chinese in simplified script"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2005, 4, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = "zh-Hans-SG", - Description = [@"Singapore Chinese in simplified script"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2005, 4, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = "zh-Hans-TW", - Description = [@"Taiwan Chinese in simplified script"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2003, 5, 30), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = "zh-Hant", - Description = [@"traditional Chinese"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2005, 4, 13), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = "zh-Hant-CN", - Description = [@"PRC Mainland Chinese in traditional script"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2005, 4, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = "zh-Hant-HK", - Description = [@"Hong Kong Chinese in traditional script"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2005, 4, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = "zh-Hant-MO", - Description = [@"Macao Chinese in traditional script"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2005, 4, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = "zh-Hant-SG", - Description = [@"Singapore Chinese in traditional script"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(2005, 4, 11), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = null, - PreferredValue = null, - Tag = "zh-Hant-TW", - Description = [@"Taiwan Chinese in traditional script"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(1999, 12, 18), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2009, 7, 29), - PreferredValue = "wuu", - Tag = "zh-wuu", - Description = [@"Shanghaiese or Wu"], - Comments = [], - Prefix = [], - }, - new() - { - Type = Rfc5646Record.RecordType.Redundant, - SubTag = null, - Added = new DateOnly(1999, 12, 18), - SuppressScript = null, - Scope = Rfc5646Record.RecordScope.None, - MacroLanguage = null, - Deprecated = new DateOnly(2009, 7, 29), - PreferredValue = "yue", - Tag = "zh-yue", - Description = [@"Cantonese"], - Comments = [], - Prefix = [], - }, - ], - }; -} diff --git a/LanguageTags/UnM49Data.cs b/LanguageTags/UnM49Data.cs deleted file mode 100644 index 25ee08a..0000000 --- a/LanguageTags/UnM49Data.cs +++ /dev/null @@ -1,423 +0,0 @@ -using System.Runtime.CompilerServices; -using System.Text.Json.Serialization; -using System.Xml; - -namespace ptr727.LanguageTags; - -/// -/// Provides access to UN M.49 region containment data. -/// -public sealed partial class UnM49Data -{ - internal const string DataUri = - "https://raw.githubusercontent.com/unicode-org/cldr/main/common/supplemental/supplementalData.xml"; - internal const string DataFileName = "unm49"; - - private readonly Lazy _logger = new(LogOptions.CreateLogger); - internal ILogger Log => _logger.Value; - - // Lazily built transitive ancestor index, code -> all containing group codes - private readonly Lazy>> _ancestorIndex; - - [JsonConstructor] - internal UnM49Data() => _ancestorIndex = new(BuildAncestorIndex); - - /// - /// Gets the collection of UN M.49 containment records. - /// - [JsonInclude] - public ImmutableArray RecordList { get; internal set; } = []; - - /// - /// Creates a instance from a data file asynchronously. - /// - /// The path to the data file. - /// The loaded . - /// Thrown when the file cannot be read. - /// Thrown when the file contains invalid data. - public static async Task FromDataAsync(string fileName) - { - UnM49Data unM49Data = new(); - await unM49Data.LoadDataAsync(fileName).ConfigureAwait(false); - return unM49Data; - } - - [System.Diagnostics.CodeAnalysis.SuppressMessage( - "Reliability", - "CA2007:Consider calling ConfigureAwait on the awaited task", - Justification = "https://github.com/dotnet/roslyn-analyzers/issues/7185" - )] - private async Task LoadDataAsync(string fileName) - { - // UN M.49 territory containment from the CLDR supplemental data - // https://github.com/unicode-org/cldr/blob/main/common/supplemental/supplementalData.xml - // - // - // - // Numeric types are UN M.49 region codes, 2 letter values are ISO 3166-1 country codes - // The 419 Latin America macro region we care about is a grouping="true" overlay, so - // grouping overlays must be kept, only status="deprecated" containment is skipped - - try - { - // Read group elements within the territoryContainment section - List recordList = []; - await using FileStream fileStream = new( - fileName, - FileMode.Open, - FileAccess.Read, - FileShare.Read, - 4096, - FileOptions.Asynchronous | FileOptions.SequentialScan - ); - - // XmlReader is AOT safe, do not use the reflection based XmlSerializer - // CLDR data references an external DTD, ignore it instead of resolving it - XmlReaderSettings settings = new() - { - Async = true, - DtdProcessing = DtdProcessing.Ignore, - XmlResolver = null, - IgnoreComments = true, - IgnoreWhitespace = true, - }; - using XmlReader reader = XmlReader.Create(fileStream, settings); - - // Only process group elements inside the territoryContainment section - bool inContainment = false; - while (await reader.ReadAsync().ConfigureAwait(false)) - { - // Enter the territoryContainment section - if ( - reader.NodeType == XmlNodeType.Element - && reader.Name.Equals("territoryContainment", StringComparison.Ordinal) - ) - { - inContainment = true; - continue; - } - - // The section is unique, stop reading the rest of the large file - if ( - reader.NodeType == XmlNodeType.EndElement - && reader.Name.Equals("territoryContainment", StringComparison.Ordinal) - ) - { - break; - } - - // Group element - if ( - !inContainment - || reader.NodeType != XmlNodeType.Element - || !reader.Name.Equals("group", StringComparison.Ordinal) - ) - { - continue; - } - - // Skip deprecated containment, keep canonical and grouping overlays - string? status = reader.GetAttribute("status"); - if (string.Equals(status, "deprecated", StringComparison.Ordinal)) - { - continue; - } - - // type is the parent code, contains is the space separated child codes - string? type = reader.GetAttribute("type"); - string? contains = reader.GetAttribute("contains"); - if (string.IsNullOrEmpty(type) || string.IsNullOrEmpty(contains)) - { - continue; - } - - // Populate record - recordList.Add( - new UnM49Record - { - Code = type, - Contains = - [ - .. contains.Split( - ' ', - StringSplitOptions.RemoveEmptyEntries - | StringSplitOptions.TrimEntries - ), - ], - } - ); - } - - if (recordList.Count == 0) - { - Log.LogDataLoadEmpty(nameof(UnM49Data), fileName); - throw new InvalidDataException($"No data found in UN M.49 file: {fileName}"); - } - - RecordList = [.. recordList]; - Log.LogDataLoaded(nameof(UnM49Data), fileName, RecordList.Length); - } - catch (Exception exception) - { - Log.LogDataLoadFailed(nameof(UnM49Data), fileName, exception); - throw; - } - } - - /// - /// Creates a instance from a JSON file asynchronously. - /// - /// The path to the JSON file. - /// The loaded . - /// Thrown when the file contains invalid data. - /// Thrown when the file cannot be read. - /// Thrown when the JSON is invalid. - [System.Diagnostics.CodeAnalysis.SuppressMessage( - "Reliability", - "CA2007:Consider calling ConfigureAwait on the awaited task", - Justification = "https://github.com/dotnet/roslyn-analyzers/issues/7185" - )] - public static async Task FromJsonAsync(string fileName) - { - ILogger logger = LogOptions.CreateLogger(); - try - { - await using FileStream fileStream = new( - fileName, - FileMode.Open, - FileAccess.Read, - FileShare.Read, - 4096, - FileOptions.Asynchronous | FileOptions.SequentialScan - ); - UnM49Data? data = await JsonSerializer - .DeserializeAsync(fileStream, LanguageJsonContext.Default.UnM49Data) - .ConfigureAwait(false); - if (data == null) - { - logger.LogDataLoadEmpty(nameof(UnM49Data), fileName); - throw new InvalidDataException($"No data found in UN M.49 file: {fileName}"); - } - - logger.LogDataLoaded(nameof(UnM49Data), fileName, data.RecordList.Length); - return data; - } - catch (Exception exception) - { - logger.LogDataLoadFailed(nameof(UnM49Data), fileName, exception); - throw; - } - } - - [System.Diagnostics.CodeAnalysis.SuppressMessage( - "Reliability", - "CA2007:Consider calling ConfigureAwait on the awaited task", - Justification = "https://github.com/dotnet/roslyn-analyzers/issues/7185" - )] - internal async Task SaveJsonAsync(string fileName) - { - await using FileStream fileStream = new( - fileName, - FileMode.Create, - FileAccess.Write, - FileShare.None, - 4096, - FileOptions.Asynchronous | FileOptions.SequentialScan - ); - await JsonSerializer - .SerializeAsync(fileStream, this, LanguageJsonContext.Default.UnM49Data) - .ConfigureAwait(false); - } - - internal async Task SaveCodeAsync(string fileName) - { - using StreamWriter writer = new( - new FileStream( - fileName, - FileMode.Create, - FileAccess.Write, - FileShare.None, - 4096, - FileOptions.Asynchronous | FileOptions.SequentialScan - ), - new UTF8Encoding(false) - ) - { - NewLine = "\r\n", - }; - - await WriteLineAsync("namespace ptr727.LanguageTags;"); - await WriteLineAsync(string.Empty); - await WriteLineAsync("/// "); - await WriteLineAsync("/// Provides access to UN M.49 region containment data."); - await WriteLineAsync("/// "); - await WriteLineAsync( - $"[System.CodeDom.Compiler.GeneratedCode(\"{typeof(UnM49Data).FullName}\", \"1.0\")]" - ); - await WriteLineAsync("public sealed partial class UnM49Data"); - await WriteLineAsync("{"); - await WriteLineAsync(" /// "); - await WriteLineAsync( - " /// Creates an instance loaded from the embedded UN M.49 dataset." - ); - await WriteLineAsync(" /// "); - await WriteLineAsync( - " /// The populated instance." - ); - await WriteLineAsync(" public static UnM49Data Create() =>"); - await WriteLineAsync(" new()"); - await WriteLineAsync(" {"); - await WriteLineAsync(" RecordList ="); - await WriteLineAsync(" ["); - - foreach (UnM49Record record in RecordList) - { - await WriteLineAsync(" new()"); - await WriteLineAsync(" {"); - await WriteLineAsync( - $" Code = {LanguageSchema.GetCodeGenString(record.Code)}," - ); - await WriteLineAsync( - $" Contains = {LanguageSchema.GetCodeGenString(record.Contains)}," - ); - await WriteLineAsync(" },"); - } - - await WriteLineAsync(" ],"); - await WriteLineAsync(" };"); - await WriteLineAsync("}"); - return; - - ConfiguredTaskAwaitable WriteLineAsync(string value) => - writer.WriteLineAsync(value).ConfigureAwait(false); - } - - /// - /// Finds a UN M.49 containment record by region code. - /// - /// - /// A code can appear in more than one source record (CLDR splits canonical and grouping overlays, - /// e.g. there are two "001" records), and this returns the first match only. Use - /// or for the complete transitive containment across all records. - /// - /// The region code to search for (e.g. "419" or "013"). - /// The first matching , or null when no match is found. - public UnM49Record? Find(string code) - { - if (string.IsNullOrEmpty(code)) - { - Log.LogFindRecordNotFound(nameof(UnM49Data), code, false); - return null; - } - - // Find the matching containment group - UnM49Record? record = RecordList.FirstOrDefault(item => - !string.IsNullOrEmpty(item.Code) - && item.Code.Equals(code, StringComparison.OrdinalIgnoreCase) - ); - if (record != null) - { - Log.LogFindRecordFound(nameof(UnM49Data), code, false); - return record; - } - - // Not found - Log.LogFindRecordNotFound(nameof(UnM49Data), code, false); - return null; - } - - /// - /// Gets the transitive set of UN M.49 group codes that contain the specified code. - /// - /// - /// For a country code the result is its chain of containing regions, e.g. "MX" yields - /// "013" (Central America), "419" (Latin America and the Caribbean), "019" (Americas), and - /// "001" (World). The codes are returned nearest containing group first. - /// - /// The region or country code to resolve. - /// The ancestor group codes, or an empty list when the code is unknown. - public IReadOnlyList GetAncestors(string code) => - string.IsNullOrEmpty(code) ? [] - : _ancestorIndex.Value.TryGetValue(code, out ImmutableArray ancestors) ? ancestors - : []; - - /// - /// Determines whether a region or country code is contained within a UN M.49 group. - /// - /// The containing group code (e.g. "419"). - /// The region or country code to test (e.g. "MX"). - /// true when is transitively contained in ; otherwise, false. - public bool Contains(string groupCode, string code) => - !string.IsNullOrEmpty(groupCode) - && !string.IsNullOrEmpty(code) - && GetAncestors(code).Contains(groupCode, StringComparer.OrdinalIgnoreCase); - - private Dictionary> BuildAncestorIndex() - { - // Map each child code to its direct parent group codes - Dictionary> parents = new(StringComparer.OrdinalIgnoreCase); - HashSet allCodes = new(StringComparer.OrdinalIgnoreCase); - foreach (UnM49Record record in RecordList) - { - _ = allCodes.Add(record.Code); - foreach (string child in record.Contains) - { - _ = allCodes.Add(child); - if (!parents.TryGetValue(child, out List? list)) - { - list = []; - parents[child] = list; - } - if (!list.Contains(record.Code, StringComparer.OrdinalIgnoreCase)) - { - list.Add(record.Code); - } - } - } - - // Walk up the parent map to collect transitive ancestors, guarding against cycles - Dictionary> index = new(StringComparer.OrdinalIgnoreCase); - foreach (string code in allCodes) - { - List ordered = []; - HashSet visited = new(StringComparer.OrdinalIgnoreCase) { code }; - Queue queue = new(); - queue.Enqueue(code); - while (queue.Count > 0) - { - string current = queue.Dequeue(); - if (!parents.TryGetValue(current, out List? currentParents)) - { - continue; - } - foreach (string parent in currentParents) - { - if (visited.Add(parent)) - { - ordered.Add(parent); - queue.Enqueue(parent); - } - } - } - index[code] = [.. ordered]; - } - return index; - } -} - -/// -/// Represents a UN M.49 region containment record. -/// -public sealed record UnM49Record -{ - /// - /// Gets the region code, usually a UN M.49 numeric code (e.g. "419" or "013"), but the CLDR source - /// also includes alphabetic grouping codes (e.g. "EU", "EZ", "UN"). - /// - public string Code { get; init; } = string.Empty; - - /// - /// Gets the codes directly contained by this region (region or ISO 3166-1 country codes). - /// - public ImmutableArray Contains { get; init; } = []; -} diff --git a/LanguageTags/UnM49DataGen.cs b/LanguageTags/UnM49DataGen.cs deleted file mode 100644 index f87a8ec..0000000 --- a/LanguageTags/UnM49DataGen.cs +++ /dev/null @@ -1,569 +0,0 @@ -namespace ptr727.LanguageTags; - -/// -/// Provides access to UN M.49 region containment data. -/// -[System.CodeDom.Compiler.GeneratedCode("ptr727.LanguageTags.UnM49Data", "1.0")] -public sealed partial class UnM49Data -{ - /// - /// Creates an instance loaded from the embedded UN M.49 dataset. - /// - /// The populated instance. - public static UnM49Data Create() => - new() - { - RecordList = - [ - new() { Code = "001", Contains = [@"019", @"002", @"150", @"142", @"009"] }, - new() { Code = "001", Contains = [@"EU", @"EZ", @"UN"] }, - new() - { - Code = "011", - Contains = - [ - @"BF", - @"BJ", - @"CI", - @"CV", - @"GH", - @"GM", - @"GN", - @"GW", - @"LR", - @"ML", - @"MR", - @"NE", - @"NG", - @"SH", - @"SL", - @"SN", - @"TG", - ], - }, - new() - { - Code = "013", - Contains = [@"BZ", @"CR", @"GT", @"HN", @"MX", @"NI", @"PA", @"SV"], - }, - new() - { - Code = "014", - Contains = - [ - @"BI", - @"DJ", - @"ER", - @"ET", - @"IO", - @"KE", - @"KM", - @"MG", - @"MU", - @"MW", - @"MZ", - @"RE", - @"RW", - @"SC", - @"SO", - @"SS", - @"TF", - @"TZ", - @"UG", - @"YT", - @"ZM", - @"ZW", - ], - }, - new() { Code = "142", Contains = [@"145", @"143", @"030", @"034", @"035"] }, - new() { Code = "143", Contains = [@"TM", @"TJ", @"KG", @"KZ", @"UZ"] }, - new() - { - Code = "145", - Contains = - [ - @"AE", - @"AM", - @"AZ", - @"BH", - @"CY", - @"GE", - @"IL", - @"IQ", - @"JO", - @"KW", - @"LB", - @"OM", - @"PS", - @"QA", - @"SA", - @"SY", - @"TR", - @"YE", - ], - }, - new() - { - Code = "015", - Contains = [@"DZ", @"EG", @"EH", @"LY", @"MA", @"SD", @"TN", @"EA", @"IC"], - }, - new() { Code = "150", Contains = [@"154", @"155", @"151", @"039"] }, - new() - { - Code = "151", - Contains = - [ - @"BG", - @"BY", - @"CZ", - @"HU", - @"MD", - @"PL", - @"RO", - @"RU", - @"SK", - @"UA", - ], - }, - new() - { - Code = "154", - Contains = - [ - @"GG", - @"IM", - @"JE", - @"AX", - @"DK", - @"EE", - @"FI", - @"FO", - @"GB", - @"IE", - @"IS", - @"LT", - @"LV", - @"NO", - @"SE", - @"SJ", - @"CQ", - ], - }, - new() - { - Code = "155", - Contains = [@"AT", @"BE", @"CH", @"DE", @"FR", @"LI", @"LU", @"MC", @"NL"], - }, - new() - { - Code = "017", - Contains = [@"AO", @"CD", @"CF", @"CG", @"CM", @"GA", @"GQ", @"ST", @"TD"], - }, - new() { Code = "018", Contains = [@"BW", @"LS", @"NA", @"SZ", @"ZA"] }, - new() { Code = "019", Contains = [@"021", @"013", @"029", @"005"] }, - new() { Code = "019", Contains = [@"003", @"419"] }, - new() { Code = "002", Contains = [@"015", @"011", @"017", @"014", @"018"] }, - new() { Code = "002", Contains = [@"202"] }, - new() { Code = "202", Contains = [@"011", @"017", @"014", @"018"] }, - new() { Code = "021", Contains = [@"BM", @"CA", @"GL", @"PM", @"US"] }, - new() - { - Code = "029", - Contains = - [ - @"AG", - @"AI", - @"AW", - @"BB", - @"BL", - @"BQ", - @"BS", - @"CU", - @"CW", - @"DM", - @"DO", - @"GD", - @"GP", - @"HT", - @"JM", - @"KN", - @"KY", - @"LC", - @"MF", - @"MQ", - @"MS", - @"PR", - @"SX", - @"TC", - @"TT", - @"VC", - @"VG", - @"VI", - ], - }, - new() { Code = "003", Contains = [@"021", @"013", @"029"] }, - new() - { - Code = "030", - Contains = [@"CN", @"HK", @"JP", @"KP", @"KR", @"MN", @"MO", @"TW"], - }, - new() - { - Code = "035", - Contains = - [ - @"BN", - @"ID", - @"KH", - @"LA", - @"MM", - @"MY", - @"PH", - @"SG", - @"TH", - @"TL", - @"VN", - ], - }, - new() - { - Code = "039", - Contains = - [ - @"AD", - @"AL", - @"BA", - @"ES", - @"GI", - @"GR", - @"HR", - @"IT", - @"ME", - @"MK", - @"MT", - @"RS", - @"PT", - @"SI", - @"SM", - @"VA", - @"XK", - ], - }, - new() { Code = "419", Contains = [@"013", @"029", @"005"] }, - new() - { - Code = "005", - Contains = - [ - @"AR", - @"BO", - @"BR", - @"BV", - @"CL", - @"CO", - @"EC", - @"FK", - @"GF", - @"GS", - @"GY", - @"PE", - @"PY", - @"SR", - @"UY", - @"VE", - ], - }, - new() { Code = "053", Contains = [@"AU", @"CC", @"CX", @"HM", @"NF", @"NZ"] }, - new() { Code = "054", Contains = [@"FJ", @"NC", @"PG", @"SB", @"VU"] }, - new() - { - Code = "057", - Contains = [@"FM", @"GU", @"KI", @"MH", @"MP", @"NR", @"PW", @"UM"], - }, - new() - { - Code = "061", - Contains = - [ - @"AS", - @"CK", - @"NU", - @"PF", - @"PN", - @"TK", - @"TO", - @"TV", - @"WF", - @"WS", - ], - }, - new() - { - Code = "034", - Contains = [@"AF", @"BD", @"BT", @"IN", @"IR", @"LK", @"MV", @"NP", @"PK"], - }, - new() { Code = "009", Contains = [@"053", @"054", @"057", @"061", @"QO"] }, - new() { Code = "QO", Contains = [@"AQ", @"AC", @"CP", @"DG", @"TA"] }, - new() - { - Code = "EU", - Contains = - [ - @"AT", - @"BE", - @"CY", - @"CZ", - @"DE", - @"DK", - @"EE", - @"ES", - @"FI", - @"FR", - @"GR", - @"HR", - @"HU", - @"IE", - @"IT", - @"LT", - @"LU", - @"LV", - @"MT", - @"NL", - @"PL", - @"PT", - @"SE", - @"SI", - @"SK", - @"BG", - @"RO", - ], - }, - new() - { - Code = "EZ", - Contains = - [ - @"AT", - @"BE", - @"CY", - @"DE", - @"EE", - @"ES", - @"FI", - @"FR", - @"GR", - @"IE", - @"IT", - @"LT", - @"LU", - @"LV", - @"MT", - @"NL", - @"PT", - @"SI", - @"SK", - ], - }, - new() - { - Code = "UN", - Contains = - [ - @"AD", - @"AE", - @"AF", - @"AG", - @"AL", - @"AM", - @"AO", - @"AR", - @"AT", - @"AU", - @"AZ", - @"BA", - @"BB", - @"BD", - @"BE", - @"BF", - @"BG", - @"BH", - @"BI", - @"BJ", - @"BN", - @"BO", - @"BR", - @"BS", - @"BT", - @"BW", - @"BY", - @"BZ", - @"CA", - @"CD", - @"CF", - @"CG", - @"CH", - @"CI", - @"CL", - @"CM", - @"CN", - @"CO", - @"CR", - @"CU", - @"CV", - @"CY", - @"CZ", - @"DE", - @"DJ", - @"DK", - @"DM", - @"DO", - @"DZ", - @"EC", - @"EE", - @"EG", - @"ER", - @"ES", - @"ET", - @"FI", - @"FJ", - @"FM", - @"FR", - @"GA", - @"GB", - @"GD", - @"GE", - @"GH", - @"GM", - @"GN", - @"GQ", - @"GR", - @"GT", - @"GW", - @"GY", - @"HN", - @"HR", - @"HT", - @"HU", - @"ID", - @"IE", - @"IL", - @"IN", - @"IQ", - @"IR", - @"IS", - @"IT", - @"JM", - @"JO", - @"JP", - @"KE", - @"KG", - @"KH", - @"KI", - @"KM", - @"KN", - @"KP", - @"KR", - @"KW", - @"KZ", - @"LA", - @"LB", - @"LC", - @"LI", - @"LK", - @"LR", - @"LS", - @"LT", - @"LU", - @"LV", - @"LY", - @"MA", - @"MC", - @"MD", - @"ME", - @"MG", - @"MH", - @"MK", - @"ML", - @"MM", - @"MN", - @"MR", - @"MT", - @"MU", - @"MV", - @"MX", - @"MW", - @"MY", - @"MZ", - @"NA", - @"NE", - @"NG", - @"NI", - @"NL", - @"NO", - @"NR", - @"NP", - @"NZ", - @"OM", - @"PA", - @"PE", - @"PG", - @"PH", - @"PK", - @"PL", - @"PT", - @"PW", - @"PY", - @"QA", - @"RO", - @"RS", - @"RU", - @"RW", - @"SA", - @"SB", - @"SC", - @"SD", - @"SE", - @"SG", - @"SI", - @"SK", - @"SL", - @"SM", - @"SN", - @"SO", - @"SR", - @"SS", - @"ST", - @"SV", - @"SY", - @"SZ", - @"TD", - @"TG", - @"TH", - @"TJ", - @"TL", - @"TM", - @"TN", - @"TO", - @"TR", - @"TT", - @"TV", - @"TZ", - @"UA", - @"UG", - @"US", - @"UY", - @"UZ", - @"VC", - @"VE", - @"VN", - @"VU", - @"WS", - @"YE", - @"ZA", - @"ZM", - @"ZW", - ], - }, - ], - }; -} diff --git a/LanguageTagsCreate/.editorconfig b/LanguageTagsCreate/.editorconfig deleted file mode 100644 index 797656b..0000000 --- a/LanguageTagsCreate/.editorconfig +++ /dev/null @@ -1,7 +0,0 @@ -root = false - -# C# files -[*.cs] - -# Ignore types can be made internal -dotnet_diagnostic.CA1515.severity = none diff --git a/LanguageTagsCreate/AssemblyInfo.cs b/LanguageTagsCreate/AssemblyInfo.cs deleted file mode 100644 index ac9e350..0000000 --- a/LanguageTagsCreate/AssemblyInfo.cs +++ /dev/null @@ -1,45 +0,0 @@ -using System.Reflection; -using System.Runtime.InteropServices; - -namespace ptr727.LanguageTags.Create; - -internal static class AssemblyInfo -{ - internal static string AppVersion => $"{AppName} : {FileVersion} ({BuildType})"; - - internal static string RuntimeVersion => - $"{RuntimeInformation.FrameworkDescription} : {RuntimeInformation.RuntimeIdentifier}"; - - internal static string BuildType => -#if DEBUG - "Debug"; -#else - "Release"; -#endif - - internal static string AppName => GetAssembly().GetName().Name ?? string.Empty; - - internal static string InformationalVersion => - // E.g. 1.2.3+abc123.abc123 - GetAssembly() - .GetCustomAttribute() - ?.InformationalVersion - ?? string.Empty; - - internal static string FileVersion => - // E.g. 1.2.3.4 - GetAssembly().GetCustomAttribute()?.Version - ?? string.Empty; - - internal static string ReleaseVersion => - // E.g. 1.2.3 part of 1.2.3+abc123.abc123 - // Use major.minor.build from informational version - InformationalVersion.Split('+', '-')[0]; - - private static Assembly GetAssembly() - { - Assembly? assembly = Assembly.GetEntryAssembly(); - assembly ??= Assembly.GetExecutingAssembly(); - return assembly; - } -} diff --git a/LanguageTagsCreate/CommandLine.cs b/LanguageTagsCreate/CommandLine.cs deleted file mode 100644 index f2eee13..0000000 --- a/LanguageTagsCreate/CommandLine.cs +++ /dev/null @@ -1,107 +0,0 @@ -using System.CommandLine; -using System.CommandLine.Parsing; - -namespace ptr727.LanguageTags.Create; - -internal sealed class CommandLine -{ - private readonly Option _logLevelOption = CreateLogLevelOption(); - private readonly Option _logFileOption = CreateLogFileOption(); - private readonly Option _logFileClearOption = CreateLogFileClearOption(); - private readonly Option _codePathOption = CreateCodePathOption(); - - private static readonly FrozenSet s_cliBypassList = FrozenSet.Create( - StringComparer.OrdinalIgnoreCase, - "--help", - "--version" - ); - - internal CommandLine(string[] args) - { - Root = CreateRootCommand(); - Result = Root.Parse(args); - } - - internal RootCommand Root { get; init; } - internal ParseResult Result { get; init; } - - internal RootCommand CreateRootCommand() - { - RootCommand rootCommand = new("Download and generate language tag data and code") - { - _logLevelOption, - _logFileOption, - _logFileClearOption, - _codePathOption, - }; - rootCommand.SetAction( - (parseResult, cancellationToken) => - { - Program program = new(CreateOptions(parseResult), cancellationToken); - return program.ExecuteAsync(); - } - ); - - return rootCommand; - } - - internal Options CreateOptions(ParseResult parseResult) => - new() - { - LogOptions = new LoggerFactory.Options - { - Level = parseResult.GetValue(_logLevelOption), - File = parseResult.GetValue(_logFileOption) ?? string.Empty, - FileClear = parseResult.GetValue(_logFileClearOption), - }, - CodePath = parseResult.GetValue(_codePathOption)!, - }; - - private static Option CreateLogFileClearOption() => - new("--logfile-clear", "-c") - { - Description = "Clear the log file before writing (default: false).", - Recursive = true, - }; - - private static Option CreateLogLevelOption() => - new("--loglevel", "-l") - { - Description = "Set the log level (default: Information).", - DefaultValueFactory = _ => LogEventLevel.Information, - Recursive = true, - }; - - private static Option CreateLogFileOption() - { - Option option = new("--logfile", "-f") - { - Description = "Write logs to the specified file (optional).", - Recursive = true, - }; - return option.AcceptLegalFileNamesOnly(); - } - - private static Option CreateCodePathOption() - { - Option option = new("--codepath", "-p") - { - Description = "Path to the solution directory.", - Required = true, - }; - return option.AcceptExistingOnly(); - } - - internal static bool BypassStartup(ParseResult parseResult) => - parseResult.Errors.Count > 0 - || parseResult.CommandResult.Children.Any(symbolResult => - symbolResult is OptionResult optionResult - && s_cliBypassList.Contains(optionResult.Option.Name) - ); - - internal sealed class Options - { - internal required LoggerFactory.Options LogOptions { get; init; } - internal required DirectoryInfo CodePath { get; init; } - } -} diff --git a/LanguageTagsCreate/CreateTagData.cs b/LanguageTagsCreate/CreateTagData.cs deleted file mode 100644 index 78fd33e..0000000 --- a/LanguageTagsCreate/CreateTagData.cs +++ /dev/null @@ -1,146 +0,0 @@ -namespace ptr727.LanguageTags.Create; - -internal sealed class CreateTagData( - string dataDirectory, - string codeDirectory, - CancellationToken cancellationToken -) -{ - private Iso6392Data? _iso6392; - private string? _iso6392DataFile; - private string? _iso6392JsonFile; - private string? _iso6392CodeFile; - private Iso6393Data? _iso6393; - private string? _iso6393DataFile; - private string? _iso6393JsonFile; - private string? _iso6393CodeFile; - private Rfc5646Data? _rfc5646; - private string? _rfc5646DataFile; - private string? _rfc5646JsonFile; - private string? _rfc5646CodeFile; - private UnM49Data? _unM49; - private string? _unM49DataFile; - private string? _unM49JsonFile; - private string? _unM49CodeFile; - - internal async Task DownloadDataAsync() - { - // Download all the data files - Log.Information("Downloading all language tag data files ..."); - - Log.Information("Downloading ISO 639-2 data ..."); - _iso6392DataFile = Path.Combine(dataDirectory, Iso6392Data.DataFileName); - await DownloadFileAsync(new Uri(Iso6392Data.DataUri), _iso6392DataFile) - .ConfigureAwait(false); - - Log.Information("Downloading ISO 639-3 data ..."); - _iso6393DataFile = Path.Combine(dataDirectory, Iso6393Data.DataFileName); - await DownloadFileAsync(new Uri(Iso6393Data.DataUri), _iso6393DataFile) - .ConfigureAwait(false); - - Log.Information("Downloading RFC 5646 data ..."); - _rfc5646DataFile = Path.Combine(dataDirectory, Rfc5646Data.DataFileName); - await DownloadFileAsync(new Uri(Rfc5646Data.DataUri), _rfc5646DataFile) - .ConfigureAwait(false); - - Log.Information("Downloading UN M.49 data ..."); - _unM49DataFile = Path.Combine(dataDirectory, UnM49Data.DataFileName); - await DownloadFileAsync(new Uri(UnM49Data.DataUri), _unM49DataFile).ConfigureAwait(false); - - Log.Information("Language tag data files downloaded successfully."); - } - - internal async Task CreateJsonDataAsync() - { - ArgumentNullException.ThrowIfNull(_iso6392DataFile); - ArgumentNullException.ThrowIfNull(_iso6393DataFile); - ArgumentNullException.ThrowIfNull(_rfc5646DataFile); - ArgumentNullException.ThrowIfNull(_unM49DataFile); - - // Convert data files to JSON - Log.Information("Converting data files to JSON ..."); - - Log.Information("Converting ISO 639-2 data to JSON ..."); - _iso6392 = await Iso6392Data.FromDataAsync(_iso6392DataFile).ConfigureAwait(false); - _iso6392JsonFile = Path.Combine(dataDirectory, Iso6392Data.DataFileName + ".json"); - Log.Information("Writing ISO 639-2 data to {JsonPath}", _iso6392JsonFile); - await _iso6392.SaveJsonAsync(_iso6392JsonFile).ConfigureAwait(false); - - Log.Information("Converting ISO 639-3 data to JSON ..."); - _iso6393 = await Iso6393Data.FromDataAsync(_iso6393DataFile).ConfigureAwait(false); - _iso6393JsonFile = Path.Combine(dataDirectory, Iso6393Data.DataFileName + ".json"); - Log.Information("Writing ISO 639-3 data to {JsonPath}", _iso6393JsonFile); - await _iso6393.SaveJsonAsync(_iso6393JsonFile).ConfigureAwait(false); - - Log.Information("Converting RFC 5646 data to JSON ..."); - _rfc5646 = await Rfc5646Data.FromDataAsync(_rfc5646DataFile).ConfigureAwait(false); - _rfc5646JsonFile = Path.Combine(dataDirectory, Rfc5646Data.DataFileName + ".json"); - Log.Information("Writing RFC 5646 data to {JsonPath}", _rfc5646JsonFile); - await _rfc5646.SaveJsonAsync(_rfc5646JsonFile).ConfigureAwait(false); - - Log.Information("Converting UN M.49 data to JSON ..."); - _unM49 = await UnM49Data.FromDataAsync(_unM49DataFile).ConfigureAwait(false); - _unM49JsonFile = Path.Combine(dataDirectory, UnM49Data.DataFileName + ".json"); - Log.Information("Writing UN M.49 data to {JsonPath}", _unM49JsonFile); - await _unM49.SaveJsonAsync(_unM49JsonFile).ConfigureAwait(false); - - Log.Information("Data files converted to JSON successfully."); - } - - internal async Task GenerateCodeAsync() - { - ArgumentNullException.ThrowIfNull(_iso6392); - ArgumentNullException.ThrowIfNull(_iso6393); - ArgumentNullException.ThrowIfNull(_rfc5646); - ArgumentNullException.ThrowIfNull(_unM49); - - // Generate code files - Log.Information("Generating code files ..."); - - Log.Information("Generating ISO 639-2 code ..."); - _iso6392CodeFile = Path.Combine(codeDirectory, nameof(Iso6392Data) + "Gen.cs"); - Log.Information("Writing ISO 639-2 code to {CodePath}", _iso6392CodeFile); - await _iso6392.SaveCodeAsync(_iso6392CodeFile).ConfigureAwait(false); - - Log.Information("Generating ISO 639-3 code ..."); - _iso6393CodeFile = Path.Combine(codeDirectory, nameof(Iso6393Data) + "Gen.cs"); - Log.Information("Writing ISO 639-3 code to {CodePath}", _iso6393CodeFile); - await _iso6393.SaveCodeAsync(_iso6393CodeFile).ConfigureAwait(false); - - Log.Information("Generating RFC 5646 code ..."); - _rfc5646CodeFile = Path.Combine(codeDirectory, nameof(Rfc5646Data) + "Gen.cs"); - Log.Information("Writing RFC 5646 code to {CodePath}", _rfc5646CodeFile); - await _rfc5646.SaveCodeAsync(_rfc5646CodeFile).ConfigureAwait(false); - - Log.Information("Generating UN M.49 code ..."); - _unM49CodeFile = Path.Combine(codeDirectory, nameof(UnM49Data) + "Gen.cs"); - Log.Information("Writing UN M.49 code to {CodePath}", _unM49CodeFile); - await _unM49.SaveCodeAsync(_unM49CodeFile).ConfigureAwait(false); - - Log.Information("Code files generated successfully."); - } - - private async Task DownloadFileAsync(Uri uri, string fileName) - { - ArgumentNullException.ThrowIfNull(uri); - ArgumentException.ThrowIfNullOrWhiteSpace(fileName); - - Log.Information("Downloading \"{Uri}\" to \"{FileName}\" ...", uri.ToString(), fileName); - - using Stream httpStream = await HttpClientFactory - .GetHttpClient() - .GetStreamAsync(uri, cancellationToken) - .ConfigureAwait(false); - - using FileStream fileStream = new( - fileName, - FileMode.Create, - FileAccess.Write, - FileShare.None, - 8192, - FileOptions.Asynchronous | FileOptions.SequentialScan - ); - - await httpStream.CopyToAsync(fileStream, cancellationToken).ConfigureAwait(false); - } -} diff --git a/LanguageTagsCreate/Extensions.cs b/LanguageTagsCreate/Extensions.cs deleted file mode 100644 index b7a4c34..0000000 --- a/LanguageTagsCreate/Extensions.cs +++ /dev/null @@ -1,64 +0,0 @@ -using System.Runtime.CompilerServices; - -namespace ptr727.LanguageTags.Create; - -internal static partial class LogExtensions -{ - extension(Serilog.ILogger logger) - { - internal bool LogAndPropagate( - Exception exception, - [CallerMemberName] string function = "unknown" - ) - { - logger.Error(exception, "{Function}", function); - return false; - } - - internal bool LogAndHandle( - Exception exception, - [CallerMemberName] string function = "unknown" - ) - { - logger.Error(exception, "{Function}", function); - return true; - } - - internal Serilog.ILogger LogOverrideContext() => logger.ForContext(); - } - - extension(Microsoft.Extensions.Logging.ILogger logger) - { - internal bool LogAndPropagate( - Exception exception, - [CallerMemberName] string function = "unknown" - ) - { - logger.LogCatchException(function, exception); - return false; - } - - internal bool LogAndHandle( - Exception exception, - [CallerMemberName] string function = "unknown" - ) - { - logger.LogCatchException(function, exception); - return true; - } - } - - [LoggerMessage(Message = "Exception in {Function}", Level = LogLevel.Error)] - internal static partial void LogCatchException( - this Microsoft.Extensions.Logging.ILogger logger, - string function, - Exception exception - ); - - [System.Diagnostics.CodeAnalysis.SuppressMessage( - "Design", - "CA1812:Avoid uninstantiated internal classes", - Justification = "Used as a type marker for Serilog context filtering" - )] - internal sealed class LogOverride; -} diff --git a/LanguageTagsCreate/GlobalUsings.cs b/LanguageTagsCreate/GlobalUsings.cs deleted file mode 100644 index 17a0a02..0000000 --- a/LanguageTagsCreate/GlobalUsings.cs +++ /dev/null @@ -1,5 +0,0 @@ -global using System.Collections.Frozen; -global using System.Globalization; -global using Microsoft.Extensions.Logging; -global using Serilog; -global using Serilog.Events; diff --git a/LanguageTagsCreate/HttpClientFactory.cs b/LanguageTagsCreate/HttpClientFactory.cs deleted file mode 100644 index da6063b..0000000 --- a/LanguageTagsCreate/HttpClientFactory.cs +++ /dev/null @@ -1,120 +0,0 @@ -using System.Net.Http.Headers; -using Microsoft.Extensions.Http.Resilience; -using Polly; -using Polly.CircuitBreaker; -using Polly.Retry; - -namespace ptr727.LanguageTags.Create; - -internal static class HttpClientFactory -{ - // Retry - private const int RetryMaxAttempts = 3; - private static readonly TimeSpan s_retryBaseDelay = TimeSpan.FromSeconds(1); - private static readonly TimeSpan s_retryMaxDelay = TimeSpan.FromSeconds(30); - - // Circuit breaker - private const double CircuitBreakerFailureRatio = 0.1; - private const int CircuitBreakerMinimumThroughput = 10; - private static readonly TimeSpan s_circuitBreakerSamplingDuration = TimeSpan.FromSeconds(60); - private static readonly TimeSpan s_circuitBreakerBreakDuration = TimeSpan.FromSeconds(30); - - // Connection pool - private static readonly TimeSpan s_connectionLifetime = TimeSpan.FromMinutes(15); - private static readonly TimeSpan s_connectionIdleTimeout = TimeSpan.FromMinutes(2); - - // HttpClient - private static readonly TimeSpan s_httpClientTimeout = TimeSpan.FromSeconds(120); - - private static readonly Lazy s_httpClient = new(CreateHttpClient); - - // Returns the shared singleton HttpClient; all callers share the connection pool and circuit breaker state. - internal static HttpClient GetHttpClient() => s_httpClient.Value; - - private static ResilienceHandler CreateResilienceHandler() => - new( - new ResiliencePipelineBuilder() - .AddRetry( - new RetryStrategyOptions - { - MaxRetryAttempts = RetryMaxAttempts, - BackoffType = DelayBackoffType.Exponential, - UseJitter = true, - Delay = s_retryBaseDelay, - MaxDelay = s_retryMaxDelay, - ShouldHandle = args => - ValueTask.FromResult(IsTransientFailure(args.Outcome)), - OnRetry = args => - { - Log.Logger.Warning( - "HTTP retry attempt {Attempt} after {Delay}ms: {Outcome}", - args.AttemptNumber, - args.RetryDelay.TotalMilliseconds, - args.Outcome - ); - return ValueTask.CompletedTask; - }, - } - ) - .AddCircuitBreaker( - new CircuitBreakerStrategyOptions - { - FailureRatio = CircuitBreakerFailureRatio, - MinimumThroughput = CircuitBreakerMinimumThroughput, - SamplingDuration = s_circuitBreakerSamplingDuration, - BreakDuration = s_circuitBreakerBreakDuration, - ShouldHandle = args => - ValueTask.FromResult(IsTransientFailure(args.Outcome)), - OnOpened = args => - { - Log.Logger.Warning( - "Circuit breaker opened for {Duration}s: {Outcome}", - args.BreakDuration.TotalSeconds, - args.Outcome - ); - return ValueTask.CompletedTask; - }, - OnClosed = _ => - { - Log.Logger.Information("Circuit breaker closed."); - return ValueTask.CompletedTask; - }, - OnHalfOpened = _ => - { - Log.Logger.Debug("Circuit breaker half-opened."); - return ValueTask.CompletedTask; - }, - } - ) - .Build() - ) - { - InnerHandler = new SocketsHttpHandler - { - PooledConnectionLifetime = s_connectionLifetime, - PooledConnectionIdleTimeout = s_connectionIdleTimeout, - AutomaticDecompression = System.Net.DecompressionMethods.All, - }, - }; - - private static bool IsTransientFailure(Outcome outcome) => - outcome.Exception is not null - ? outcome.Exception is not (OperationCanceledException or BrokenCircuitException) - : outcome.Result is not null && (int)outcome.Result.StatusCode is 408 or 429 or >= 500; - - // Creates a new HttpClient instance; each caller gets an independent resilience handler - // and circuit breaker state. Callers should store and reuse the returned instance. - [System.Diagnostics.CodeAnalysis.SuppressMessage( - "Reliability", - "CA2000:Dispose objects before losing scope", - Justification = "HttpClient takes ownership of the handler and disposes it when the client is disposed." - )] - internal static HttpClient CreateHttpClient() - { - HttpClient httpClient = new(CreateResilienceHandler()) { Timeout = s_httpClientTimeout }; - httpClient.DefaultRequestHeaders.UserAgent.Add( - new ProductInfoHeaderValue(AssemblyInfo.AppName, AssemblyInfo.ReleaseVersion) - ); - return httpClient; - } -} diff --git a/LanguageTagsCreate/LanguageTagsCreate.csproj b/LanguageTagsCreate/LanguageTagsCreate.csproj deleted file mode 100644 index 3900151..0000000 --- a/LanguageTagsCreate/LanguageTagsCreate.csproj +++ /dev/null @@ -1,28 +0,0 @@ - - - 1.0.0-pre - Exe - false - ptr727.LanguageTags.Create - 1.0.0 - - - true - true - true - - - - - - - - - - - - - - - - diff --git a/LanguageTagsCreate/LoggerFactory.cs b/LanguageTagsCreate/LoggerFactory.cs deleted file mode 100644 index 41ca455..0000000 --- a/LanguageTagsCreate/LoggerFactory.cs +++ /dev/null @@ -1,64 +0,0 @@ -using Serilog.Extensions.Logging; -using Serilog.Sinks.SystemConsole.Themes; - -namespace ptr727.LanguageTags.Create; - -internal static class LoggerFactory -{ - private static readonly Lazy s_serilogLoggerFactory = new(() => - { - // Use already configured Log.Logger if set, else create a new logger factory - Serilog.ILogger logger = ReferenceEquals(Log.Logger, Serilog.Core.Logger.None) - ? Create() - : Log.Logger; - bool disposeLogger = !ReferenceEquals(logger, Log.Logger); - return new SerilogLoggerFactory(logger, dispose: disposeLogger); - }); - - internal static Serilog.ILogger Create(Options? options = null) - { - // Log to the console - LoggerConfiguration loggerConfiguration = new LoggerConfiguration() - .MinimumLevel.Is(options?.Level ?? LogEventLevel.Information) - .MinimumLevel.Override( - typeof(LogExtensions.LogOverride).FullName!, - LogEventLevel.Verbose - ) - .Enrich.WithThreadId() - .Enrich.WithThreadName() - .WriteTo.Console( - theme: AnsiConsoleTheme.Code, - formatProvider: CultureInfo.InvariantCulture, - outputTemplate: "[{Timestamp:HH:mm:ss} {Level:u3}] [t:{ThreadId}{ThreadName}] {Message:lj}{NewLine}{Exception}" - ); - - // Log to file - if (!string.IsNullOrEmpty(options?.File)) - { - if (options.FileClear && File.Exists(options.File)) - { - File.Delete(options.File); - } - _ = loggerConfiguration.WriteTo.File( - options.File, - formatProvider: CultureInfo.InvariantCulture, - outputTemplate: "[{Timestamp:yyyy-MM-dd HH:mm:ss.fff zzz} {Level:u3}] [t:{ThreadId}{ThreadName}] {Message:lj}{NewLine}{Exception}" - ); - } - - // Create logger - return loggerConfiguration.CreateLogger(); - } - - internal static ILoggerFactory CreateLoggerFactory() => s_serilogLoggerFactory.Value; - - internal static Microsoft.Extensions.Logging.ILogger CreateLogger(string categoryName) => - s_serilogLoggerFactory.Value.CreateLogger(categoryName); - - internal sealed class Options - { - internal required LogEventLevel Level { get; init; } - internal required string File { get; init; } - internal required bool FileClear { get; init; } - } -} diff --git a/LanguageTagsCreate/Program.cs b/LanguageTagsCreate/Program.cs deleted file mode 100644 index 66e8812..0000000 --- a/LanguageTagsCreate/Program.cs +++ /dev/null @@ -1,82 +0,0 @@ -namespace ptr727.LanguageTags.Create; - -internal sealed class Program( - CommandLine.Options commandLineOptions, - CancellationToken cancellationToken -) -{ - private const string DataDirectory = "LanguageData"; - private const string CodeDirectory = "LanguageTags"; - - internal static async Task Main(string[] args) - { - try - { - // Parse commandline - CommandLine commandLine = new(args); - commandLine.Result.InvocationConfiguration.EnableDefaultExceptionHandler = false; - commandLine.Result.InvocationConfiguration.ProcessTerminationTimeout = null; - - // Bypass startup for errors or help and version commands - if (CommandLine.BypassStartup(commandLine.Result)) - { - return await commandLine.Result.InvokeAsync().ConfigureAwait(false); - } - - // Create logger - Log.Logger = LoggerFactory.Create( - commandLine.CreateOptions(commandLine.Result).LogOptions - ); - LogOptions.SetFactory(LoggerFactory.CreateLoggerFactory()); - - // Invoke command - Log.Logger.LogOverrideContext().Information("Starting: {Args}", args); - return await commandLine.Result.InvokeAsync().ConfigureAwait(false); - } - catch (Exception ex) when (Log.Logger.LogAndHandle(ex)) - { - return 1; - } - finally - { - await Log.CloseAndFlushAsync().ConfigureAwait(false); - } - } - - internal async Task ExecuteAsync() - { - try - { - // Data and code directories - string solutionDirectory = Path.GetFullPath(commandLineOptions.CodePath.FullName); - string dataDirectory = Path.Combine(solutionDirectory, DataDirectory); - string codeDirectory = Path.Combine(solutionDirectory, CodeDirectory); - if (!Directory.Exists(dataDirectory)) - { - Log.Error("Data directory does not exist: {DataDirectory}", dataDirectory); - return 1; - } - if (!Directory.Exists(codeDirectory)) - { - Log.Error("Code directory does not exist: {CodeDirectory}", codeDirectory); - return 1; - } - - // Download data files - CreateTagData createTagData = new(dataDirectory, codeDirectory, cancellationToken); - await createTagData.DownloadDataAsync().ConfigureAwait(false); - - // Convert data files to JSON - await createTagData.CreateJsonDataAsync().ConfigureAwait(false); - - // Generate code files - await createTagData.GenerateCodeAsync().ConfigureAwait(false); - - return 0; - } - catch (Exception ex) when (Log.Logger.LogAndHandle(ex)) - { - return 1; - } - } -} diff --git a/LanguageTagsTests/.editorconfig b/LanguageTagsTests/.editorconfig deleted file mode 100644 index 1b0e933..0000000 --- a/LanguageTagsTests/.editorconfig +++ /dev/null @@ -1,19 +0,0 @@ -root = false - -# C# files -[*.cs] - -# Allow underscores in test method names -dotnet_diagnostic.CA1707.severity = none - -# Ignore unused private members -dotnet_diagnostic.IDE0052.severity = none - -# Ignore expression value is never used -dotnet_diagnostic.IDE0058.severity = none - -# Ignore missing XML docs for public test APIs -dotnet_diagnostic.CS1591.severity = none - -# Ignore making public types internal -dotnet_diagnostic.CA1515.severity = none diff --git a/LanguageTagsTests/Fixture.cs b/LanguageTagsTests/Fixture.cs deleted file mode 100644 index 357c775..0000000 --- a/LanguageTagsTests/Fixture.cs +++ /dev/null @@ -1,23 +0,0 @@ -// Single instance for all tests in assembly -[assembly: AssemblyFixture(typeof(ptr727.LanguageTags.Tests.SingleInstanceFixture))] - -namespace ptr727.LanguageTags.Tests; - -// Sequential execution fixture -[CollectionDefinition("Sequential Test Collection", DisableParallelization = true)] -public class SequentialCollectionDefinition; - -[System.Diagnostics.CodeAnalysis.SuppressMessage( - "Design", - "CA1063:Implement IDisposable Correctly", - Justification = "No unmanaged resources to dispose" -)] -public class SingleInstanceFixture : IDisposable -{ - public void Dispose() => GC.SuppressFinalize(this); - - protected static string GetDataFilePath(string fileName) => - Path.GetFullPath( - Path.Combine(AppContext.BaseDirectory, "../../../../LanguageData", fileName) - ); -} diff --git a/LanguageTagsTests/GlobalUsings.cs b/LanguageTagsTests/GlobalUsings.cs deleted file mode 100644 index d85913e..0000000 --- a/LanguageTagsTests/GlobalUsings.cs +++ /dev/null @@ -1,2 +0,0 @@ -global using AwesomeAssertions; -global using Xunit; diff --git a/LanguageTagsTests/Iso6392Tests.cs b/LanguageTagsTests/Iso6392Tests.cs deleted file mode 100644 index c311251..0000000 --- a/LanguageTagsTests/Iso6392Tests.cs +++ /dev/null @@ -1,129 +0,0 @@ -namespace ptr727.LanguageTags.Tests; - -public sealed class Iso6392Tests : SingleInstanceFixture -{ - [Fact] - public void Create() - { - // Create full list of languages - Iso6392Data iso6392 = Iso6392Data.Create(); - _ = iso6392.RecordList.Length.Should().BeGreaterThan(0); - } - - [Fact] - public async Task FromData() - { - Iso6392Data iso6392 = await Iso6392Data.FromDataAsync( - GetDataFilePath(Iso6392Data.DataFileName) - ); - _ = iso6392.Should().NotBeNull(); - _ = iso6392.RecordList.Length.Should().BeGreaterThan(0); - } - - [Fact] - public async Task FromJson() - { - Iso6392Data iso6392 = await Iso6392Data.FromJsonAsync( - GetDataFilePath(Iso6392Data.DataFileName + ".json") - ); - _ = iso6392.Should().NotBeNull(); - _ = iso6392.RecordList.Length.Should().BeGreaterThan(0); - } - - [Fact] - public async Task Create_FromData_FromJson_RecordsMatch() - { - Iso6392Data created = Iso6392Data.Create(); - Iso6392Data fromData = await Iso6392Data.FromDataAsync( - GetDataFilePath(Iso6392Data.DataFileName) - ); - Iso6392Data fromJson = await Iso6392Data.FromJsonAsync( - GetDataFilePath(Iso6392Data.DataFileName + ".json") - ); - - _ = created.RecordList.Length.Should().BeGreaterThan(0); - _ = fromData.RecordList.Length.Should().BeGreaterThan(0); - _ = fromJson.RecordList.Length.Should().BeGreaterThan(0); - - _ = fromData.RecordList.Should().BeEquivalentTo(created.RecordList); - _ = fromJson.RecordList.Should().BeEquivalentTo(created.RecordList); - } - - [Fact] - public async Task SaveJsonAsync_RoundTrip() - { - Iso6392Data iso6392 = Iso6392Data.Create(); - _ = iso6392.RecordList.Length.Should().BeGreaterThan(0); - - string tempFile = Path.Combine(Path.GetTempPath(), $"{Guid.NewGuid()}.json"); - try - { - await iso6392.SaveJsonAsync(tempFile); - Iso6392Data roundTrip = await Iso6392Data.FromJsonAsync(tempFile); - _ = roundTrip.Should().NotBeNull(); - _ = roundTrip.RecordList.Length.Should().Be(iso6392.RecordList.Length); - } - finally - { - if (File.Exists(tempFile)) - { - File.Delete(tempFile); - } - } - } - - [Theory] - [InlineData("afr", false, "Afrikaans")] - [InlineData("af", false, "Afrikaans")] - [InlineData("zh", false, "Chinese")] - [InlineData("zho", false, "Chinese")] - [InlineData("chi", false, "Chinese")] - [InlineData("ger", false, "German")] - [InlineData("deu", false, "German")] - [InlineData("de", false, "German")] - [InlineData("cpe", false, "Creoles and pidgins, English based")] - [InlineData("zulu", true, "Zulu")] - [InlineData("700-300", true, "Official Aramaic (700-300 BCE); Imperial Aramaic (700-300 BCE)")] - public void Find_Pass(string input, bool description, string output) - { - // Create full list of languages - Iso6392Data iso6392 = Iso6392Data.Create(); - _ = iso6392.RecordList.Length.Should().BeGreaterThan(0); - - // Find matching language - Iso6392Record? record = iso6392.Find(input, description); - _ = record.Should().NotBeNull(); - _ = record.RefName.Should().BeEquivalentTo(output); - } - - [Theory] - [InlineData("xx")] - [InlineData("xxx")] - [InlineData("xxxx")] - public void Find_Fail(string input) - { - // Create full list of languages - Iso6392Data iso6392 = Iso6392Data.Create(); - _ = iso6392.RecordList.Length.Should().BeGreaterThan(0); - - // Fail to find matching language - Iso6392Record? record = iso6392.Find(input, false); - _ = record.Should().BeNull(); - } - - [Fact] - public void Find_Null_ReturnsNull() - { - Iso6392Data iso6392 = Iso6392Data.Create(); - Iso6392Record? record = iso6392.Find(null!, false); - _ = record.Should().BeNull(); - } - - [Fact] - public void Find_Empty_ReturnsNull() - { - Iso6392Data iso6392 = Iso6392Data.Create(); - Iso6392Record? record = iso6392.Find(string.Empty, false); - _ = record.Should().BeNull(); - } -} diff --git a/LanguageTagsTests/Iso6393Tests.cs b/LanguageTagsTests/Iso6393Tests.cs deleted file mode 100644 index bae6d67..0000000 --- a/LanguageTagsTests/Iso6393Tests.cs +++ /dev/null @@ -1,129 +0,0 @@ -namespace ptr727.LanguageTags.Tests; - -public sealed class Iso6393Tests : SingleInstanceFixture -{ - [Fact] - public void Create() - { - // Create full list of languages - Iso6393Data iso6393 = Iso6393Data.Create(); - _ = iso6393.RecordList.Length.Should().BeGreaterThan(0); - } - - [Fact] - public async Task FromData() - { - Iso6393Data iso6393 = await Iso6393Data.FromDataAsync( - GetDataFilePath(Iso6393Data.DataFileName) - ); - _ = iso6393.Should().NotBeNull(); - _ = iso6393.RecordList.Length.Should().BeGreaterThan(0); - } - - [Fact] - public async Task FromJson() - { - Iso6393Data iso6393 = await Iso6393Data.FromJsonAsync( - GetDataFilePath(Iso6393Data.DataFileName + ".json") - ); - _ = iso6393.Should().NotBeNull(); - _ = iso6393.RecordList.Length.Should().BeGreaterThan(0); - } - - [Fact] - public async Task Create_FromData_FromJson_RecordsMatch() - { - Iso6393Data created = Iso6393Data.Create(); - Iso6393Data fromData = await Iso6393Data.FromDataAsync( - GetDataFilePath(Iso6393Data.DataFileName) - ); - Iso6393Data fromJson = await Iso6393Data.FromJsonAsync( - GetDataFilePath(Iso6393Data.DataFileName + ".json") - ); - - _ = created.RecordList.Length.Should().BeGreaterThan(0); - _ = fromData.RecordList.Length.Should().BeGreaterThan(0); - _ = fromJson.RecordList.Length.Should().BeGreaterThan(0); - - _ = fromData.RecordList.Should().BeEquivalentTo(created.RecordList); - _ = fromJson.RecordList.Should().BeEquivalentTo(created.RecordList); - } - - [Fact] - public async Task SaveJsonAsync_RoundTrip() - { - Iso6393Data iso6393 = Iso6393Data.Create(); - _ = iso6393.RecordList.Length.Should().BeGreaterThan(0); - - string tempFile = Path.Combine(Path.GetTempPath(), $"{Guid.NewGuid()}.json"); - try - { - await iso6393.SaveJsonAsync(tempFile); - Iso6393Data roundTrip = await Iso6393Data.FromJsonAsync(tempFile); - _ = roundTrip.Should().NotBeNull(); - _ = roundTrip.RecordList.Length.Should().Be(iso6393.RecordList.Length); - } - finally - { - if (File.Exists(tempFile)) - { - File.Delete(tempFile); - } - } - } - - [Theory] - [InlineData("afr", false, "Afrikaans")] - [InlineData("af", false, "Afrikaans")] - [InlineData("zh", false, "Chinese")] - [InlineData("zho", false, "Chinese")] - [InlineData("chi", false, "Chinese")] - [InlineData("ger", false, "German")] - [InlineData("deu", false, "German")] - [InlineData("de", false, "German")] - [InlineData("yue", false, "Yue Chinese")] - [InlineData("zulu", true, "Zulu")] - [InlineData("chamí", true, "Emberá-Chamí")] - public void Find_Pass(string input, bool description, string output) - { - // Create full list of languages - Iso6393Data iso6393 = Iso6393Data.Create(); - _ = iso6393.RecordList.Length.Should().BeGreaterThan(0); - - // Find matching language - Iso6393Record? record = iso6393.Find(input, description); - _ = record.Should().NotBeNull(); - _ = record.RefName.Should().BeEquivalentTo(output); - } - - [Theory] - [InlineData("xx")] - [InlineData("xxx")] - [InlineData("xxxx")] - public void Find_Fail(string input) - { - // Create full list of languages - Iso6393Data iso6393 = Iso6393Data.Create(); - _ = iso6393.RecordList.Length.Should().BeGreaterThan(0); - - // Fail to find matching language - Iso6393Record? record = iso6393.Find(input, false); - _ = record.Should().BeNull(); - } - - [Fact] - public void Find_Null_ReturnsNull() - { - Iso6393Data iso6393 = Iso6393Data.Create(); - Iso6393Record? record = iso6393.Find(null!, false); - _ = record.Should().BeNull(); - } - - [Fact] - public void Find_Empty_ReturnsNull() - { - Iso6393Data iso6393 = Iso6393Data.Create(); - Iso6393Record? record = iso6393.Find(string.Empty, false); - _ = record.Should().BeNull(); - } -} diff --git a/LanguageTagsTests/LanguageLookupTests.cs b/LanguageTagsTests/LanguageLookupTests.cs deleted file mode 100644 index 2a311a9..0000000 --- a/LanguageTagsTests/LanguageLookupTests.cs +++ /dev/null @@ -1,172 +0,0 @@ -namespace ptr727.LanguageTags.Tests; - -public sealed class LanguageLookupTests : SingleInstanceFixture -{ - [Theory] - [InlineData("afr", "af")] - [InlineData("ger", "de")] - [InlineData("fre", "fr")] - [InlineData("eng", "en")] - [InlineData("dan", "da")] - [InlineData("cpe", "cpe")] - [InlineData("chi", "zh")] - [InlineData("zho", "zh")] - [InlineData("zxx", "zxx")] - [InlineData("und", "und")] - [InlineData("", "und")] - [InlineData("xxx", "und")] - [InlineData("custom_iso", "custom_ietf")] - public void GetIetfFromIso(string iso, string ietf) - { - LanguageLookup languageLookup = new(); - languageLookup.Overrides.Add(("custom_ietf", "custom_iso")); - _ = languageLookup.GetIetfFromIso(iso).Should().Be(ietf); - } - - [Theory] - [InlineData("af", "afr")] - [InlineData("de", "ger")] - [InlineData("fr", "fre")] - [InlineData("en", "eng")] - [InlineData("cpe", "cpe")] - [InlineData("zxx", "zxx")] - [InlineData("zh", "chi")] - [InlineData("zh-cmn-Hant", "chi")] - [InlineData("cmn-Hant", "chi")] - [InlineData("no-NO", "nor")] - [InlineData("", "und")] - [InlineData("und", "und")] - [InlineData("xxx", "und")] - [InlineData("custom_ietf", "custom_iso")] - public void GetIsoFromIetf(string ietf, string iso) - { - LanguageLookup languageLookup = new(); - languageLookup.Overrides.Add(("custom_ietf", "custom_iso")); - _ = languageLookup.GetIsoFromIetf(ietf).Should().Be(iso); - } - - [Theory] - [InlineData("en", "en", true)] - [InlineData("en", "en-US", true)] - [InlineData("en", "en-GB", true)] - [InlineData("en-GB", "en-GB", true)] - [InlineData("zh", "zh-cmn-Hant", true)] - [InlineData("zh", "cmn-Hant", true)] - [InlineData("sr-Latn", "sr-Latn-RS", true)] - [InlineData("zh", "en", false)] - [InlineData("zha", "zh-Hans", false)] - [InlineData("zh-Hant", "zh-Hans", false)] - public void IsMatch(string prefix, string tag, bool match) - { - LanguageLookup languageLookup = new(); - _ = languageLookup.IsMatch(prefix, tag).Should().Be(match); - } - - [Theory] - [InlineData("es-419", "es-MX", true)] // Mexico is in Latin America - [InlineData("es-MX", "es-419", false)] // Directional, not the reverse - [InlineData("es-419", "es-ES", false)] // Spain is not in Latin America - [InlineData("es-005", "es-AR", true)] // Argentina is in South America - [InlineData("es-013", "es-MX", true)] // Mexico is in Central America - [InlineData("es-419", "es-013", true)] // Central America is within Latin America - [InlineData("es-419", "es-419", true)] // Identity still matches - [InlineData("es-419", "fr-MX", false)] // Language must match - [InlineData("es-001", "es-MX", true)] // World contains every region - [InlineData("en", "en-US", true)] // Plain matching still works - [InlineData("es-Latn-419", "es-Latn-MX", true)] // Script is preserved - [InlineData("es-419", "es-MX-nedis", true)] // Broad group matches a more specific variant - [InlineData("es-419-nedis", "es-MX", false)] // Prefix variant must still match, no false positive - public void IsMatch_RegionContainment(string prefix, string tag, bool match) - { - LanguageLookup languageLookup = new(); - _ = languageLookup.IsMatch(prefix, tag, true).Should().Be(match); - } - - [Theory] - [InlineData("es-419", "es-MX")] // Containment is opt-in, plain matching does not expand regions - [InlineData("es-005", "es-AR")] - public void IsMatch_RegionContainment_Disabled_DoesNotMatch(string prefix, string tag) - { - LanguageLookup languageLookup = new(); - _ = languageLookup.IsMatch(prefix, tag).Should().BeFalse(); - _ = languageLookup.IsMatch(prefix, tag, false).Should().BeFalse(); - } - - [Fact] - public void ExpandRegion_Country_ReturnsContainmentChain() - { - LanguageLookup languageLookup = new(); - List expanded = [.. languageLookup.ExpandRegion("es-MX")]; - - // The original tag is always first, followed by the containing UN M.49 groups - _ = expanded[0].Should().Be("es-MX"); - _ = expanded.Should().Contain(["es-MX", "es-013", "es-419", "es-019", "es-001"]); - } - - [Theory] - [InlineData("es")] // No region to expand - [InlineData("es-MX-x-foo")] // Region present, private use preserved - public void ExpandRegion_AlwaysIncludesOriginal(string tag) - { - LanguageLookup languageLookup = new(); - _ = languageLookup.ExpandRegion(tag).Should().Contain(tag); - } - - [Theory] - [InlineData("en-US", "en-us", true)] - [InlineData("en-US", "EN-US", true)] - [InlineData("zh-Hans", "zh-hans", true)] - [InlineData("en-US", "en-GB", false)] - [InlineData("en", "fr", false)] - public void AreEquivalent_ComparesTagsCaseInsensitive( - string tag1, - string tag2, - bool expected - ) => _ = LanguageLookup.AreEquivalent(tag1, tag2).Should().Be(expected); - - [Theory] - [InlineData("en-latn-us", "en-US", true)] // Normalized tags match - [InlineData("zh-cmn-Hans-CN", "cmn-Hans-CN", true)] // Normalized tags match - [InlineData("en-US", "en-GB", false)] // Different regions - [InlineData("en", "fr", false)] // Different languages - public void AreEquivalentNormalized_NormalizesAndCompares( - string tag1, - string tag2, - bool expected - ) => _ = LanguageLookup.AreEquivalentNormalized(tag1, tag2).Should().Be(expected); - - [Fact] - public void Overrides_CanBeModified() - { - LanguageLookup languageLookup = new(); - _ = languageLookup.Overrides.Should().NotBeNull(); - _ = languageLookup.Overrides.Count.Should().Be(0); - - languageLookup.Overrides.Add(("custom_ietf", "custom_iso")); - _ = languageLookup.Overrides.Count.Should().Be(1); - } - - [Fact] - public void Undetermined_ConstantIsCorrect() => - _ = LanguageLookup.Undetermined.Should().Be("und"); - - [Fact] - public void IsMatch_ThrowsOnNullPrefix() - { - LanguageLookup languageLookup = new(); - _ = Assert - .Throws(() => languageLookup.IsMatch(null!, "en-US")) - .Should() - .NotBeNull(); - } - - [Fact] - public void IsMatch_ThrowsOnNullTag() - { - LanguageLookup languageLookup = new(); - _ = Assert - .Throws(() => languageLookup.IsMatch("en", null!)) - .Should() - .NotBeNull(); - } -} diff --git a/LanguageTagsTests/LanguageTagBuilderTests.cs b/LanguageTagsTests/LanguageTagBuilderTests.cs deleted file mode 100644 index cb91560..0000000 --- a/LanguageTagsTests/LanguageTagBuilderTests.cs +++ /dev/null @@ -1,187 +0,0 @@ -namespace ptr727.LanguageTags.Tests; - -public sealed class LanguageTagBuilderTests : SingleInstanceFixture -{ - [Fact] - public void Build_Pass() - { - // en-latn-gb-boont-r-extended-sequence-x-private - LanguageTag languageTag = new LanguageTagBuilder() - .Language("en") - .Script("latn") - .Region("gb") - .VariantAdd("boont") - .ExtensionAdd('r', ["extended", "sequence"]) - .PrivateUseAdd("private") - .Build(); - _ = languageTag.Validate().Should().BeTrue(); - _ = languageTag.ToString().Should().Be("en-latn-gb-boont-r-extended-sequence-x-private"); - - // en-a-bbb-x-a-ccc - languageTag = new LanguageTagBuilder() - .Language("en") - .ExtensionAdd('a', ["bbb"]) - .PrivateUseAddRange(["a", "ccc"]) - .Build(); - _ = languageTag.Validate().Should().BeTrue(); - _ = languageTag.ToString().Should().Be("en-a-bbb-x-a-ccc"); - - // en-b-ccc-a-bbb-aaa-x-ccc-a - languageTag = new LanguageTagBuilder() - .Language("en") - .ExtensionAdd('b', ["ccc"]) - .ExtensionAdd('a', ["bbb", "aaa"]) - .PrivateUseAddRange(["ccc", "a"]) - .Build(); - _ = languageTag.Validate().Should().BeTrue(); - _ = languageTag.ToString().Should().Be("en-b-ccc-a-bbb-aaa-x-ccc-a"); - - // zh - languageTag = new LanguageTagBuilder().Language("zh").Build(); - _ = languageTag.Validate().Should().BeTrue(); - _ = languageTag.ToString().Should().Be("zh"); - - // zh-yue - languageTag = new LanguageTagBuilder().Language("zh").ExtendedLanguage("yue").Build(); - _ = languageTag.Validate().Should().BeTrue(); - _ = languageTag.ToString().Should().Be("zh-yue"); - - // sr-latn - languageTag = new LanguageTagBuilder().Language("sr").Script("latn").Build(); - _ = languageTag.Validate().Should().BeTrue(); - _ = languageTag.ToString().Should().Be("sr-latn"); - - // x-all-private - languageTag = new LanguageTagBuilder().PrivateUseAddRange(["all", "private"]).Build(); - _ = languageTag.Validate().Should().BeTrue(); - _ = languageTag.ToString().Should().Be("x-all-private"); - } - - [Fact] - public void Normalize_Pass() - { - // en-Latn-GB-boont-r-extended-sequence-x-private - LanguageTag? languageTag = new LanguageTagBuilder() - .Language("en") - .Script("latn") - .Region("gb") - .VariantAdd("boont") - .ExtensionAdd('r', ["extended", "sequence"]) - .PrivateUseAdd("private") - .Normalize(); - _ = languageTag.Should().NotBeNull(); - _ = languageTag.Validate().Should().BeTrue(); - _ = languageTag.ToString().Should().Be("en-GB-boont-r-extended-sequence-x-private"); - - // sr-Latn - languageTag = new LanguageTagBuilder().Language("sr").Script("latn").Normalize(); - _ = languageTag.Should().NotBeNull(); - _ = languageTag.Validate().Should().BeTrue(); - _ = languageTag.ToString().Should().Be("sr-Latn"); - - // en-a-aaa-bbb-b-ccc-x-a-ccc - languageTag = new LanguageTagBuilder() - .Language("en") - .ExtensionAdd('b', ["ccc"]) // Add b before a to force a sort - .ExtensionAdd('a', ["bbb", "aaa"]) // Add bbb before aaa to force a sort - .PrivateUseAddRange(["ccc", "a"]) // Add ccc before a to force a sort - .Normalize(); - _ = languageTag.Should().NotBeNull(); - _ = languageTag.Validate().Should().BeTrue(); - _ = languageTag.ToString().Should().Be("en-a-aaa-bbb-b-ccc-x-a-ccc"); - } - - [Fact] - public void Build_Fail() - { - // Must have something - LanguageTag languageTag = new LanguageTagBuilder().Build(); - _ = languageTag.Validate().Should().BeFalse(); - - // Language 2-4 chars - languageTag = new LanguageTagBuilder().Language("a").Build(); - _ = languageTag.Validate().Should().BeFalse(); - languageTag = new LanguageTagBuilder().Language("abcdefghi").Build(); - _ = languageTag.Validate().Should().BeFalse(); - - // Extended Language 3 chars - languageTag = new LanguageTagBuilder().Language("en").ExtendedLanguage("ab").Build(); - _ = languageTag.Validate().Should().BeFalse(); - - // Script 4 chars - languageTag = new LanguageTagBuilder().Language("en").Script("abc").Build(); - _ = languageTag.Validate().Should().BeFalse(); - - // Region 2-3 chars - languageTag = new LanguageTagBuilder().Language("en").Region("a").Build(); - _ = languageTag.Validate().Should().BeFalse(); - - // Variant, 4+ chars start digit, 5+ chars start alpha - languageTag = new LanguageTagBuilder().Language("en").VariantAdd("abcd").Build(); - _ = languageTag.Validate().Should().BeFalse(); - languageTag = new LanguageTagBuilder().Language("en").VariantAdd("012").Build(); - _ = languageTag.Validate().Should().BeFalse(); - - // Extension prefix 1 char, not x - languageTag = new LanguageTagBuilder().Language("en").ExtensionAdd('x', ["abcd"]).Build(); - _ = languageTag.Validate().Should().BeFalse(); - - // Extension tags must not be whitespace - languageTag = new LanguageTagBuilder().Language("en").ExtensionAdd('a', [" "]).Build(); - _ = languageTag.Validate().Should().BeFalse(); - } - - [Fact] - public void VariantAddRange_AddsMultipleVariants() - { - LanguageTag languageTag = new LanguageTagBuilder() - .Language("en") - .VariantAddRange(["variant1", "variant2", "variant3"]) - .Build(); - - _ = languageTag.Variants.Length.Should().Be(3); - _ = languageTag.Variants[0].Should().Be("variant1"); - _ = languageTag.Variants[1].Should().Be("variant2"); - _ = languageTag.Variants[2].Should().Be("variant3"); - } - - [Fact] - public void VariantAddRange_ThrowsOnNull() - { - LanguageTagBuilder builder = new(); - _ = Assert - .Throws(() => builder.VariantAddRange(null!)) - .Should() - .NotBeNull(); - } - - [Fact] - public void ExtensionAdd_ThrowsOnNull() - { - LanguageTagBuilder builder = new(); - _ = Assert - .Throws(() => builder.ExtensionAdd('u', null!)) - .Should() - .NotBeNull(); - } - - [Fact] - public void ExtensionAdd_ThrowsOnEmpty() - { - LanguageTagBuilder builder = new(); - _ = Assert - .Throws(() => builder.ExtensionAdd('u', [])) - .Should() - .NotBeNull(); - } - - [Fact] - public void PrivateUseAddRange_ThrowsOnNull() - { - LanguageTagBuilder builder = new(); - _ = Assert - .Throws(() => builder.PrivateUseAddRange(null!)) - .Should() - .NotBeNull(); - } -} diff --git a/LanguageTagsTests/LanguageTagParserTests.cs b/LanguageTagsTests/LanguageTagParserTests.cs deleted file mode 100644 index 47a23b0..0000000 --- a/LanguageTagsTests/LanguageTagParserTests.cs +++ /dev/null @@ -1,149 +0,0 @@ -namespace ptr727.LanguageTags.Tests; - -public class LanguageTagParserTests : SingleInstanceFixture -{ - [Theory] - [InlineData("en-latn-gb-boont-r-extended-sequence-x-private")] - [InlineData("en-a-bbb-x-a-ccc")] - [InlineData("zh-cmn-hant")] - [InlineData("sgn-us")] - [InlineData("en-latn")] - [InlineData("x-all-private")] - [InlineData("x-a-private")] - public void Parse_Pass(string tag) - { - LanguageTag? languageTag = new LanguageTagParser().Parse(tag); - _ = languageTag.Should().NotBeNull(); - _ = languageTag.Validate().Should().BeTrue(); - _ = languageTag.ToString().Should().Be(tag); - } - - [Theory] - [InlineData("en-gb-oed", "en-GB-oxendict")] - [InlineData("i-navajo", "nv")] - [InlineData("no-bok", "nb")] - [InlineData("art-lojban", "jbo")] - [InlineData("zh-min-nan", "nan")] - public void Normalize_Grandfathered_Pass(string tag, string parsed) - { - LanguageTag? languageTag = new LanguageTagParser().Normalize(tag); - _ = languageTag.Should().NotBeNull(); - _ = languageTag.Validate().Should().BeTrue(); - _ = languageTag.ToString().Should().Be(parsed); - } - - [Theory] - [InlineData("en-gb-oed", "en-GB-oxendict")] - [InlineData("sl-afb-latn-005-nedis", "sl-afb-005-nedis")] // Suppress script - [InlineData("ar-arb-latn-de-nedis-foobar", "arb-Latn-DE-foobar-nedis")] - [InlineData( - "en-latn-gb-boont-r-extended-sequence-x-private", - "en-GB-boont-r-extended-sequence-x-private" // Suppress script - )] - public void Normalize_Case_Pass(string tag, string parsed) - { - LanguageTag? languageTag = new LanguageTagParser().Normalize(tag); - _ = languageTag.Should().NotBeNull(); - _ = languageTag.Validate().Should().BeTrue(); - _ = languageTag.ToString().Should().Be(parsed); - } - - [Theory] - [InlineData("sl-afb-latn-005-nedis", "sl-afb-005-nedis")] // Suppress script - [InlineData("ar-arb-latn-de-nedis-foobar", "arb-Latn-DE-foobar-nedis")] - [InlineData( - "en-latn-gb-boont-r-extended-sequence-x-private", - "en-GB-boont-r-extended-sequence-x-private" // Suppress script - )] - public void Normalize_Object(string tag, string parsed) - { - LanguageTag? languageTag = new LanguageTagParser().Parse(tag); - _ = languageTag.Should().NotBeNull(); - _ = languageTag.Validate().Should().BeTrue(); - _ = languageTag.ToString().Should().NotBe(parsed); - - LanguageTag? normalizeTag = new LanguageTagParser().Normalize(languageTag); - _ = normalizeTag.Should().NotBeNull(); - _ = normalizeTag.Should().NotBe(languageTag); - _ = normalizeTag.Validate().Should().BeTrue(); - _ = normalizeTag.ToString().Should().Be(parsed); - } - - [Theory] - [InlineData( - "en-latn-gb-boont-b-bbbbb-aaaaa-a-ccccc-bbbbb-x-ddddd-bbbbb", - "en-GB-boont-a-bbbbb-ccccc-b-aaaaa-bbbbb-x-bbbbb-ddddd" // Suppress script - )] - public void Normalize_Sort_Pass(string tag, string parsed) - { - LanguageTag? languageTag = new LanguageTagParser().Normalize(tag); - _ = languageTag.Should().NotBeNull(); - _ = languageTag.Validate().Should().BeTrue(); - _ = languageTag.ToString().Should().Be(parsed); - } - - [Theory] - [InlineData("")] // Empty string - [InlineData("i")] // Too short - [InlineData("abcdefghi")] // Too long - [InlineData("en--gb")] // Empty tag - [InlineData("en-€-extension")] // Non-ASCII - [InlineData("a-extension")] // Only start with x or grandfathered - [InlineData("en-gb-x")] // Private must have parts - [InlineData("x")] // Private missing - [InlineData("x-abcdefghi")] // Private too long - [InlineData("en-gb-abcde-abcde")] // Variant repeats - [InlineData("en-gb-a-abcd-a-abcde")] // Extension prefix repeats - [InlineData("en-gb-a-abcd-abcd")] // Extension tag repeats - [InlineData("en-a- ")] // Extension tag whitespace - [InlineData("en-gb-x-abcd-x-abcd")] // Private prefix repeats - [InlineData("en-gb-x-abcd-abcd")] // Private tag repeats - public void Parse_Fail(string tag) => _ = new LanguageTagParser().Parse(tag).Should().BeNull(); - - [Theory] - [InlineData("iw", "he")] // Type = Language, SubTag = iw, PreferredValue = he - [InlineData("in", "id")] // Type = Language, SubTag = in, PreferredValue = id - public void Normalize_Language(string tag, string normalized) - { - LanguageTag? languageTag = new LanguageTagParser().Normalize(tag); - _ = languageTag.Should().NotBeNull(); - _ = languageTag.Validate().Should().BeTrue(); - _ = languageTag.ToString().Should().Be(normalized); - } - - [Theory] - [InlineData("ar-afb", "afb")] // Extended language, SubTag = afb, Prefix = ar, PreferredValue = afb - [InlineData("zh-yue", "yue")] // Extended language, SubTag = yue, Prefix = zh, PreferredValue = yue - public void Normalize_Extended_Language(string tag, string normalized) - { - LanguageTag? languageTag = new LanguageTagParser().Normalize(tag); - _ = languageTag.Should().NotBeNull(); - _ = languageTag.Validate().Should().BeTrue(); - _ = languageTag.ToString().Should().Be(normalized); - } - - [Theory] - [InlineData("zh-cmn-hant", "cmn-Hant")] // Type = Redundant, Tag = zh-cmn-Hant, PreferredValue = cmn-Hant - [InlineData("sgn-us", "ase")] // Type = Redundant, Tag = sgn-US, PreferredValue = ase - [InlineData("sgn-br", "bzs")] // Type = Redundant, Tag = sgn-BR, PreferredValue = bzs - [InlineData("de-ch-1901", "de-CH-1901")] // Type = Redundant, Tag = de-CH-1901, PreferredValue = ? - [InlineData("iu-latn", "iu-Latn")] // Type = Redundant, Tag = iu-Latn, PreferredValue = ? - public void Normalize_Redundant(string tag, string normalized) - { - LanguageTag? languageTag = new LanguageTagParser().Normalize(tag); - _ = languageTag.Should().NotBeNull(); - _ = languageTag.Validate().Should().BeTrue(); - _ = languageTag.ToString().Should().Be(normalized); - } - - [Theory] - [InlineData("af-latn", "af")] // Type = Language, SubTag = af, SuppressScript = Latn - [InlineData("en-latn", "en")] // Type = Language, SubTag = en, SuppressScript = Latn - public void Normalize_Suppress_Script(string tag, string normalized) - { - LanguageTag? languageTag = new LanguageTagParser().Normalize(tag); - _ = languageTag.Should().NotBeNull(); - _ = languageTag.Validate().Should().BeTrue(); - _ = languageTag.ToString().Should().Be(normalized); - } -} diff --git a/LanguageTagsTests/LanguageTagTests.cs b/LanguageTagsTests/LanguageTagTests.cs deleted file mode 100644 index e589483..0000000 --- a/LanguageTagsTests/LanguageTagTests.cs +++ /dev/null @@ -1,619 +0,0 @@ -using System.Collections.Immutable; - -namespace ptr727.LanguageTags.Tests; - -public class LanguageTagTests : SingleInstanceFixture -{ - [Theory] - [InlineData("en-US")] - [InlineData("zh-Hans-CN")] - [InlineData("en-latn-gb-boont-r-extended-sequence-x-private")] - [InlineData("x-all-private")] - public void Parse_Static_Pass(string tag) - { - LanguageTag? languageTag = LanguageTag.Parse(tag); - _ = languageTag.Should().NotBeNull(); - _ = languageTag.Validate().Should().BeTrue(); - _ = languageTag.ToString().Should().Be(tag); - } - - [Theory] - [InlineData("")] // Empty string - [InlineData("i")] // Too short - [InlineData("abcdefghi")] // Too long - [InlineData("en--gb")] // Empty tag - [InlineData("en-€-extension")] // Non-ASCII - [InlineData("a-extension")] // Only start with x or grandfathered - [InlineData("en-gb-x")] // Private must have parts - public void Parse_Static_ReturnsNull(string tag) - { - LanguageTag? languageTag = LanguageTag.Parse(tag); - _ = languageTag.Should().BeNull(); - } - - [Theory] - [InlineData("en-US")] - [InlineData("zh-Hans-CN")] - [InlineData("en-latn-gb-boont-r-extended-sequence-x-private")] - public void TryParse_Success(string tag) - { - bool result = LanguageTag.TryParse(tag, out LanguageTag? languageTag); - _ = result.Should().BeTrue(); - _ = languageTag.Should().NotBeNull(); - _ = languageTag.Validate().Should().BeTrue(); - _ = languageTag.ToString().Should().Be(tag); - } - - [Theory] - [InlineData("")] // Empty string - [InlineData("i")] // Too short - [InlineData("abcdefghi")] // Too long - [InlineData("en--gb")] // Empty tag - [InlineData("en-€-extension")] // Non-ASCII - [InlineData("a-extension")] // Only start with x or grandfathered - [InlineData("en-gb-x")] // Private must have parts - [InlineData("x")] // Private missing - public void TryParse_Failure(string tag) - { - bool result = LanguageTag.TryParse(tag, out LanguageTag? languageTag); - _ = result.Should().BeFalse(); - _ = languageTag.Should().BeNull(); - } - - [Fact] - public void CreateBuilder_Pass() - { - LanguageTagBuilder builder = LanguageTag.CreateBuilder(); - _ = builder.Should().NotBeNull(); - - LanguageTag languageTag = builder.Language("en").Region("US").Build(); - - _ = languageTag.Should().NotBeNull(); - _ = languageTag.Validate().Should().BeTrue(); - _ = languageTag.ToString().Should().Be("en-US"); - } - - [Theory] - [InlineData( - "en-latn-gb-boont-r-extended-sequence-x-private", - "en-GB-boont-r-extended-sequence-x-private" - )] - [InlineData("ar-arb-latn-de-nedis-foobar", "arb-Latn-DE-foobar-nedis")] - public void Normalize_Instance_Pass(string tag, string normalized) - { - LanguageTag? languageTag = LanguageTag.Parse(tag); - _ = languageTag.Should().NotBeNull(); - - LanguageTag? normalizedTag = languageTag.Normalize(); - _ = normalizedTag.Should().NotBeNull(); - _ = normalizedTag.Validate().Should().BeTrue(); - _ = normalizedTag.ToString().Should().Be(normalized); - } - - [Fact] - public void CreateBuilder_Fluent_Pass() - { - LanguageTag languageTag = LanguageTag - .CreateBuilder() - .Language("en") - .Script("latn") - .Region("gb") - .VariantAdd("boont") - .ExtensionAdd('r', ["extended", "sequence"]) - .PrivateUseAdd("private") - .Build(); - - _ = languageTag.Should().NotBeNull(); - _ = languageTag.Validate().Should().BeTrue(); - _ = languageTag.ToString().Should().Be("en-latn-gb-boont-r-extended-sequence-x-private"); - } - - [Fact] - public void Parse_Normalize_Roundtrip() - { - string original = "en-latn-gb-boont"; - - LanguageTag? parsed = LanguageTag.Parse(original); - _ = parsed.Should().NotBeNull(); - - LanguageTag? normalized = parsed.Normalize(); - _ = normalized.Should().NotBeNull(); - _ = normalized.ToString().Should().Be("en-GB-boont"); - - bool success = LanguageTag.TryParse(normalized.ToString(), out LanguageTag? reparsed); - _ = success.Should().BeTrue(); - _ = reparsed!.ToString().Should().Be(normalized.ToString()); - } - - [Theory] - [InlineData("en-US", "en-US")] - [InlineData("invalid-tag", "und")] - [InlineData("", "und")] - public void ParseOrDefault_WithNoDefaultTag_ReturnsExpected(string tag, string expected) - { - LanguageTag result = LanguageTag.ParseOrDefault(tag); - _ = result.Should().NotBeNull(); - _ = result.ToString().Should().Be(expected); - } - - [Fact] - public void ParseOrDefault_WithCustomDefaultTag_ReturnsCustomDefault() - { - LanguageTag? customDefault = LanguageTag.Parse("en-US"); - LanguageTag result = LanguageTag.ParseOrDefault("invalid-tag", customDefault); - _ = result.Should().NotBeNull(); - _ = result.ToString().Should().Be("en-US"); - } - - [Theory] - [InlineData("en-latn-us", "en-US")] - [InlineData("zh-cmn-Hans-CN", "cmn-Hans-CN")] - public void ParseAndNormalize_ValidTag_ReturnsNormalized(string tag, string expected) - { - LanguageTag? result = LanguageTag.ParseAndNormalize(tag); - _ = result.Should().NotBeNull(); - _ = result.ToString().Should().Be(expected); - } - - [Fact] - public void ParseAndNormalize_InvalidTag_ReturnsNull() - { - LanguageTag? result = LanguageTag.ParseAndNormalize("invalid-tag"); - _ = result.Should().BeNull(); - } - - [Fact] - public void IsValid_Property_ValidTag_ReturnsTrue() - { - LanguageTag? tag = LanguageTag.Parse("en-US"); - _ = tag.Should().NotBeNull(); - _ = tag.IsValid.Should().BeTrue(); - } - - [Theory] - [InlineData("en")] - [InlineData("zh")] - [InlineData("cmn")] - public void FromLanguage_CreatesSimpleTag(string language) - { - LanguageTag tag = LanguageTag.FromLanguage(language); - _ = tag.Should().NotBeNull(); - _ = tag.Language.Should().Be(language); - _ = tag.ToString().Should().Be(language); - _ = tag.IsValid.Should().BeTrue(); - } - - [Theory] - [InlineData("en", "US", "en-US")] - [InlineData("zh", "CN", "zh-CN")] - [InlineData("fr", "FR", "fr-FR")] - public void FromLanguageRegion_CreatesLanguageRegionTag( - string language, - string region, - string expected - ) - { - LanguageTag tag = LanguageTag.FromLanguageRegion(language, region); - _ = tag.Should().NotBeNull(); - _ = tag.Language.Should().Be(language); - _ = tag.Region.Should().Be(region); - _ = tag.ToString().Should().Be(expected); - _ = tag.IsValid.Should().BeTrue(); - } - - [Theory] - [InlineData("zh", "Hans", "CN", "zh-Hans-CN")] - [InlineData("zh", "Hant", "TW", "zh-Hant-TW")] - [InlineData("en", "Latn", "GB", "en-Latn-GB")] - public void FromLanguageScriptRegion_CreatesFullTag( - string language, - string script, - string region, - string expected - ) - { - LanguageTag tag = LanguageTag.FromLanguageScriptRegion(language, script, region); - _ = tag.Should().NotBeNull(); - _ = tag.Language.Should().Be(language); - _ = tag.Script.Should().Be(script); - _ = tag.Region.Should().Be(region); - _ = tag.ToString().Should().Be(expected); - _ = tag.IsValid.Should().BeTrue(); - } - - [Fact] - public void Equals_SameTags_ReturnsTrue() - { - LanguageTag? tag1 = LanguageTag.Parse("en-US"); - LanguageTag? tag2 = LanguageTag.Parse("en-us"); // Case insensitive - - _ = tag1.Should().NotBeNull(); - _ = tag2.Should().NotBeNull(); - _ = tag1.Equals(tag2).Should().BeTrue(); - _ = tag1.Equals((object?)tag2).Should().BeTrue(); - } - - [Fact] - public void Equals_DifferentTags_ReturnsFalse() - { - LanguageTag? tag1 = LanguageTag.Parse("en-US"); - LanguageTag? tag2 = LanguageTag.Parse("en-GB"); - - _ = tag1.Should().NotBeNull(); - _ = tag2.Should().NotBeNull(); - _ = tag1.Equals(tag2).Should().BeFalse(); - } - - [Fact] - public void Equals_NullTag_ReturnsFalse() - { - LanguageTag tag = LanguageTag.Parse("en-US")!; - _ = tag.Equals(null).Should().BeFalse(); - // tag is non-null; ! avoids a CS8602 false-positive on the Equals(object?) receiver. - _ = tag!.Equals((object?)null).Should().BeFalse(); - } - - [Fact] - public void GetHashCode_SameTags_ReturnsSameHashCode() - { - LanguageTag tag1 = LanguageTag.Parse("en-US")!; - LanguageTag tag2 = LanguageTag.Parse("en-us")!; - - _ = tag1.GetHashCode().Should().Be(tag2.GetHashCode()); - } - - [Fact] - public void OperatorEquals_SameTags_ReturnsTrue() - { - LanguageTag tag1 = LanguageTag.Parse("en-US")!; - LanguageTag tag2 = LanguageTag.Parse("en-us")!; - - _ = (tag1 == tag2).Should().BeTrue(); - } - - [Fact] - public void OperatorEquals_DifferentTags_ReturnsFalse() - { - LanguageTag tag1 = LanguageTag.Parse("en-US")!; - LanguageTag tag2 = LanguageTag.Parse("en-GB")!; - - _ = (tag1 == tag2).Should().BeFalse(); - } - - [Fact] - [System.Diagnostics.CodeAnalysis.SuppressMessage( - "Maintainability", - "CA1508:Avoid dead conditional code", - Justification = "Test intentionally compares two null tags to exercise operator== with both operands null." - )] - public void OperatorEquals_BothNull_ReturnsTrue() - { - LanguageTag? tag1 = null; - LanguageTag? tag2 = null; - - _ = (tag1 == tag2).Should().BeTrue(); - } - - [Fact] - public void OperatorEquals_OneNull_ReturnsFalse() - { - LanguageTag? tag1 = LanguageTag.Parse("en-US"); - LanguageTag? tag2 = null; - - _ = (tag1 == tag2).Should().BeFalse(); - _ = (tag2 == tag1).Should().BeFalse(); - } - - [Fact] - public void OperatorNotEquals_SameTags_ReturnsFalse() - { - LanguageTag? tag1 = LanguageTag.Parse("en-US"); - LanguageTag? tag2 = LanguageTag.Parse("en-us"); - - _ = (tag1 != tag2).Should().BeFalse(); - } - - [Fact] - public void OperatorNotEquals_DifferentTags_ReturnsTrue() - { - LanguageTag? tag1 = LanguageTag.Parse("en-US"); - LanguageTag? tag2 = LanguageTag.Parse("en-GB"); - - _ = (tag1 != tag2).Should().BeTrue(); - } - - [Fact] - public void Variants_Property_ReturnsImmutableArray() - { - LanguageTag tag = LanguageTag - .CreateBuilder() - .Language("en") - .VariantAdd("variant1") - .VariantAdd("variant2") - .Build(); - - ImmutableArray variants = tag.Variants; - _ = variants.Length.Should().Be(2); - _ = variants[0].Should().Be("variant1"); - _ = variants[1].Should().Be("variant2"); - } - - [Fact] - public void Extensions_Property_ReturnsImmutableArray() - { - LanguageTag tag = LanguageTag - .CreateBuilder() - .Language("en") - .ExtensionAdd('u', ["ca", "buddhist"]) - .ExtensionAdd('r', ["extended"]) - .Build(); - - ImmutableArray extensions = tag.Extensions; - _ = extensions.Length.Should().Be(2); - _ = extensions[0].Prefix.Should().Be('u'); - _ = extensions[1].Prefix.Should().Be('r'); - } - - [Fact] - public void PrivateUse_Property_ReturnsPrivateUseTag() - { - LanguageTag tag = LanguageTag - .CreateBuilder() - .Language("en") - .PrivateUseAdd("private1") - .PrivateUseAdd("private2") - .Build(); - - _ = tag.PrivateUse.Should().NotBeNull(); - _ = tag.PrivateUse.Tags.Length.Should().Be(2); - _ = tag.PrivateUse.Tags[0].Should().Be("private1"); - _ = tag.PrivateUse.Tags[1].Should().Be("private2"); - } - - [Fact] - public void ExtensionTag_ToString_FormatsCorrectly() - { - LanguageTag tag = LanguageTag - .CreateBuilder() - .Language("en") - .ExtensionAdd('u', ["ca", "buddhist"]) - .Build(); - - ExtensionTag extension = tag.Extensions[0]; - _ = extension.ToString().Should().Be("u-ca-buddhist"); - } - - [Fact] - public void PrivateUseTag_ToString_FormatsCorrectly() - { - LanguageTag tag = LanguageTag - .CreateBuilder() - .Language("en") - .PrivateUseAdd("private1") - .PrivateUseAdd("private2") - .Build(); - - _ = tag.PrivateUse.ToString().Should().Be("x-private1-private2"); - } - - [Fact] - public void PrivateUseTag_Prefix_IsX() => _ = PrivateUseTag.Prefix.Should().Be('x'); - - // Additional edge case tests for comprehensive coverage - - [Fact] - public void Parse_NullInput_ReturnsNull() - { - LanguageTag? result = LanguageTag.Parse(null!); - _ = result.Should().BeNull(); - } - - [Theory] - [InlineData("en")] - [InlineData("en-US")] - [InlineData("zh-Hans-CN")] - public void LanguageTag_PropertiesAreReadable(string tag) - { - LanguageTag? languageTag = LanguageTag.Parse(tag); - _ = languageTag.Should().NotBeNull(); - - // Verify all properties are accessible - _ = languageTag.Language.Should().NotBeNull(); - _ = languageTag.ExtendedLanguage.Should().NotBeNull(); - _ = languageTag.Script.Should().NotBeNull(); - _ = languageTag.Region.Should().NotBeNull(); - _ = languageTag.Variants.Should().NotBeNull(); - _ = languageTag.Extensions.Should().NotBeNull(); - _ = languageTag.PrivateUse.Should().NotBeNull(); - } - - [Fact] - public void ExtensionTag_Tags_ReturnsImmutableArray() - { - LanguageTag tag = LanguageTag - .CreateBuilder() - .Language("en") - .ExtensionAdd('u', ["ca", "buddhist", "nu", "thai"]) - .Build(); - - ExtensionTag extension = tag.Extensions[0]; - _ = extension.Tags.Length.Should().Be(4); - _ = extension.Tags[0].Should().Be("ca"); - _ = extension.Tags[1].Should().Be("buddhist"); - _ = extension.Tags[2].Should().Be("nu"); - _ = extension.Tags[3].Should().Be("thai"); - } - - [Fact] - public void Equals_SameInstance_ReturnsTrue() - { - LanguageTag tag = LanguageTag.Parse("en-US")!; - _ = tag.Equals(tag).Should().BeTrue(); - } - - [Theory] - [InlineData("en-US", "en-us")] - [InlineData("zh-Hans-CN", "zh-hans-cn")] - [InlineData("en-GB-boont", "EN-gb-BOONT")] - public void Equals_CaseInsensitive_ReturnsTrue(string tag1Str, string tag2Str) - { - LanguageTag tag1 = LanguageTag.Parse(tag1Str)!; - LanguageTag tag2 = LanguageTag.Parse(tag2Str)!; - - _ = tag1.Equals(tag2).Should().BeTrue(); - _ = (tag1 == tag2).Should().BeTrue(); - _ = tag1.GetHashCode().Should().Be(tag2.GetHashCode()); - } - - [Fact] - public void ParseOrDefault_NullTag_ReturnsUndetermined() - { - LanguageTag result = LanguageTag.ParseOrDefault(null!); - _ = result.ToString().Should().Be("und"); - } - - [Fact] - public void ParseAndNormalize_NullTag_ReturnsNull() - { - LanguageTag? result = LanguageTag.ParseAndNormalize(null!); - _ = result.Should().BeNull(); - } - - [Fact] - public void TryParse_NullTag_ReturnsFalse() - { - bool result = LanguageTag.TryParse(null!, out LanguageTag? languageTag); - _ = result.Should().BeFalse(); - _ = languageTag.Should().BeNull(); - } - - [Theory] - [InlineData("en", 0)] - [InlineData("en-US", 0)] - [InlineData("zh-Hans", 0)] - public void LanguageTag_EmptyCollections_HaveZeroLength(string tag, int emptyCount) - { - LanguageTag languageTag = LanguageTag.Parse(tag)!; - - if ( - string.IsNullOrEmpty(languageTag.Script) - && string.IsNullOrEmpty(languageTag.ExtendedLanguage) - ) - { - _ = languageTag.Variants.Length.Should().Be(emptyCount); - _ = languageTag.Extensions.Length.Should().Be(emptyCount); - } - } - - [Fact] - public void FromLanguage_EmptyString_CreatesTag() - { - LanguageTag tag = LanguageTag.FromLanguage(string.Empty); - _ = tag.Should().NotBeNull(); - // Note: This creates an invalid tag, but the factory method doesn't validate - } - - [Fact] - public void Validate_ComplexValidTag_ReturnsTrue() - { - LanguageTag tag = LanguageTag - .CreateBuilder() - .Language("en") - .ExtendedLanguage("esl") - .Script("Latn") - .Region("US") - .VariantAdd("variant1") - .VariantAdd("variant2") - .ExtensionAdd('u', ["ca", "buddhist"]) - .ExtensionAdd('t', ["en", "us"]) - .PrivateUseAdd("private1") - .Build(); - - _ = tag.IsValid.Should().BeTrue(); - _ = tag.Validate().Should().BeTrue(); - } - - [Fact] - public void ExtensionTag_DefaultConstructor_CreatesEmptyTag() - { - ExtensionTag extension = new(); - _ = extension.Prefix.Should().Be('\0'); - _ = extension.Tags.IsEmpty.Should().BeTrue(); - } - - [Fact] - public void ExtensionTag_EmptyTags_ToStringReturnsEmpty() - { - ExtensionTag extension = new('u', []); - _ = extension.ToString().Should().Be(string.Empty); - } - - [Fact] - public void ExtensionTag_EnumerableConstructor_CreatesTag() - { - List tags = ["tag1", "tag2", "tag3"]; - ExtensionTag extension = new('u', tags); - - _ = extension.Prefix.Should().Be('u'); - _ = extension.Tags.Length.Should().Be(3); - _ = extension.Tags[0].Should().Be("tag1"); - _ = extension.Tags[1].Should().Be("tag2"); - _ = extension.Tags[2].Should().Be("tag3"); - } - - [Fact] - public void ExtensionTag_RecordEquality_WorksCorrectly() - { - ExtensionTag ext1 = new('u', ["ca", "buddhist"]); - ExtensionTag ext2 = new('U', ["CA", "BUDDHIST"]); - ExtensionTag ext3 = new('t', ["ca", "buddhist"]); - - _ = ext1.Equals(ext2).Should().BeTrue(); - _ = (ext1 == ext2).Should().BeTrue(); - _ = ext1.GetHashCode().Should().Be(ext2.GetHashCode()); - - _ = ext1.Equals(ext3).Should().BeFalse(); - _ = (ext1 != ext3).Should().BeTrue(); - } - - [Fact] - public void PrivateUseTag_DefaultConstructor_CreatesEmptyTag() - { - PrivateUseTag privateUse = new(); - _ = privateUse.Tags.IsEmpty.Should().BeTrue(); - _ = privateUse.ToString().Should().Be(string.Empty); - } - - [Fact] - public void PrivateUseTag_EnumerableConstructor_CreatesTag() - { - List tags = ["private1", "private2"]; - PrivateUseTag privateUse = new(tags); - - _ = privateUse.Tags.Length.Should().Be(2); - _ = privateUse.Tags[0].Should().Be("private1"); - _ = privateUse.Tags[1].Should().Be("private2"); - } - - [Fact] - public void PrivateUseTag_RecordEquality_WorksCorrectly() - { - PrivateUseTag priv1 = new(["private1", "private2"]); - PrivateUseTag priv2 = new(["PRIVATE1", "PRIVATE2"]); - PrivateUseTag priv3 = new(["other"]); - - _ = priv1.Equals(priv2).Should().BeTrue(); - _ = (priv1 == priv2).Should().BeTrue(); - _ = priv1.GetHashCode().Should().Be(priv2.GetHashCode()); - - _ = priv1.Equals(priv3).Should().BeFalse(); - _ = (priv1 != priv3).Should().BeTrue(); - } - - [Fact] - public void PrivateUseTag_EmptyTag_ToStringReturnsEmpty() - { - PrivateUseTag privateUse = new(); - _ = privateUse.ToString().Should().Be(string.Empty); - } -} diff --git a/LanguageTagsTests/LanguageTagsTests.csproj b/LanguageTagsTests/LanguageTagsTests.csproj deleted file mode 100644 index 2e9dfc3..0000000 --- a/LanguageTagsTests/LanguageTagsTests.csproj +++ /dev/null @@ -1,23 +0,0 @@ - - - true - ptr727.LanguageTags.Tests - - - - - - all - runtime; build; native; contentfiles; analyzers; buildtransitive - - - - - all - runtime; build; native; contentfiles; analyzers; buildtransitive - - - - - - diff --git a/LanguageTagsTests/LogOptionsTests.cs b/LanguageTagsTests/LogOptionsTests.cs deleted file mode 100644 index 4a06069..0000000 --- a/LanguageTagsTests/LogOptionsTests.cs +++ /dev/null @@ -1,140 +0,0 @@ -using Microsoft.Extensions.Logging; -using Microsoft.Extensions.Logging.Abstractions; - -namespace ptr727.LanguageTags.Tests; - -[Collection("Sequential Test Collection")] -public sealed class LogOptionsTests : SingleInstanceFixture -{ - [Fact] - public void CreateLogger_UsesFactory_WhenFactorySet() - { - ILoggerFactory originalFactory = LogOptions.LoggerFactory; - using TestLoggerFactory testFactory = new(); - - try - { - LogOptions.LoggerFactory = testFactory; - - ILogger logger = LogOptions.CreateLogger("category"); - - _ = LogOptions.LoggerFactory.Should().BeSameAs(testFactory); - _ = testFactory.LastCategory.Should().Be("category"); - _ = logger.Should().NotBeNull(); - } - finally - { - LogOptions.LoggerFactory = originalFactory; - } - } - - [Fact] - public void CreateLogger_UsesNullLogger_WhenFactoryDefault() - { - ILoggerFactory originalFactory = LogOptions.LoggerFactory; - - try - { - LogOptions.LoggerFactory = NullLoggerFactory.Instance; - - ILogger logger = LogOptions.CreateLogger("category"); - - _ = logger.Should().BeSameAs(NullLogger.Instance); - } - finally - { - LogOptions.LoggerFactory = originalFactory; - } - } - - [Fact] - public void CreateLogger_WithNullCategory_ThrowsArgumentNullException() => - _ = Assert.Throws(() => LogOptions.CreateLogger(null!)); - - [Fact] - public void CreateLogger_WithEmptyCategory_ThrowsArgumentException() => - _ = Assert.Throws(() => LogOptions.CreateLogger(" ")); - - [Fact] - public void TrySetFactory_WhenUnset_ReturnsTrueAndSets() - { - ILoggerFactory originalFactory = LogOptions.LoggerFactory; - using TestLoggerFactory testFactory = new(); - - try - { - LogOptions.LoggerFactory = NullLoggerFactory.Instance; - - bool result = LogOptions.TrySetFactory(testFactory); - - _ = result.Should().BeTrue(); - _ = LogOptions.LoggerFactory.Should().BeSameAs(testFactory); - } - finally - { - LogOptions.LoggerFactory = originalFactory; - } - } - - [Fact] - public void TrySetFactory_WhenAlreadySet_ReturnsFalseAndDoesNotOverwrite() - { - ILoggerFactory originalFactory = LogOptions.LoggerFactory; - using TestLoggerFactory testFactory = new(); - using TestLoggerFactory otherFactory = new(); - - try - { - LogOptions.LoggerFactory = testFactory; - - bool result = LogOptions.TrySetFactory(otherFactory); - - _ = result.Should().BeFalse(); - _ = LogOptions.LoggerFactory.Should().BeSameAs(testFactory); - } - finally - { - LogOptions.LoggerFactory = originalFactory; - } - } - - private sealed class TestLoggerFactory : ILoggerFactory - { - public ILogger Logger { get; } = new TestLogger(); - - public string? LastCategory { get; private set; } - - public void AddProvider(ILoggerProvider provider) { } - - public ILogger CreateLogger(string categoryName) - { - LastCategory = categoryName; - return Logger; - } - - public void Dispose() { } - } - - private sealed class TestLogger : ILogger - { - public IDisposable BeginScope(TState state) - where TState : notnull => NullScope.Instance; - - public bool IsEnabled(LogLevel logLevel) => true; - - public void Log( - LogLevel logLevel, - EventId eventId, - TState state, - Exception? exception, - Func formatter - ) { } - - private sealed class NullScope : IDisposable - { - public static readonly NullScope Instance = new(); - - public void Dispose() { } - } - } -} diff --git a/LanguageTagsTests/Rfc5646Tests.cs b/LanguageTagsTests/Rfc5646Tests.cs deleted file mode 100644 index 987b68f..0000000 --- a/LanguageTagsTests/Rfc5646Tests.cs +++ /dev/null @@ -1,145 +0,0 @@ -namespace ptr727.LanguageTags.Tests; - -public class Rfc5646Tests : SingleInstanceFixture -{ - [Fact] - public void Create() - { - // Create full list of languages - Rfc5646Data rfc5646 = Rfc5646Data.Create(); - _ = rfc5646.Should().NotBeNull(); - _ = rfc5646.RecordList.Length.Should().BeGreaterThan(0); - } - - [Fact] - public async Task FromData() - { - Rfc5646Data rfc5646 = await Rfc5646Data.FromDataAsync( - GetDataFilePath(Rfc5646Data.DataFileName) - ); - _ = rfc5646.Should().NotBeNull(); - _ = rfc5646.RecordList.Length.Should().BeGreaterThan(0); - } - - [Fact] - public async Task FromJson() - { - Rfc5646Data rfc5646 = await Rfc5646Data.FromJsonAsync( - GetDataFilePath(Rfc5646Data.DataFileName + ".json") - ); - _ = rfc5646.Should().NotBeNull(); - _ = rfc5646.RecordList.Length.Should().BeGreaterThan(0); - } - - [Fact] - public async Task Create_FromData_FromJson_RecordsMatch() - { - Rfc5646Data created = Rfc5646Data.Create(); - Rfc5646Data fromData = await Rfc5646Data.FromDataAsync( - GetDataFilePath(Rfc5646Data.DataFileName) - ); - Rfc5646Data fromJson = await Rfc5646Data.FromJsonAsync( - GetDataFilePath(Rfc5646Data.DataFileName + ".json") - ); - - _ = created.RecordList.Length.Should().BeGreaterThan(0); - _ = fromData.RecordList.Length.Should().BeGreaterThan(0); - _ = fromJson.RecordList.Length.Should().BeGreaterThan(0); - - _ = fromData.RecordList.Should().BeEquivalentTo(created.RecordList); - _ = fromJson.RecordList.Should().BeEquivalentTo(created.RecordList); - } - - [Fact] - public async Task SaveJsonAsync_RoundTrip() - { - Rfc5646Data rfc5646 = Rfc5646Data.Create(); - _ = rfc5646.RecordList.Length.Should().BeGreaterThan(0); - - string tempFile = Path.Combine(Path.GetTempPath(), $"{Guid.NewGuid()}.json"); - try - { - await rfc5646.SaveJsonAsync(tempFile); - Rfc5646Data roundTrip = await Rfc5646Data.FromJsonAsync(tempFile); - _ = roundTrip.Should().NotBeNull(); - _ = roundTrip.RecordList.Length.Should().Be(rfc5646.RecordList.Length); - } - finally - { - if (File.Exists(tempFile)) - { - File.Delete(tempFile); - } - } - } - - [Theory] - [InlineData("af", false, "Afrikaans")] - [InlineData("zh", false, "Chinese")] - [InlineData("de", false, "German")] - [InlineData("yue", false, "Yue Chinese")] - [InlineData("zh-cmn-Hant", false, "Mandarin Chinese (Traditional)")] - [InlineData("cmn-Hant", false, "Mandarin Chinese (Traditional)")] - [InlineData("i-klingon", false, "Klingon")] - [InlineData("zulu", true, "Zulu")] - [InlineData( - "language association", - true, - "Interlingua (International Auxiliary Language Association)" - )] - public void Find_Pass(string input, bool description, string output) - { - // Create full list of languages - Rfc5646Data rfc5646 = Rfc5646Data.Create(); - - _ = rfc5646.Should().NotBeNull(); - _ = rfc5646.RecordList.Length.Should().BeGreaterThan(0); - - // Find matching language - Rfc5646Record? record = rfc5646.Find(input, description); - _ = record.Should().NotBeNull(); - _ = record - .Description.Should() - .Contain(item => item.Equals(output, StringComparison.OrdinalIgnoreCase)); - } - - [Theory] - [InlineData("xx")] - [InlineData("xxx")] - [InlineData("xxxx")] - public void Find_Fail(string input) - { - // Create full list of languages - Rfc5646Data rfc5646 = Rfc5646Data.Create(); - _ = rfc5646.Should().NotBeNull(); - _ = rfc5646.RecordList.Length.Should().BeGreaterThan(0); - - // Fail to find matching language - Rfc5646Record? record = rfc5646.Find(input, false); - _ = record.Should().BeNull(); - } - - [Fact] - public void Find_Null_ReturnsNull() - { - Rfc5646Data rfc5646 = Rfc5646Data.Create(); - Rfc5646Record? record = rfc5646.Find(null!, false); - _ = record.Should().BeNull(); - } - - [Fact] - public void Find_Empty_ReturnsNull() - { - Rfc5646Data rfc5646 = Rfc5646Data.Create(); - Rfc5646Record? record = rfc5646.Find(string.Empty, false); - _ = record.Should().BeNull(); - } - - [Fact] - public void FileDate_IsSet() - { - Rfc5646Data rfc5646 = Rfc5646Data.Create(); - _ = rfc5646.FileDate.Should().NotBeNull(); - _ = rfc5646.FileDate.Should().HaveValue(); - } -} diff --git a/LanguageTagsTests/UnM49Tests.cs b/LanguageTagsTests/UnM49Tests.cs deleted file mode 100644 index 63c4929..0000000 --- a/LanguageTagsTests/UnM49Tests.cs +++ /dev/null @@ -1,131 +0,0 @@ -namespace ptr727.LanguageTags.Tests; - -public sealed class UnM49Tests : SingleInstanceFixture -{ - [Fact] - public void Create() - { - // Create full list of containment records - UnM49Data unM49 = UnM49Data.Create(); - _ = unM49.RecordList.Length.Should().BeGreaterThan(0); - } - - [Fact] - public async Task FromData() - { - UnM49Data unM49 = await UnM49Data.FromDataAsync(GetDataFilePath(UnM49Data.DataFileName)); - _ = unM49.Should().NotBeNull(); - _ = unM49.RecordList.Length.Should().BeGreaterThan(0); - } - - [Fact] - public async Task FromJson() - { - UnM49Data unM49 = await UnM49Data.FromJsonAsync( - GetDataFilePath(UnM49Data.DataFileName + ".json") - ); - _ = unM49.Should().NotBeNull(); - _ = unM49.RecordList.Length.Should().BeGreaterThan(0); - } - - [Fact] - public async Task Create_FromData_FromJson_RecordsMatch() - { - UnM49Data created = UnM49Data.Create(); - UnM49Data fromData = await UnM49Data.FromDataAsync(GetDataFilePath(UnM49Data.DataFileName)); - UnM49Data fromJson = await UnM49Data.FromJsonAsync( - GetDataFilePath(UnM49Data.DataFileName + ".json") - ); - - _ = created.RecordList.Length.Should().BeGreaterThan(0); - _ = fromData.RecordList.Length.Should().BeGreaterThan(0); - _ = fromJson.RecordList.Length.Should().BeGreaterThan(0); - - _ = fromData.RecordList.Should().BeEquivalentTo(created.RecordList); - _ = fromJson.RecordList.Should().BeEquivalentTo(created.RecordList); - } - - [Fact] - public async Task SaveJsonAsync_RoundTrip() - { - UnM49Data unM49 = UnM49Data.Create(); - _ = unM49.RecordList.Length.Should().BeGreaterThan(0); - - string tempFile = Path.Combine(Path.GetTempPath(), $"{Guid.NewGuid()}.json"); - try - { - await unM49.SaveJsonAsync(tempFile); - UnM49Data roundTrip = await UnM49Data.FromJsonAsync(tempFile); - _ = roundTrip.Should().NotBeNull(); - _ = roundTrip.RecordList.Length.Should().Be(unM49.RecordList.Length); - } - finally - { - if (File.Exists(tempFile)) - { - File.Delete(tempFile); - } - } - } - - [Theory] - [InlineData("419")] // Latin America and the Caribbean - [InlineData("013")] // Central America - [InlineData("001")] // World - public void Find_Pass(string code) - { - UnM49Data unM49 = UnM49Data.Create(); - UnM49Record? record = unM49.Find(code); - _ = record.Should().NotBeNull(); - _ = record.Code.Should().BeEquivalentTo(code); - } - - [Theory] - [InlineData("XX")] - [InlineData("999")] - public void Find_Fail(string code) - { - UnM49Data unM49 = UnM49Data.Create(); - UnM49Record? record = unM49.Find(code); - _ = record.Should().BeNull(); - } - - [Fact] - public void Find_Empty_ReturnsNull() - { - UnM49Data unM49 = UnM49Data.Create(); - _ = unM49.Find(string.Empty).Should().BeNull(); - } - - [Theory] - [InlineData("419", "MX", true)] // Mexico is in Latin America - [InlineData("013", "MX", true)] // Mexico is in Central America - [InlineData("005", "AR", true)] // Argentina is in South America - [InlineData("419", "013", true)] // Central America is within Latin America - [InlineData("001", "ZA", true)] // World contains every country - [InlineData("419", "ES", false)] // Spain is not in Latin America - [InlineData("419", "US", false)] // United States is not in Latin America - [InlineData("419", "419", false)] // A group does not contain itself - public void Contains(string groupCode, string code, bool contained) - { - UnM49Data unM49 = UnM49Data.Create(); - _ = unM49.Contains(groupCode, code).Should().Be(contained); - } - - [Fact] - public void GetAncestors_Country_ReturnsContainingGroups() - { - UnM49Data unM49 = UnM49Data.Create(); - IReadOnlyList ancestors = unM49.GetAncestors("MX"); - - // Mexico is nested under Central America, Latin America, the Americas, and the World - _ = ancestors.Should().Contain(["013", "419", "019", "001"]); - } - - [Fact] - public void GetAncestors_Unknown_ReturnsEmpty() - { - UnM49Data unM49 = UnM49Data.Create(); - _ = unM49.GetAncestors("ZZ").Should().BeEmpty(); - } -} diff --git a/README.md b/README.md deleted file mode 100644 index 252ba4a..0000000 --- a/README.md +++ /dev/null @@ -1,649 +0,0 @@ -# LanguageTags - -C# .NET library for ISO 639-2, ISO 639-3, RFC 5646 / BCP 47 language tags. - -## Build and Distribution - -- **Source Code**: [GitHub][github-link] - Source code, issues, discussions, and CI/CD pipelines. -- **Versioned Releases**: [GitHub Releases][releases-link] - Version tagged source code and build artifacts. -- **NuGet Packages** [NuGet Packages][nuget-link] - .NET libraries published to NuGet.org. - -### Build Status - -[![Release Status][releasebuildstatus-shield]][actions-link]\ -[![Last Commit][lastcommit-shield]][commits-link] - -### Releases - -[![GitHub Release][releaseversion-shield]][releases-link]\ -[![GitHub Pre-Release][prereleaseversion-shield]][releases-link]\ -[![NuGet Release][nugetreleaseversion-shield]][nuget-link] - -### Release Notes - -**Version: 1.5**: - -**Summary**: - -- Internal CI/CD rework, no library API changes. - - Branch-scoped self-publishing workflows - - Keyless OIDC NuGet publishing. - - Hardened repository configuration, see [WORKFLOW.md](./WORKFLOW.md). - -See [Release History](./HISTORY.md) for complete release notes and older versions. - -## Getting Started - -Get started with LanguageTags in two easy steps: - -1. **Add LanguageTags to your project**: - - ```shell - # Add the package to your project - dotnet add package ptr727.LanguageTags - ``` - -2. **Write some code**: - - ```csharp - LanguageLookup languageLookup = new(); - string iso = languageLookup.GetIsoFromIetf("af"); // "afr" - iso = languageLookup.GetIsoFromIetf("zh-cmn-Hant"); // "chi" - iso = languageLookup.GetIsoFromIetf("cmn-Hant"); // "chi" - ``` - - ```csharp - LanguageTag languageTag = LanguageTag.CreateBuilder() - .Language("en") - .Script("latn") - .Region("gb") - .VariantAdd("boont") - .ExtensionAdd('r', ["extended", "sequence"]) - .PrivateUseAdd("private") - .Build(); - string tag = languageTag.ToString(); // "en-latn-gb-boont-r-extended-sequence-x-private" - ``` - -See [Usage](#usage) for detailed usage instructions. - -## Table of Contents - -- [LanguageTags](#languagetags) - - [Build and Distribution](#build-and-distribution) - - [Build Status](#build-status) - - [Releases](#releases) - - [Release Notes](#release-notes) - - [Getting Started](#getting-started) - - [Table of Contents](#table-of-contents) - - [Use Cases](#use-cases) - - [Usage](#usage) - - [Tag Lookup](#tag-lookup) - - [Tag Conversion](#tag-conversion) - - [Tag Matching](#tag-matching) - - [Tag Builder](#tag-builder) - - [Tag Parser](#tag-parser) - - [Tag Normalization](#tag-normalization) - - [Tag Validation](#tag-validation) - - [Installation](#installation) - - [Questions or Issues](#questions-or-issues) - - [Build Artifacts](#build-artifacts) - - [Contributing](#contributing) - - [Tag Theory](#tag-theory) - - [Terminology](#terminology) - - [Format](#format) - - [References](#references) - - [Libraries](#libraries) - - [3rd Party Tools](#3rd-party-tools) - - [License](#license) - -## Use Cases - -> **ℹ️ TL;DR**: -> -> - Catalog of ISO 639-2, ISO 639-3, RFC 5646 language tags in JSON and C# record format. -> - Code for IETF BCP 47 language tag construction and parsing per the RFC 5646 semantic rules. -> -> **⚠️ Note**: The implemented language tag parsing and normalization logic may be incomplete or inaccurate. -> -> - Verify the results for your specific usage. -> - Refer to [Libraries](#libraries) for other known implementations. -> - Refer to [References](#references) for specification details. - -## Usage - -> **ℹ️ Note**: Refer to the [Tag Theory](#tag-theory) section for an overview of terms and theory of operation. - -### Tag Lookup - -Tag records can be created from embedded data by calling `Create()`, or loaded from data `FromDataAsync()`, or loaded from JSON `FromJsonAsync()`.\ -`FromDataAsync()` and `FromJsonAsync()` are static methods that return populated data instances. -The records and record collections are immutable and can safely be reused and shared across threads. - -Each class implements a `Find(string languageTag, bool includeDescription)` method that will search all tags in all records for a matching tag.\ -This is mostly a convenience function, and specific use cases should use specific tags. - -```csharp -Iso6392Data iso6392 = Iso6392Data.Create(); -Iso6392Record? record = iso6392.Find("afr", false); -// record.Part2B = "afr" -// record.RefName = "Afrikaans" -record = iso6392.Find("zulu", true); -// record.Part2B = "zul" -// record.RefName = "Zulu" -``` - -```csharp -Iso6393Data iso6393 = await Iso6393Data.FromDataAsync("iso6393"); -Iso6393Record? record = iso6393.Find("zh", false); -// record.Id = "zho" -// record.Part1 = "zh" -// record.RefName = "Chinese" -record = iso6393.Find("yue chinese", true); -// record.Id = "yue" -// record.RefName = "Yue Chinese" -``` - -```csharp -Rfc5646Data rfc5646 = await Rfc5646Data.FromJsonAsync("rfc5646.json"); -Rfc5646Record? record = rfc5646.Find("de", false); -// record.SubTag = "de" -// record.Description[0] = "German" -record = rfc5646.Find("zh-cmn-Hant", false); -// record.Tag = "zh-cmn-Hant" -// record.Description[0] = "Mandarin Chinese (Traditional)" -record = rfc5646.Find("Inuktitut in Canadian", true); -// record.Tag = "iu-Cans" -// record.Description[0] = "Inuktitut in Canadian Aboriginal Syllabic script" -``` - -### Tag Conversion - -Tags can be converted between ISO 639 and IETF forms using `GetIetfFromIso()` and `GetIsoFromIetf()`.\ -Tag lookup will use the user defined `Overrides` map, or the tag record lists, or the local system `CultureInfo`.\ -If a match is not found the undetermined `und` tag will be returned. - -```csharp -LanguageLookup languageLookup = new(); -string ietf = languageLookup.GetIetfFromIso("afr"); // "af" -ietf = languageLookup.GetIetfFromIso("zho"); // "zh" -``` - -```csharp -LanguageLookup languageLookup = new(); -string iso = languageLookup.GetIsoFromIetf("af"); // "afr" -iso = languageLookup.GetIsoFromIetf("zh-cmn-Hant"); // "chi" -iso = languageLookup.GetIsoFromIetf("cmn-Hant"); // "chi" -``` - -### Tag Matching - -Tag matching can be used to select content based on preferred vs. available languages. - -> **ℹ️ Examples**: -> -> - HTTP [`Accept-Language`][acceptlanguage-link] and [`Content-Language`][contentlanguage-link]. -> - Matroska media stream [`LanguageIETF Element`][matroskalanguage-link]. - -IETF language tags are in the form of: - -> [Language]-[Extended language]-[Script]-[Region]-[Variant]-[Extension]-[Private Use] - -Sub-tag matching happens left to right until a match is found. - -Examples: - -- `pt` will match `pt` Portuguese, or `pt-BR` Brazilian Portuguese, or `pt-PT` European Portuguese. -- `pt-BR` will only match `pt-BR` Brazilian Portuguese\ -- `zh` will match `zh` Chinese, or `zh-Hans` simplified Chinese, or `zh-Hant` for traditional Chinese, and other variants. -- `zh-Hans` will only match `zh-Hans` simplified Chinese. - -```csharp -LanguageLookup languageLookup = new(); -bool match = languageLookup.IsMatch("en", "en-US"); // true -match = languageLookup.IsMatch("zh", "zh-cmn-Hant"); // true -match = languageLookup.IsMatch("sr-Latn", "sr-Latn-RS"); // true -match = languageLookup.IsMatch("zha", "zh-Hans"); // false -match = languageLookup.IsMatch("zh-Hant", "zh-Hans"); // false -``` - -A [UN M.49][unm49-link] region in a tag is a numeric code for a group of countries, e.g. `419` is Latin America and the Caribbean which contains `MX` Mexico.\ -Set the optional `regionContainment` argument to `true` to match a region group prefix against any contained region.\ -Matching is directional, the broad group in the prefix matches the specific region in the tag, not the reverse. - -```csharp -LanguageLookup languageLookup = new(); -bool match = languageLookup.IsMatch("es-419", "es-MX", true); // true, Mexico is in Latin America -match = languageLookup.IsMatch("es-419", "es-ES", true); // false, Spain is not in Latin America -match = languageLookup.IsMatch("es-MX", "es-419", true); // false, not the reverse -match = languageLookup.IsMatch("es-419", "es-MX"); // false, containment is opt-in -``` - -Use `ExpandRegion()` to expand a tag region into the tag plus a region substituted tag for each containing UN M.49 group. - -```csharp -LanguageLookup languageLookup = new(); -IEnumerable expanded = languageLookup.ExpandRegion("es-MX"); -// "es-MX", and its containing groups e.g. "es-013", "es-419", "es-019", "es-001" -``` - -### Tag Builder - -The `LanguageTagBuilder` class supports fluent builder style tag construction, and will return a constructed `LanguageTag` class through the final `Build()` or `Normalize()` methods. - -The `Build()` method will construct the tag, but will not perform any correctness validation or normalization.\ -Use the `Validate()` method to test for shape correctness. See [Tag Validation](#tag-validation) for details. - -The `Normalize()` method will build the tag and perform normalization only.\ -Use `Validate()` to check structural correctness. See [Tag Normalization](#tag-normalization) for details. - -```csharp -LanguageTag languageTag = LanguageTag.CreateBuilder() - .Language("en") - .Script("latn") - .Region("gb") - .VariantAdd("boont") - .ExtensionAdd('r', ["extended", "sequence"]) - .PrivateUseAdd("private") - .Build(); -string tag = languageTag.ToString(); // "en-latn-gb-boont-r-extended-sequence-x-private" -``` - -```csharp -LanguageTag languageTag = LanguageTag.CreateBuilder() - .PrivateUseAddRange(["private", "use"]) - .Build(); -string tag = languageTag.ToString(); // "x-private-use" -``` - -```csharp -LanguageTag languageTag = LanguageTag.CreateBuilder() - .Language("ar") - .ExtendedLanguage("arb") - .Script("latn") - .Region("de") - .VariantAdd("nedis") - .VariantAdd("foobar") - .Normalize(); -string tag = languageTag.ToString(); // "arb-Latn-DE-foobar-nedis" -``` - -### Tag Parser - -The `LanguageTag` class static `Parse()` method will parse the text form language tag and return a constructed `LanguageTag` object, or `null` in case of a parsing failure. - -Parsing will validate all subtags for correctness in type, length, and position, but not value, and case will not be modified. - -Grandfathered tags will be converted to their current preferred form and parsed as such.\ -E.g. `en-gb-oed` -> `en-GB-oxendict`, `i-klingon` -> `tlh`. - -The `ParseAndNormalize()` method will parse the text tag and perform normalization.\ -See [Tag Normalization](#tag-normalization) for details. - -```csharp -LanguageTag? languageTag = LanguageTag.Parse("en-latn-gb-boont-r-extended-sequence-x-private"); -// languageTag.Language = "en" -// languageTag.Script = "latn" -// languageTag.Region = "gb" -// languageTag.Variants[0] = "boont" -// languageTag.Extensions[0].Prefix = 'r' -// languageTag.Extensions[0].Tags[0] = "extended" -// languageTag.Extensions[0].Tags[1] = "sequence" -// languageTag.PrivateUse.Tags[0] = "private" -string tag = languageTag?.ToString(); // "en-latn-gb-boont-r-extended-sequence-x-private" -``` - -```csharp -LanguageTag? languageTag = LanguageTag.Parse("en-gb-oed"); // Grandfathered -// languageTag.Language = "en" -// languageTag.Region = "GB" -// languageTag.Variants[0] = "oxendict" -string tag = languageTag?.ToString(); // "en-GB-oxendict" -``` - -### Tag Normalization - -The `Normalize()` method will convert tags to their canonical form.\ -See [RFC 5646 Section 4.5][rfc5646section45-link] for details. - -Normalization includes the following: - -- Replace the language subtag with their preferred values. - - E.g. `iw` -> `he`, `in` -> `id` -- Replace extended language subtags with their preferred language subtag values. - - E.g. `ar-afb` -> `afb`, `zh-yue` -> `yue` -- Remove or replace redundant subtags with their preferred values. - - E.g. `zh-cmn-Hant` -> `cmn-Hant`, `zh-gan` -> `gan`, `sgn-CO` -> `csn` -- Remove redundant script subtags. - - E.g. `af-Latn` -> `af`, `en-Latn` -> `en` -- Normalize case. - - All subtags lowercase. - - Script title case, e.g. `Latn`. - - Region uppercase, e.g. `GB`. -- Sort sub tags. - - Sort variant subtags by value. - - Sort extension subtags by prefix and subtag values. - - Sort private use subtags by value. - -```csharp -LanguageTag languageTag = LanguageTag.CreateBuilder() - .Language("en") - .ExtensionAdd('b', ["ccc"]) // Add b before a to force a sort - .ExtensionAdd('a', ["bbb", "aaa"]) // Add bbb before aaa to force a sort - .PrivateUseAddRange(["ccc", "a"]) // Add ccc before a to force a sort - .Normalize(); -string tag = languageTag.ToString(); // "en-a-aaa-bbb-b-ccc-x-a-ccc" -``` - -```csharp -LanguageTag? languageTag = LanguageTag.ParseAndNormalize("en-latn-gb-boont-r-sequence-extended-x-private"); -string tag = languageTag?.ToString(); // "en-GB-boont-r-extended-sequence-x-private" -``` - -```csharp -LanguageTag? languageTag = LanguageTag.Parse("ar-arb-latn-de-nedis-foobar"); -string tag = languageTag?.ToString(); // "ar-arb-latn-de-nedis-foobar" - -LanguageTag? normalizedTag = languageTag?.Normalize(); -string normalizedString = normalizedTag?.ToString(); // "arb-Latn-DE-foobar-nedis" -``` - -### Tag Validation - -The `Validate()` method will verify subtags for correctness.\ -See [RFC 5646 Section 2.1][rfc5646section21-link] and [RFC 5646 Section 2.2.9][rfc5646section229-link] for details. - -Note that `LanguageTag` objects created by `Parse()` or `Normalize()` are already verified for form correctness during parsing, and `Validate()` is primarily of use when using the `LanguageTagBuilder.Build()` method directly. - -Validation includes the following: - -- Subtag shape correctness, see [Format](#format) for a summary. -- No duplicate variants, extension prefixes, extension tags, or private tags. -- Does not validate subtag values against the registry or enforce the full grammar beyond these checks. - -```csharp -LanguageTag languageTag = LanguageTag.CreateBuilder() - .Language("en") - .Region("US") - .Build(); -bool isValid = languageTag.Validate(); // true -// Or use the IsValid property -isValid = languageTag.IsValid; // true -``` - -## Installation - -**Project integration**: - -```shell -# Add the package to your project -dotnet add package ptr727.LanguageTags -``` - -```csharp -// Include the namespace -using ptr727.LanguageTags; -``` - -**Debug log configuration**: - -```csharp -// Configure global logging (static override/factory) -using Microsoft.Extensions.Logging; -using ptr727.LanguageTags; -using Serilog; -using Serilog.Extensions.Logging; - -Log.Logger = new LoggerConfiguration() - .MinimumLevel.Debug() - .WriteTo.Debug() - .CreateLogger(); - -ILoggerFactory loggerFactory = new SerilogLoggerFactory(Log.Logger, dispose: true); -LogOptions.SetFactory(loggerFactory); -``` - -## Questions or Issues - -**Tag testing**: - -- The [BCP47 language subtag lookup][r12asubtags-link] site offers convenient tag parsing and validation capabilities. -- Refer to the [unit tests](./LanguageTagsTests) for examples, do note that tests may pass but not be complete or accurate per the RFC spec. - -**General questions**: - -- Use the [Discussions][discussions-link] forum for general questions. - -**Bug reports**: - -- Ask in the [Discussions][discussions-link] forum if you are not sure if it is a bug. -- Check the existing [Issues][issues-link] tracker for known problems. -- If the issue is unique and a bug, file it in [Issues][issues-link], and include all pertinent steps to reproduce the issue. - -## Build Artifacts - -**Build process and artifacts**: - -- **[`LanguageTagsCreate`](./LanguageTagsCreate) project**: - - Downloads language tag data files. - - Converts the tag data into JSON files. - - Generates C# records of the tags. -- **[`LanguageData`](./LanguageData/) directory**: - - ISO 639-2: [Source][iso6392source-link], [Data](./LanguageData/iso6392), [JSON](./LanguageData/iso6392.json), [Code](./LanguageTags/Iso6392DataGen.cs) - - ISO 639-3: [Source][iso6393source-link], [Data](./LanguageData/iso6393), [JSON](./LanguageData/iso6393.json), [Code](./LanguageTags/Iso6393DataGen.cs) - - RFC 5646 : [Source][rfc5646source-link], [Data](./LanguageData/rfc5646), [JSON](./LanguageData/rfc5646.json), [Code](./LanguageTags/Rfc5646DataGen.cs) - - UN M.49 : [Source][unm49source-link], [Data](./LanguageData/unm49), [JSON](./LanguageData/unm49.json), [Code](./LanguageTags/UnM49DataGen.cs) -- A daily [GitHub Actions](./.github/workflows/run-periodic-codegen-pull-request.yml) job opens PRs to keep the data files up to date. - -## Contributing - -- **Branching workflow**: - - The repo uses a two-branch model with ruleset-enforced merge methods. - - Feature branch -> `develop` via **squash merge** (develop is kept linear). - - `develop` -> `main` via **merge commit** (preserves develop's commit list on main as the second parent of each release commit). - - Dependabot and the daily codegen workflow both target `main` and `develop` in parallel via separate PRs. - - See [`WORKFLOW.md`](./WORKFLOW.md) for complete details. -- **Code style**: - - See [`CODESTYLE.md`](./CODESTYLE.md) and [`.editorconfig`](./.editorconfig) for C# code style rules. -- **Repository setup**: - - See [`repo-config/README.md`](./repo-config/README.md) for repo configuration details. - -## Tag Theory - -> **ℹ️ Note**: Refer to [References](#references) for complete specification details. - -### Terminology - -**Brief overview of tag terms**: - -- An IETF BCP 47 language tag is a standardized code that is used to identify human languages on the Internet. -- The tag structure is standardized by the Internet Engineering Task Force (IETF) in Best Current Practice (BCP) 47. -- RFC 5646 defines the BCP 47 language tag syntax and semantic rules. -- The subtags are maintained by Internet Assigned Numbers Authority (IANA) Language Subtag Registry. -- ISO 639 is a standard for classifying languages and language groups, and is maintained by the International Organization for Standardization (ISO). -- RFC 5646 incorporates ISO 639, ISO 15924, ISO 3166, and UN M.49 codes as the foundation for its language tags. - -### Format - -> **ℹ️ TL;DR**: IETF language tags are constructed from sub-tags with specific rules. -> -> **ℹ️ Note**: Refer to [RFC 5646 Section 2.1][rfc5646section21-link] for complete language tag syntax and rules. - -**Normal tags**: - -> [Language]-[Extended language]-[Script]-[Region]-[Variant]-[Extension]-[Private Use] - -- Language: - - 2 - 3 alpha: Shortest ISO 639 code - - 4 alpha: Future use - - 5 - 8 alpha: Registered tag - - See [RFC 5646 Section 2.2.1][rfc5646section221-link] -- Extended language: - - 3 alpha: Reserved ISO 639 code - - See [RFC 5646 Section 2.2.2][rfc5646section222-link] -- Script: - - 4 alpha: [ISO 15924][iso15924-link] code - - See [RFC 5646 Section 2.2.3][rfc5646section223-link] -- Region: - - 2 alpha: [ISO 3166-1][iso31661-link] code - - 3 digit: [UN M.49][unm49-link] code - - See [RFC 5646 Section 2.2.4][rfc5646section224-link] -- Variant: - - 5 - 8 alphanumeric starting with letter: Registered tag - - 4 - 8 alphanumeric starting with digit: Registered tag - - See [RFC 5646 Section 2.2.5][rfc5646section225-link] -- Extension: (`[singleton]-[extension]`) - - 1 alphanumeric: Singleton - - 2 - 8 alphanumeric: Extension - - See [RFC 5646 Section 2.2.6][rfc5646section226-link] - -**Private use tags**: - -> x-[private] - -- `x`: Singleton -- 1 - 8 alphanumeric: Private use -- See [RFC 5646 Section 2.2.7][rfc5646section227-link] - -**Grandfathered tags**: - - > [grandfathered] - -- Grandfathered tags are converted to current form tags. -- E.g. `en-gb-oed` -> `en-GB-oxendict` -- E.g. `i-klingon` -> `tlh`. -- See [RFC 5646 Section 2.2.8][rfc5646section228-link] - -**Examples**: - -- `zh` : `[Language]` -- `zh-yue` : `[Language]-[Extended language]` -- `zh-yue-hk`: `[Language]-[Extended language]-[Region]` -- `hy-latn-it-arevela`: `[Language]-[Script]-[Region]-[Variant]` -- `en-a-bbb-x-a-ccc` : `[Language]-[Extension]-[Private Use]` -- `en-latn-gb-boont-r-extended-sequence-x-private` : `[Language]-[Script]-[Region]-[Variant]-[Extension]-[Private Use]` - -### References - -**References and documentation**: - -- [Wikipedia : Codes for constructed languages][wikipediacodes-link] -- [Wikipedia : IETF language tag][ietflanguagetag-link] -- [W3C : Choosing a Language Tag][w3cchoosingtag-link] -- [W3C : Language tags in HTML and XML][w3ctags-link] -- [W3C : BCP47 language subtag lookup][r12asubtags-link] -- [IANA : Language Subtags, Tag Extensions, and Tags][ianatags-link] -- [RFC : BCP47][bcp47-link] -- [RFC : 4647 : Matching of Language Tags][rfc4647-link] -- [RFC : 5646 : Tags for Identifying Languages][rfc5646-link] -- [Unicode Consortium : Unicode Common Locale Data Repository (CLDR) Project][cldr-link] -- [UN Statistics Division : Standard Country or Area Codes (M.49)][unm49-link] -- [Library of Congress : ISO 639-2 Language Coding Agency][iso6392-link] -- [SIL International : ISO 639-3 Language Coding Agency][iso6393-link] - -### Libraries - -**Other known language tag libraries**: - -- [github.com/rspeer/langcodes][rspeerlangcodes-link] -- [github.com/oxigraph/oxilangtag][oxigraphoxilangtag-link] -- [github.com/pyfisch/rust-language-tags/][pyfischrustlanguagetags-link] -- [github.com/DanSmith/languagetags-sharp][dansmithlanguagetagssharp-link] -- [github.com/jkporter/bcp47][jkporterbcp47-link] -- [github.com/mattcg/language-subtag-registry][mattcglanguagesubtagregistry-link] - -## 3rd Party Tools - -**3rd party tools used in this project**: - -- [AwesomeAssertions][awesomeassertions-link] -- [Create Pull Request][createpr-link] -- [CSharpier][csharpier-link] -- [GH Release][ghrelease-link] -- [Git Auto Commit][ghautocommit-link] -- [GitHub Actions][ghactions-link] -- [GitHub Dependabot][ghdependabot-link] -- [Husky.Net][huskynet-link] -- [Nerdbank.GitVersioning][nerbankgitversion-link] -- [Serilog][serilog-link] -- [xUnit.Net][xunit-link] - -## License - -Licensed under the [MIT License][license-link]\ -![GitHub License][license-shield] - - - -[actions-link]: https://github.com/ptr727/LanguageTags/actions -[commits-link]: https://github.com/ptr727/LanguageTags/commits/main -[discussions-link]: https://github.com/ptr727/LanguageTags/discussions -[github-link]: https://github.com/ptr727/LanguageTags -[issues-link]: https://github.com/ptr727/LanguageTags/issues -[lastcommit-shield]: https://img.shields.io/github/last-commit/ptr727/LanguageTags?logo=github&label=Last%20Commit -[license-link]: ./LICENSE -[license-shield]: https://img.shields.io/github/license/ptr727/LanguageTags?label=License -[nuget-link]: https://www.nuget.org/packages/ptr727.LanguageTags/ -[nugetreleaseversion-shield]: https://img.shields.io/nuget/v/ptr727.LanguageTags?logo=nuget&label=NuGet%20Release -[prereleaseversion-shield]: https://img.shields.io/github/v/release/ptr727/LanguageTags?include_prereleases&filter=*-g*&label=GitHub%20Pre-Release&logo=github -[releasebuildstatus-shield]: https://img.shields.io/github/actions/workflow/status/ptr727/LanguageTags/publish-release.yml?logo=github&label=Releases%20Build -[releases-link]: https://github.com/ptr727/LanguageTags/releases -[releaseversion-shield]: https://img.shields.io/github/v/release/ptr727/LanguageTags?logo=github&label=GitHub%20Release - - - -[awesomeassertions-link]: https://awesomeassertions.org/ -[createpr-link]: https://github.com/marketplace/actions/create-pull-request -[csharpier-link]: https://csharpier.com/ -[ghactions-link]: https://github.com/actions -[ghautocommit-link]: https://github.com/marketplace/actions/git-auto-commit -[ghdependabot-link]: https://github.com/dependabot -[ghrelease-link]: https://github.com/marketplace/actions/gh-release -[huskynet-link]: https://alirezanet.github.io/Husky.Net/ -[nerbankgitversion-link]: https://github.com/marketplace/actions/nerdbank-gitversioning -[serilog-link]: https://serilog.net/ -[xunit-link]: https://xunit.net/ - - - -[iso6392source-link]: https://www.loc.gov/standards/iso639-2/ISO-639-2_utf-8.txt -[iso6393source-link]: https://iso639-3.sil.org/sites/iso639-3/files/downloads/iso-639-3.tab -[rfc5646source-link]: https://www.iana.org/assignments/language-subtag-registry/language-subtag-registry -[unm49source-link]: https://raw.githubusercontent.com/unicode-org/cldr/main/common/supplemental/supplementalData.xml - - - -[acceptlanguage-link]: https://www.rfc-editor.org/rfc/rfc9110.html#name-accept-language -[bcp47-link]: https://www.rfc-editor.org/info/bcp47 -[cldr-link]: https://cldr.unicode.org/ -[contentlanguage-link]: https://www.rfc-editor.org/rfc/rfc9110.html#name-content-language -[dansmithlanguagetagssharp-link]: https://github.com/DanSmith/languagetags-sharp -[ianatags-link]: https://www.iana.org/assignments/language-subtags-tags-extensions/language-subtags-tags-extensions.xhtml -[ietflanguagetag-link]: https://en.wikipedia.org/wiki/IETF_language_tag -[iso15924-link]: https://unicode.org/iso15924/iso15924-codes.html -[iso31661-link]: https://en.wikipedia.org/wiki/ISO_3166-1 -[iso6392-link]: https://www.loc.gov/standards/iso639-2/ -[iso6393-link]: https://iso639-3.sil.org/ -[jkporterbcp47-link]: https://github.com/jkporter/bcp47 -[matroskalanguage-link]: https://datatracker.ietf.org/doc/html/draft-ietf-cellar-matroska-07#name-language-codes -[mattcglanguagesubtagregistry-link]: https://github.com/mattcg/language-subtag-registry -[oxigraphoxilangtag-link]: https://github.com/oxigraph/oxilangtag -[pyfischrustlanguagetags-link]: https://github.com/pyfisch/rust-language-tags/ -[r12asubtags-link]: https://r12a.github.io/app-subtags/ -[rfc4647-link]: https://www.rfc-editor.org/info/rfc4647 -[rfc5646-link]: https://www.rfc-editor.org/info/rfc5646 -[rfc5646section21-link]: https://www.rfc-editor.org/rfc/rfc5646#section-2.1 -[rfc5646section221-link]: https://www.rfc-editor.org/rfc/rfc5646#section-2.2.1 -[rfc5646section222-link]: https://www.rfc-editor.org/rfc/rfc5646#section-2.2.2 -[rfc5646section223-link]: https://www.rfc-editor.org/rfc/rfc5646#section-2.2.3 -[rfc5646section224-link]: https://www.rfc-editor.org/rfc/rfc5646#section-2.2.4 -[rfc5646section225-link]: https://www.rfc-editor.org/rfc/rfc5646#section-2.2.5 -[rfc5646section226-link]: https://www.rfc-editor.org/rfc/rfc5646#section-2.2.6 -[rfc5646section227-link]: https://www.rfc-editor.org/rfc/rfc5646#section-2.2.7 -[rfc5646section228-link]: https://www.rfc-editor.org/rfc/rfc5646#section-2.2.8 -[rfc5646section229-link]: https://www.rfc-editor.org/rfc/rfc5646#section-2.2.9 -[rfc5646section45-link]: https://www.rfc-editor.org/rfc/rfc5646#section-4.5 -[rspeerlangcodes-link]: https://github.com/rspeer/langcodes -[unm49-link]: https://unstats.un.org/unsd/methodology/m49/ -[w3cchoosingtag-link]: https://www.w3.org/International/questions/qa-choosing-language-tags -[w3ctags-link]: https://www.w3.org/International/articles/language-tags/ -[wikipediacodes-link]: https://en.wikipedia.org/wiki/Codes_for_constructed_languages diff --git a/WORKFLOW.md b/WORKFLOW.md deleted file mode 100644 index cd93277..0000000 --- a/WORKFLOW.md +++ /dev/null @@ -1,686 +0,0 @@ -# WORKFLOW.md - -The single guide for this repo's CI/CD **workflows** (GitHub Actions): **code style**, **architecture**, -a **behavioral contract** (expected inputs and outputs), and a **test methodology**. Source code style -lives in [`CODESTYLE.md`](./CODESTYLE.md). This file covers everything under -[`.github/workflows/`](./.github/workflows/). - -It **describes required outcomes, not a required implementation.** A workflow is correct when it -satisfies the contract (section 4), whatever shape its YAML takes. Section 2 keeps workflows legible. -Section 3 is the model. Section 4 is what they must *do*. Sections 5 and 6 are how to verify it and the -configuration it assumes. - -Each guarantee names the **failure it prevents**, so the reason survives a reimplementation. - -## 0. The model at a glance - -A run targets **one branch, the one it was triggered on** (`github.ref_name`): `main` builds a stable -release, `develop` a prerelease. The version is computed once and threaded downstream. A pull request -builds and tests but never publishes. The package **publishes itself** when a shipped input changes - the -source, the embedded data, the version floor, the build configuration, or the package versions -(`Directory.Packages.props`) - so releases track the code without a person cutting them. Listing the package -versions means a dependency bump republishes too, keeping the package's declared dependencies current. A -maintainer dispatches only to force a release. Dependabot and codegen -pull requests merge themselves once their checks pass. - -### Glossary - -- **Entry workflow** - has `push`/`pull_request`/`workflow_dispatch` triggers. The orchestrator a person - or event starts. -- **Reusable workflow (task)** - a `workflow_call` workflow invoked from an entry workflow through a - `uses:` reference. Never triggered directly. -- **Leaf** - the reusable task that produces the shipped artifact (here, the NuGet package). -- **Smoke build** - a pull-request build that compiles and packs the library to prove it still ships, - publishing and uploading nothing. Linting and testing are the separate `validate` job. Driven by a - `smoke: true` input. -- **Transfer artifact** - a workflow artifact that hands a file between jobs of one run (e.g. the built - package passed to the release job). The durable copy lives on the GitHub release / NuGet.org. -- **Head-resolved vs base-resolved** - a `pull_request` event resolves a reusable `./...` reference from - the **base** branch's copy, while a `push`/`workflow_dispatch` event resolves it from the **pushed** - head. Self-testing (section 3) depends on this. -- **Shipped input** - a file that changes what the package ships: the library source (`LanguageTags/**`), - the embedded data (`LanguageData/**`), the version floor (`version.json`), the build configuration - (`Directory.Build.props`), or the package versions (`Directory.Packages.props`). It is an explicit - **inclusion list** (the publisher's `on.push.paths`), so a change confined to tests, the codegen tool, - GitHub Actions, docs, or CI is **not** a shipped input. Package versions are included because a NuGet - version cannot be re-pushed (no scheduled rebuild like a Docker image), so a dependency bump must - republish to keep the package's declared dependencies current and close the stale/vulnerable-dependency - window. GitHub Actions bumps stay excluded - they do not ship in the package. -- **GitHub App token** - a short-lived installation token from `actions/create-github-app-token`, minted - from the App credentials (`CODEGEN_APP_CLIENT_ID` / `CODEGEN_APP_PRIVATE_KEY`). Automation that must - trigger downstream workflows or write to bot pull requests uses **this token, not `GITHUB_TOKEN`**: a - commit pushed with the built-in token does not trigger downstream workflows (GitHub's recursion guard), - and that token is read-only on Dependabot pull requests. - -## 1. Purpose and how to use this document - -- **Contract, not implementation.** Conform to the *outcomes* in section 4 and the *architecture* in - section 3. Job names and file layout may vary. The input/output behavior and the branch-scoped, - single-ref architecture may not. -- **"Operational" - the one definition.** The repo is **operational** when every applicable section-4 - guarantee holds, every applicable section-5B scenario's observed output equals its expected output - (corroborated by a 5C live probe where a live signal exists), and the section-6 configuration is in - place. Anything else is **not operational**. Every later use of "operational" means exactly this. -- **Defect vs N/A.** An item is **N/A** only when this repo has no such concern (for example a fork-PR - scenario, since a fork cannot push here). It is **not** N/A because the workflow that should implement it - is missing. A construct required by an applicable guarantee but absent is a **defect** (FAIL). -- **Guarantees are scored independently.** One line of YAML can satisfy one guarantee and violate - another. Record each verdict on its own. -- **Default branch is `main`.** Guarantees say "default branch" portably. This repo writes the literal - `main` in the prerelease expression and the validate gate, and the anchored `^refs/heads/main$` in - `version.json`'s `publicReleaseRefSpec`. All three must designate `main`. -- **The verbs.** **Audit** (static 5A, configuration 5D), **Test** (trace + probe, 5B/5C), **Assess** - (verdict). Section 5 gives the procedure. - -## 2. Workflow style conventions - -Legibility rules. Cheap to check, necessary but not sufficient: a perfectly styled workflow can still -violate section 4. - -- **Action pinning.** Pin every action to a commit SHA with a trailing `# vX.Y.Z` comment, so a tag swap - cannot change executed code while Dependabot can still bump it. Use `# vX` only when the upstream - floating major tag has no specific patch SHA. The SHA-pin rule applies to `uses:` action references; a - CLI tool an action downloads at runtime (e.g. the actionlint binary) is not a `uses:` ref and is out of - scope. The sole `uses:` no-pin exception is `dotnet/nbgv@master`, whose tag stream lags `master` such that - tag-tracking would downgrade. -- **Filename.** Reusable workflows (`on: workflow_call`) end in `-task.yml`. Entry-point workflows end in - what they do (`-pull-request.yml`, `-release.yml`). Lowercase, hyphen-separated. A `-task.yml` is - invoked through a `uses:` reference, never triggered directly. -- **Workflow `name:`.** Reusable workflow names end in **"task"**, entry-point names in **"action"**, so - the UI label tells you orchestrator from callee at a glance. -- **Job and step `name:`.** Every job `name:` ends in **"job"**, every step `name:` in **"step"**, the - aggregator included (`Check pull request workflow status job`). A job name also bound as a ruleset - required-status-check `context:` is codified in [`repo-config/`](./repo-config/). It follows the suffix - rule like any job, but changing it means updating those ruleset files and the live ruleset **in - lockstep**, or required-check enforcement silently breaks. -- **Concurrency.** Every entry-point workflow declares a `concurrency` group. The default is - `group: '${{ github.workflow }}-${{ github.ref }}'` with `cancel-in-progress: true`. Three entry - workflows override it. The **publisher** uses a ref-independent group with `cancel-in-progress: false` so publishes - serialize and none is cancelled mid-release. The **merge-bot** keys on the PR number with - `cancel-in-progress: false` so each PR's events run to completion in order. The daily codegen workflow - (`run-periodic-codegen-pull-request.yml`) uses the same ref-independent group expression as the publisher - but with `cancel-in-progress: true`: it only opens the fixed `codegen-main`/`codegen-develop` pull - requests, so a dispatch superseding an in-flight scheduled run is harmless, and the shared group still - keeps the two from racing. -- **Shells.** Every multi-line bash `run:` starts with `set -euo pipefail`. -- **Conditionals.** Multi-line `if:` uses the folded scalar `if: >-`. A literal block `if: |` embeds - newlines into the boolean and is wrong. -- **Boolean inputs.** A boolean used by both `workflow_call` and `workflow_dispatch` is declared in both - trigger blocks. `workflow_dispatch` delivers the string `"true"`/`"false"`, so any `if:` consuming it - compares both forms: `${{ inputs.foo == true || inputs.foo == 'true' }}`. -- **Reusable-workflow permissions.** Job-level `permissions:` are validated before `if:`, so even a - skipped job's declared permissions must be valid. Grant least privilege. A callee's extra scope (e.g. - `actions: write` to delete artifacts) is granted by the caller at the `uses:` job. -- **Allowlist `success` and `skipped` explicitly** when chaining across an optional dependency. - `!= 'failure'` lets `cancelled` through. Use `(needs.X.result == 'success' || needs.X.result == - 'skipped')`. -- **Line endings.** Workflow YAML follows [`.editorconfig`](./.editorconfig) (CRLF here). Preserve - endings on every edit. - -## 3. Architecture - -### Branch-scoped, single-ref - -A run targets one branch, `github.ref_name`. The branch alone decides everything: `main` builds a stable -release, every other branch a prerelease. One run never builds, versions, or publishes a second branch. -There is no branch matrix, no plan job fanning out to multiple branches, no `branch` input that can -disagree with the triggering ref. *Prevents the defect class where the CI ref, the checkout, and the -version classification disagree.* - -### Versioning: compute once, thread everywhere - -NBGV runs in exactly one job per run. Its outputs (`SemVer2`, `GitCommitId`, the assembly versions) -thread to every consumer through `outputs:`/`needs:`, and no other job re-invokes it. A build job may -check out a specific commit to **compile** it, but it consumes the threaded version. *This keeps the -package version and the release tag in agreement.* - -Every run is a `push`/`workflow_dispatch` on a real branch, so `actions/checkout` lands on a branch tip -and NBGV classifies natively: the public-release ref (`publicReleaseRefSpec = ^refs/heads/main$`) builds a -clean `X.Y.Z`, every other branch a prerelease `X.Y.Z-g`. The detached-merge-ref case (NBGV seeing no -branch) never arises. `version.json`'s `version` is the major.minor floor, and NBGV appends the git height -as the patch. - -### Validate at entry - -When a run carries a cross-input or input-versus-derived-state invariant, a dedicated entry job/step -asserts it once and fails fast with `::error::` before any build or publish. Downstream jobs `needs:` it. - -### Resource lifecycle - -Workflow artifacts are an intra-run handoff. The durable copy lives on the GitHub release / NuGet.org. A -transfer artifact is deleted by exact name at the point it is consumed, the delete gated to the consumer's -condition and best-effort. Every `upload-artifact` sets `retention-days: 1` as a backstop, so a run that -skips the delete still reclaims its artifact. The run's artifact set is never blanket-deleted -(`.artifacts[].id`), which would destroy the diagnostic artifacts needed to debug a failed run. See D5. - -### Fast pull-request feedback - -A pull request validates fast and never publishes. Validation is a reusable `validate-task` holding two -jobs, `unit-test` (build and test) and `lint` (the editor's checks, enforced in CI). The pull request runs -it as a `validate` job alongside `smoke-build` (build and pack the library to prove it ships, uploading and -pushing nothing). Both run on every push with no paths filter (a branch-deletion push is the one exception - -a `!github.event.deleted` guard skips them, since `github.sha` is all-zeros and checkout would fail), so a -reusable-workflow change is always exercised head-resolved. Packaging validation as one task lets the -publisher run the identical gate (D4.6). -One required aggregator gates the merge. See D1. - -### Self-testing workflows, and the required-context invariant - -A pull request exercises its own workflow files. No change waits to reach `main` first. - -- **CI runs on `push` to every branch.** GitHub head-resolves the reusable `./...` workflows from the - pushed head, so a pull request that edits a reusable task tests its own copy. The push run is the **sole - producer** of the aggregator's ruleset-bound `context:`, on the head SHA branch protection evaluates. CI - never publishes. -- **Single-producer invariant.** Exactly one trigger path emits a given ruleset-bound context name. No - `pull_request`-triggered job emits it, which would race two check-runs on one SHA. -- **Only `main`/`develop` produce releases.** The publisher also runs on `push` to the protected branches, - gated on a shipped change (D4.1). CI and the publisher then run in separate workflows with separate - concurrency, so they do not race: CI re-tests the merged tree, the publisher releases only on a shipped - change. -- **A dispatched publish uses that branch's workflows**, so a workflow change is usable on the branch that - introduces it. -- **Forks are the documented exception.** A fork cannot push here, so its pull request produces no run and - no aggregator check, and a maintainer lands the change on an in-repo branch (which pushes, and so - validates) before merging. Dependabot is not an exception: its pull requests are in-repo branches, - validated head-resolved by their push (a read-only token and the Dependabot secret store, enough for the - gate). See D6. - -### Publishing: self-sufficient and branch-scoped - -The package publishes itself when a shipped input changes, so releases track the code without a person -cutting them. Every publish targets only the branch it ran on (`develop` -> prerelease, `main` -> stable). -Two things publish: - -- **An automatic release on a shipped change.** The publisher runs on `push` to `main`/`develop` with the - `on.push.paths` inclusion list (`LanguageTags/**`, `LanguageData/**`, `version.json`, - `Directory.Build.props`, `Directory.Packages.props`), so it triggers only when a shipped input changed. - `.github/**` is not listed, so Actions bumps do not republish; `Directory.Packages.props` is listed, so a - dependency bump republishes to keep the package's dependencies current. The merge-bot merges with the App - token, so its merge commits reach this push trigger. -- **A manual release on demand.** A `workflow_dispatch` on a branch publishes it immediately, whatever - changed - the "release now" control. - -There is no scheduled publish and no publish-on-every-merge. Every publish runs the same `validate-task` -the pull request runs (the identical definition, not a copy) as a `validate` job the publish job `needs:`, -so nothing ships that would fail the pull-request gate (D4.6). This matters because `develop` squashes and -`main` merge-commits, so the published commit is not the feature-head the pull request smoke-tested. See -D4. - -### Self-sufficiency: automatic updates - -- **Dependabot pull requests merge themselves.** Every Dependabot pull request, any ecosystem and any tier - (semver-major included), auto-merges once the required checks pass, using the App token. The checks are - the safety net: an update that breaks the build or tests fails them, auto-merge does not complete, and - GitHub notifies the maintainer. -- **Codegen refreshes data the same way.** The codegen workflow regenerates `LanguageData/` from its - upstream registries daily, opens a pull request only when the data changed, and auto-merges it on green. - The data is a shipped input, so the publisher then releases it. - -The library is self-maintaining: data and dependencies stay current on both branches, each shipped change -releases automatically, and a person steps in only for a breaking change (a red check) or to force a -release by dispatch. A merged dependency bump republishes (its `Directory.Packages.props` change is a -shipped input), keeping the published package's dependencies current. See D8. - -### Single-target output seam - -The repo produces exactly one shipped artifact, the NuGet package. The leaf pushes the package, and where -symbols are enabled its symbol package, to NuGet.org via OIDC trusted publishing (no long-lived API key, -D4.7), and bundles them with the compiled library into a single fixed-name `LanguageTags.7z` attached to -the GitHub release. There is no generic multi-target abstraction: no `enable_` flag selecting among -leaves, no `expect_release_assets` toggle, no `release-asset--*` glob. The single asset, -`LanguageTags.7z`, is attached by its fixed name, so `releases/latest/download/LanguageTags.7z` is a stable -download URL. - -### Flow diagrams - -Three diagrams trace the architecture above: the pull-request gate, the self-publisher, and the bot -automation. They depict the same outcomes that the section 4 contract specifies, drawn from the workflow YAML; if a diagram and -a guarantee disagree, one of them is a defect. Triggers are blue, gates yellow, durable/published outputs -green, and stop/skip outcomes red. - -**Pull request (CI) - `test-pull-request.yml`.** Every push head-resolves the reusable tasks, runs the -validate gate and a non-publishing smoke build, and a single aggregator produces the ruleset-bound required -check (D1, D6). - -```mermaid -flowchart TD - T(["push: every branch
(or workflow_dispatch)"]):::trig - T --> D{"github.event.deleted?"} - D -- "yes: branch deletion" --> X(["all jobs + aggregator skip
no failed run, no pending check"]):::stop - D -- "no" --> V["validate job
(validate-task.yml)"] - D -- "no" --> S["smoke-build job
build-release-task.yml
smoke: true, publish: false"] - subgraph VT ["validate-task.yml"] - U["unit-test job
dotnet test, warnings-as-errors"] - L["lint job
CSharpier, dotnet format,
markdownlint, cspell, actionlint"] - end - V --> VT - S --> SB["build + pack library
head-resolved, no push, no uploads"] - VT --> A - SB --> A - A{"Check pull request workflow status job
validate AND smoke-build succeeded?"}:::gate - A -- "yes" --> G(["required check passes
merge unblocked"]):::pub - A -- "no" --> R(["required check fails
merge blocked"]):::stop - classDef trig fill:#dbeafe,stroke:#2563eb,color:#1e3a8a - classDef gate fill:#fef9c3,stroke:#ca8a04,color:#713f12 - classDef pub fill:#dcfce7,stroke:#16a34a,color:#14532d - classDef stop fill:#fee2e2,stroke:#dc2626,color:#7f1d1d -``` - -**Publish - `publish-release.yml` -> `build-release-task.yml`.** A shipped-input push or a dispatch runs -the same validate gate, then versions once with NBGV, asserts branch-vs-version, builds the pinned commit, -pushes to NuGet via OIDC, and cuts the GitHub release (D2, D3, D4). - -```mermaid -flowchart TD - P1(["push: main/develop
paths = shipped inputs"]):::trig --> VAL - P2(["workflow_dispatch"]):::trig --> VAL - VAL["validate job
(validate-task.yml)"] --> PG{"publish guard
push OR ref in (main, develop)"}:::gate - PG -- "no" --> PSKIP(["publish skipped"]):::stop - PG -- "yes" --> GV - subgraph BRT ["build-release-task.yml (publish: true)"] - GV["get-version job
NBGV @master, runs once
SemVer2 + GitCommitId"] --> VR{"validate-release
branch matches version?"}:::gate - VR -- "mismatch" --> VRX(["fail ::error::"]):::stop - VR -- "agree" --> B["build job
checkout GitCommitId
build + pack"] - B --> NP[("NuGet.org push
OIDC key, skip-duplicate")]:::pub - B --> GR{"github-release
tag new OR dispatch?"}:::gate - GR -- "exists, not dispatch" --> NOP(["skip create
artifact reclaimed by backstop"]):::stop - GR -- "create" --> REL[("GitHub release
tag = SemVer2 at GitCommitId
prerelease = ref != main")]:::pub - end - classDef trig fill:#dbeafe,stroke:#2563eb,color:#1e3a8a - classDef gate fill:#fef9c3,stroke:#ca8a04,color:#713f12 - classDef pub fill:#dcfce7,stroke:#16a34a,color:#14532d - classDef stop fill:#fee2e2,stroke:#dc2626,color:#7f1d1d -``` - -**Automation - codegen + Dependabot + merge-bot.** Daily codegen and Dependabot open in-repo bot PRs; the -merge-bot enables auto-merge (or disables it on a maintainer push); a merged shipped input then drives the -publisher above (D8). - -```mermaid -flowchart TD - SCH(["schedule daily 04:00 UTC
(or workflow_dispatch)"]):::trig --> CG - subgraph CGT ["run-codegen-pull-request-task.yml (matrix: main, develop)"] - CG["codegen job per branch
regenerate LanguageData
(deterministic)"] --> CGC{"data changed?"} - CGC -- "no" --> CGN(["no PR"]):::stop - CGC -- "yes" --> CPR["open codegen-<branch> PR
(App token)"] - end - DEP(["Dependabot opens PR
any ecosystem/tier"]):::trig --> MB - CPR --> MB - subgraph MBT ["merge-bot-pull-request.yml (pull_request_target)"] - MB{"event / author"}:::gate - MB -- "opened/reopened
bot author" --> EN["enable auto-merge
squash develop / merge main"] - MB -- "synchronize by maintainer" --> DIS["disable auto-merge"] - end - EN --> CK{"required checks pass?"}:::gate - CK -- "yes" --> MRG(["PR merges (App token)"]):::pub - CK -- "no" --> BLK(["merge blocked
maintainer notified"]):::stop - MRG -. "shipped input changed" .-> PUBR(["publisher auto-releases"]):::pub - classDef trig fill:#dbeafe,stroke:#2563eb,color:#1e3a8a - classDef gate fill:#fef9c3,stroke:#ca8a04,color:#713f12 - classDef pub fill:#dcfce7,stroke:#16a34a,color:#14532d - classDef stop fill:#fee2e2,stroke:#dc2626,color:#7f1d1d -``` - -## 4. Behavioral contract - expected outcomes - -Each is a **MUST**, stated as input -> output plus the failure it prevents. A workflow that violates any -applicable guarantee is not operational (section 1). - -### D0 - Branch-scoped architecture - -- **D0.1 One run, one branch.** Input: any triggered run. Output: it builds/versions/publishes exactly - `github.ref_name`, with no job fanning out to a second branch. *Prevents: mis-classified versions and - mismatched tags from cross-branch ref mixing.* -- **D0.2 One version, threaded.** Output: NBGV runs in exactly one job, on a real-branch-tip checkout on - the publish path, and its outputs thread via `needs:` to all consumers. No second job recomputes a - version. *Allowed:* checking out a specific commit to compile it, and recording the built commit's SHA - as the release `target_commitish` (D4.3); neither re-runs NBGV. *Prevents: a checkout that versions a - package differently from its tag.* - -### D1 - Pull-request fast feedback - -- **D1.1 Every push builds, lints, and tests.** Output: on any push the `validate` job - the reusable - `validate-task`, holding the `unit-test` and `lint` jobs - and `smoke-build` run with no paths filter. - The one exception is a branch-deletion push: a `!github.event.deleted` guard skips every job (and the - aggregator skips too, so the required check is not left pending), because `github.sha` is all-zeros and a - checkout/build would fail. `smoke-build` builds and packs the library in its branch configuration through - the same `build-release-task` the publisher uses. *Prevents: a reusable-workflow change shipping untested - because a filter excluded it; a build/packaging break slipping through; a branch-deletion push failing CI.* -- **D1.2 Unit tests always run.** Output: the `unit-test` job (in `validate-task`) runs `dotnet test` - (build with `TreatWarningsAsErrors`, so analyzer/style warnings fail here), and the aggregator reaches - it through the `validate` job it `needs:`. -- **D1.3 Lint enforces the editor checks in CI.** Output: the `lint` job runs CSharpier (`dotnet csharpier - check`), `dotnet format style --verify-no-changes`, `markdownlint-cli2`, `cspell` on the user-facing - docs (README, HISTORY), and `actionlint` (which shellchecks every `run:` block). These are the same - checks the editor and the local Husky hook run, enforced from the same config files. *Prevents: - formatting, markdown, spelling, or workflow-YAML defects reaching the branch on editor-faith.* -- **D1.4 Smoke never publishes and never uploads.** Output: full compile/pack, but no NuGet push, no - GitHub release, no artifact uploads (every `upload-artifact` is gated `!smoke`). *Prevents: a PR - publishing; orphaned artifacts.* -- **D1.5 One required aggregator gates merge.** Output: a single aggregator job must succeed (not merely - "not fail"), `needs:` `validate` and `smoke-build` (and so transitively `unit-test` and `lint`), and - blocks on any non-success. Its name is ruleset-bound, has a single producer (D6.2), and must not be - renamed. *Prevents: a library, lint, or workflow defect merging unverified.* - -### D2 - Validation at entry - -- **D2.1 Validate before expensive work.** Output: a dedicated entry job/step asserts each - cross-input/derived-state invariant and fails fast with `::error::` before builds. Downstream jobs - `needs:` it. -- **D2.2 Branch matches version classification.** Input: a real (non-smoke) publish. Output: the gate - fails loudly if `main` carries a prerelease suffix or a non-`main` branch carries none. It strips - `+buildmetadata` before testing for the prerelease `-`. It is skipped on smoke (smoke never publishes, - so the check is moot, and a smoke build on a feature branch versions as prerelease regardless). - "Skipped on smoke" means the gate runs and self-skips its body to `success`, not that the job is absent. - *Prevents: a develop build published as stable; a build-metadata false positive; the gate blocking a - smoke build.* - -### D3 - Versioning and classification - -- **D3.1 One NBGV invocation, threaded.** Output: NBGV runs once, classifying from `github.ref_name`'s - real-branch checkout on the publish path, and its outputs thread to build and release. No consumer - re-invokes NBGV. *Prevents: a leg classified by the wrong ref; a package version diverging from the - tag.* -- **D3.2 `main` = stable, others = prerelease.** Output: `main` -> `X.Y.Z` (`PublicRelease=true`), any - other branch -> `X.Y.Z-g` (`PublicRelease=false`). The gate and the `prerelease` expression name - `main`, and `version.json`'s `publicReleaseRefSpec` is `^refs/heads/main$`. -- **D3.3 Version floor + git height.** Output: `version.json` sets the major.minor floor, NBGV appends - the git height as the patch, never bumped on a cadence. *(Who raises the floor and when is a - human-process rule in `AGENTS.md`, out of scope for this verdict.)* -- **D3.4 NuGet prerelease is derived, not set.** Output: NuGet.org marks a package prerelease when its - `PackageVersion` carries the SemVer2 `-g` suffix, a consequence of D3.2, not a flag the workflow - sets. (Distinct from the GitHub-release `prerelease` boolean of D4.4, which the workflow does set.) - -### D4 - Release / publish - -- **D4.1 Publish only by dispatch or a shipped-input change.** Output: the publisher is reachable via (a) - `workflow_dispatch` on a branch (force-publish, guarded to `main`/`develop`), or (b) a `push` to - `main`/`develop` matching the **`on.push.paths` inclusion list** of shipped inputs (`LanguageTags/**`, - `LanguageData/**`, `version.json`, `Directory.Build.props`, `Directory.Packages.props`). The list is - inclusion-only: it does not list `.github/**`, docs, tests, or the codegen tool, so a GitHub Actions bump - or a docs change does not republish. `Directory.Packages.props` **is** listed, so a dependency bump - republishes (a NuGet version can't be re-pushed, so deps must republish to stay current). There is no - `schedule` and no `PUBLISH_ON_MERGE`. *Prevents: a blind scheduled republish; a no-impact change (actions - bump, docs) cutting a release; and a stale/vulnerable dependency lingering in the published package.* -- **D4.2 Publish exactly the triggering branch.** Output: the run publishes only `github.ref_name` - (`develop` -> prerelease, `main` -> stable; a shipped change or dispatch on `main` cuts a stable release - by design). *Prevents: a publish shipping the wrong branch.* -- **D4.3 Tag the built commit.** Output: the release `target_commitish` is the built commit's SHA (NBGV's - `GitCommitId`), never `github.sha` of a moving ref. *Prevents: the tag landing on a different commit - than was built.* -- **D4.4 Release contents and flag.** Output: every release is a tag on the built commit plus the auto - source zip, README, and LICENSE, with a fixed-name `LanguageTags.7z` attached that bundles the compiled - library, the `.nupkg`, and (where `IncludeSymbols`) the `.snupkg`. The GitHub-release `prerelease` - boolean is set to `github.ref_name != 'main'`. *(GitHub computes the - "Latest" badge from semver across non-prerelease releases, a consequence, not a workflow assertion.)* -- **D4.5 No-op republish.** Input: a re-run whose version is unchanged. Output: the release-create step - is skipped when the tag already exists (refreshed only on `workflow_dispatch`). The NuGet push runs and - the server dedupes (`dotnet nuget push --skip-duplicate` treats an existing-version 409 as success), the - symbol push likewise. The paired transfer-artifact delete is gated to the release-create step, so on a - no-op re-run the artifact is reclaimed by the `retention-days: 1` backstop. *Prevents: duplicate - releases and wasted pushes.* -- **D4.6 Publish is tested as built.** Input: any publish (dispatch or shipped-change). Output: the - publisher runs the same reusable `validate-task` (the D1.2/D1.3 `unit-test` + `lint` gate) as a - `validate` job the publish job `needs:`, so the push and release are gated on its success. It is the - identical definition the pull request runs, so nothing publishes that would fail the PR gate. The - trade-off, accepted over polling a cross-workflow status check, is that a shipped-input push to a - protected branch validates twice. *Prevents: an auto-publish shipping a merged tree tested only as the - pre-merge PR head, since the squash/merge commit (D8.1) differs from what the PR tested.* -- **D4.7 Publish authenticates via OIDC trusted publishing.** Output: the publish job grants - `id-token: write` and obtains a short-lived NuGet key from `NuGet/login@v1` (the action exchanges the - GitHub OIDC token for a temporary key, using the `NUGET_USERNAME` profile name), and `dotnet nuget push` - uses that key. There is **no** long-lived `NUGET_API_KEY` secret. The key is requested immediately - before the push (1-hour lifetime, single use). The matching trusted-publishing policy on NuGet.org - (section 6) names `build-release-task.yml`, the reusable task that requests the token (the OIDC - `job_workflow_ref`), not the `publish-release.yml` entry workflow. *Prevents: a leaked long-lived publish - credential.* - -### D5 - Resource cleanup - -- **D5.1 Delete at the point of consumption.** Output: a cross-job transfer artifact is deleted by exact - name/pattern right after the job that consumes it. -- **D5.2 Gate the delete to the consumer's condition.** Output: the delete runs under the same condition - as its consuming step. A no-op re-run that skips the consumer skips the delete too and relies on the - D5.4 backstop. *Prevents: deleting a freshly built asset on a no-op re-run.* -- **D5.3 Best-effort.** Output: cleanup is `continue-on-error: true`, tolerates a failed listing, and - deletes all matching ids. *Prevents: a cleanup hiccup reddening a successful publish.* -- **D5.4 Retention backstop.** Output: every `upload-artifact` sets `retention-days: 1`. -- **D5.5 Never blanket-delete.** Output: cleanup MUST NOT enumerate and delete the run's whole artifact - set (`.artifacts[].id`). *Prevents: destroying diagnostic/build-record artifacts.* - -### D6 - Self-testing workflows - -- **D6.1 A change is testable on its own branch.** Output: a workflow or build change is exercised by CI - on the branch that introduces it, with no dependency on the change first reaching `main`. *Prevents: - the "promote to `main` to test the fix" trap.* -- **D6.2 Head-resolution, single producer, one exception.** Output: CI runs on `push` to every branch so - reusable `./...` logic resolves from the head, and the aggregator's ruleset-bound `context:` is produced - by that push run on the head SHA as the sole producer of that name. Dependabot pull requests are in-repo - branches, so their push validates them the same way (restricted read-only token, enough for the gate). A - fork is the one exception: it cannot push, so it has no run and is validated by maintainer action, never - by a second producer of the gate context. *Prevents: a dual-producer context race; a false self-test - claim for fork PRs.* - -### D7 - Concurrency, permissions, safety - -- **D7.1 The publisher does not cancel mid-flight.** Output: the publisher's concurrency uses a - ref-independent group with `cancel-in-progress: false`. All other entry workflows use the - `...-${{ github.ref }}` group with `cancel-in-progress: true`, except the merge-bot (PR-number group, D8.1) and the daily codegen - workflow (ref-independent `${{ github.workflow }}` group with `cancel-in-progress: true`, section 2). -- **D7.2 Skipped jobs still need valid permissions.** Output: every reusable job runs under valid least-privilege - `permissions:`, and a callee's extra scope is granted by the caller. -- **D7.3 Boolean inputs both forms.** Output: boolean inputs are declared in both trigger blocks and - compared against `true` and `'true'`. -- **D7.4 Optional-dependency chaining.** Output: cross-job conditions allowlist `success`/`skipped` - explicitly rather than `!= 'failure'`. - -### D8 - Bots and automation - -- **D8.1 Merge-bot.** Output: runs on `pull_request_target`, holds the **App token**, and merges the pull - request by URL without checking out its code. Enables auto-merge on `opened`/`reopened`. Produces a - linear (squashed) history on `develop` and a merge commit into `main`, chosen by the PR's base ref. - Disables auto-merge when a maintainer pushes to a bot branch. Concurrency keyed on the PR number. - *Prevents: two PRs colliding in auto-merge; a bot merge that fails to trigger downstream workflows.* -- **D8.2 Dependabot auto-merges on green, every tier.** Output: every Dependabot pull request, any - ecosystem and semver-major included, auto-merges once the required checks pass, with no version-tier - exception. A failing check blocks the merge and surfaces via GitHub's check-failure notification. A - merged dependency bump **republishes** (`Directory.Packages.props` is a shipped input, D4.1), keeping the - published package's declared dependencies current; a GitHub-Actions bump does not. *Prevents: a breaking - update merging unverified; a safe update stalled waiting for a human; and a stale/vulnerable dependency - lingering in the published package.* -- **D8.3 Codegen is deterministic and content-gated.** Output: codegen regenerates `LanguageData/` purely - from its upstream sources (no per-run timestamps/GUIDs), opens a pull request only when the data changed, - and auto-merges it on green. The merged data is a shipped input, so the publisher releases it (D4.1). - Codegen is **dual-target**, the workflow analog of Dependabot's per-target-branch config: each branch is - regenerated independently against its own checkout, into its own `codegen-` PR, so a data update - never depends on a cross-branch merge-back. A matrix (one leg per branch) is the expected form; the - no-branch-matrix rule (D0) is scoped to the build/version/publish path and does not apply here, since - codegen neither versions nor publishes. - -### D9 - Style, static, and dropped workflows (see section 2) - -- **D9.1** Every action SHA-pinned with a version comment (sole exception: `dotnet/nbgv@master`). A tool an - action *installs* (e.g. the actionlint binary behind `raven-actions/actionlint`) is not a `uses:` ref and is - left unpinned to track latest, so CI picks up new lint rules. -- **D9.2** File/workflow/job/step names follow the suffix rules. A name also used as a ruleset - required-check `context:` is codified in `repo-config/` and changed only in lockstep with the ruleset. -- **D9.3** Bash `run:` blocks start `set -euo pipefail`; multi-line `if:` uses `>-`. -- **D9.4** Line endings follow `.editorconfig`. -- **D9.5** No decorative / non-shipped workflow remains, in particular no date-badge workflow - (`build-datebadge-*`). The contract ships exactly the package and its release. A workflow that produces - neither is out of scope, and its presence is a defect to remove. -- **D9.6** Style is enforced in CI, not just the editor: the `lint` job (D1.3) runs CSharpier check, - `dotnet format style`, `markdownlint-cli2`, `cspell` on the user-facing docs, and `actionlint`, from the - same config files the editor and the Husky hook use (CODESTYLE clean-compile sync). - -### D10 - Repository configuration - -- **D10.1 Required configuration is present.** Output: the secrets, branch rulesets, and repository - settings that section 6 lists are all in place. *Prevents: a green-looking repo whose first real - publish or auto-merge fails on a missing secret, an unenforced ruleset, or a disabled setting.* The - detail and the validation procedure are in section 6; the audit is 5D. - -## 5. Test methodology - -An agent verifies the repo in escalating modes, then renders the section-1 verdict. Skip N/A items -(section 1); a required-but-missing construct is a FAIL, not N/A. - -### 5A. Static audit (no execution) - -Read the workflow files plus `version.json` and assert the structural fact behind each applicable -guarantee, each pass/fail/N-A with a `file:line` citation: - -- **D0:** no branch matrix and no plan job in the publisher; no `IGNORE_GITHUB_REF`, no `git checkout - -B`, no `branch` input that can differ from `github.ref_name`; NBGV invoked in exactly one job, every - other consumer reading it via `needs:` outputs (a second invocation that recomputes is the defect; a - commit checkout that only compiles is allowed). -- **D1:** the PR workflow runs on `push` with no paths filter; the `validate` job (the reusable - `validate-task`, holding `unit-test` + `lint`) and `smoke-build` run on every push except a branch deletion - (every job, the aggregator included, carries a `!github.event.deleted` guard); the smoke call - sets publish off and `smoke: true`; every build `upload-artifact` is gated `!smoke`; the `lint` job runs - CSharpier check, `dotnet format style --verify-no-changes`, `markdownlint-cli2`, `cspell` on - README/HISTORY, and `actionlint`; the aggregator `needs:` `validate` + `smoke-build` and blocks on any - non-success. -- **D2:** the release gate checks both directions, strips `+buildmetadata`, and self-skips on smoke to - `success`. -- **D3:** `main` appears in the gate and the `prerelease` expression (`!= 'main'`); `version.json`'s - `publicReleaseRefSpec` is `^refs/heads/main$`. -- **D4:** the publisher's triggers are `workflow_dispatch` and a `push` to `main`/`develop` with an - `on.push.paths` inclusion list of exactly `LanguageTags/**`, `LanguageData/**`, `version.json`, - `Directory.Build.props`, `Directory.Packages.props` (no `.github/**`); no `schedule`, no - `PUBLISH_ON_MERGE`; the dispatch path is guarded to `main`/`develop`; the publisher calls the same - `validate-task` as a `validate` job and the publish job `needs:` it (D4.6); the run publishes only - `github.ref_name`; `target_commitish` is the NBGV commit id; the GitHub-release `prerelease` boolean - `== (github.ref_name != 'main')`; the release body attaches the source zip, README, LICENSE, and a - fixed-name `LanguageTags.7z` bundle (compiled library + `.nupkg`/`.snupkg`); the leaf pushes `*.nupkg` - and `*.snupkg` (symbols enabled) with `--skip-duplicate`; the publish job grants - `id-token: write` and pushes with a `NuGet/login@v1` short-lived key, not a `NUGET_API_KEY` secret - (D4.7); release-create gated `exists == false || workflow_dispatch`. -- **D5:** each cross-job transfer artifact has a delete gated to its consumer, `continue-on-error: true`, - looping all ids; every upload sets `retention-days: 1`; no `.artifacts[].id` blanket delete exists. -- **D6:** PR-validated logic is head-resolved (a `push` trigger on every branch), and the ruleset-bound - aggregator context has exactly one producer. Dependabot PRs are in-repo and validate via that push, a - fork PR has no run and needs maintainer action, and there is no `pull_request`-triggered fallback. -- **D7:** the publisher group is ref-independent with `cancel-in-progress: false`; the merge-bot keys on - PR number; other entry workflows use the standard group; reusable jobs declare permissions; boolean - `if:` uses both forms. -- **D8/D9:** the merge-bot runs on `pull_request_target` with the App token and keys concurrency on PR - number; Dependabot auto-merge has no semver-major exception (gated only on the required check); codegen - is deterministic + per-branch; no multi-target `enable_*`/`expect_release_assets` abstraction; no - date-badge / decorative workflow exists; actions SHA-pinned; names/shells/conditionals per section 2. - -### 5B. End-to-end trace scenarios (deterministic from the YAML) - -For each applicable scenario, evaluate every job's `if:`/`needs:` against the inputs and emit the -predicted **run/skip + version + release + artifact-end-state**, then compare to expected. *One input is -assumed as a given rather than re-derived from the YAML: the version classification (clean vs `-g`), -determined by NBGV from the checkout state in section 3.* - -| # | Input | Expected output | Exercises | -| --- | --- | --- | --- | -| S1 | push touching `LanguageTags/**` | `validate` (`unit-test` + `lint`) and `smoke-build` all run; smoke (`smoke:true`) builds and packs, **no push, no uploads, no release**; validate-release self-skips on smoke; aggregator success; version = prerelease (branch is not `main`); no dangling artifacts | D0, D1, D2.2, D3 | -| S2 | push changing only docs/README | `validate` and `smoke-build` run; `lint` checks the markdown; `smoke-build` rebuilds the unchanged library; aggregator success; nothing publishes | D1, D1.5 | -| S3 | push changing only `.github/workflows/**` | `validate` and `smoke-build` run; `smoke-build` exercises the changed reusable workflow head-resolved (self-test); `lint` runs `actionlint` on it; aggregator success | D1.1, D6.1 | -| S4 | `workflow_dispatch` on `develop` | builds/publishes only develop; the `validate` task the publish job `needs:` gates it (D4.6); version `X.Y.Z-g`; release `prerelease=true`; NuGet prerelease; `target_commitish`=built SHA; transfer artifact consumed-then-deleted; no dangling artifacts | D0, D3, D4, D5 | -| S5 | `workflow_dispatch` on `main` | builds/publishes only main; the `validate` gate the publish job `needs:` gates it; version `X.Y.Z`; release `prerelease=false`; NuGet stable; `.snupkg` pushed; no dangling artifacts | D0, D3, D4, D5 | -| S6 | merge of a **source** change to `develop`/`main` | push changed a shipped input -> that branch **auto-publishes**, validated by the `needs: validate` gate before publish (D4.6) | D4.1, D4.6 | -| S7 | re-run, version unchanged (tag exists) | release-create skipped; transfer artifact reclaimed by backstop; NuGet push a `--skip-duplicate` no-op; no duplicate release | D4.5, D5.2 | -| S8 | branch/version classification disagree (e.g. `main` carries `-g`) | validate-release fails loud; build/publish skip | D2.2 | -| S9 | merged codegen `LanguageData/**` change | shipped input changed -> that branch **auto-publishes** | D4.1, D8.3 | -| S10 | merged GitHub-Actions version bump only | `.github/workflows/**` is not a shipped input -> **no publish** | D4.1 | -| S11 | merged dependency bump, any kind (e.g. `Microsoft.Extensions.Logging.Abstractions` or `xunit.v3`) | `Directory.Packages.props` is a shipped input -> that branch **auto-publishes**, keeping the package's declared dependencies current | D4.1, D8.2 | -| S12 | PR with a CSharpier, dotnet-format, markdown, spelling, or workflow-YAML violation | the `lint` job fails -> aggregator blocks the merge | D1.3, D1.5 | -| S13 | `version.json` floor bump merged to a branch | version floor is a shipped input -> **auto-publish** that branch at the new floor | D3.3, D4.1, D4.2 | -| S14 | Dependabot **major** bump whose tests fail | required check fails -> auto-merge does **not** complete; no merge, no publish; maintainer notified | D8.2 | -| S15 | `develop` -> `main` promotion (merge commit) carrying a shipped change | the merge commit's diff (`before..after`, `before` = prior `main` tip) includes the promoted shipped input -> `main` **auto-publishes the stable release**; a promotion carrying only non-shipped changes does not | D4.1, D4.2, D8.1 | -| S16 | a branch is **deleted** (a push event with `github.sha` all-zeros) | the `!github.event.deleted` guard skips `validate`, `smoke-build`, and the aggregator -> no failed CI run, no pending required check | D1.1 | - -### 5C. Live probe (where warranted, never publishing) - -- Open a trivial-change PR touching the library and confirm S1 (smoke builds, nothing pushed, aggregator - green, 0 artifacts left). -- Drive a `smoke: true` push-probe of the release-build path on a throwaway branch for the `develop` and - `main` classifications, and assert clean vs prerelease and that the gate passes, without publishing. -- After any real publish, query NuGet.org for the expected version + `isPrerelease`, confirm a re-run - added no duplicate, and inspect the run for `PublicRelease`/`SemVer2` and the artifact lifecycle. The - live-only guarantees a static read cannot settle (D4.5 server-dedupe, the artifact end-state, live - `PublicRelease`) are what 5C confirms. Absent publish rights, record them **indeterminate** and rely on - the 5A/5B static evidence. - -### 5D. Configuration audit - -Run [`repo-config/configure.sh check`](./repo-config/) (section 6). It confirms the listed secrets exist, -the `main`/`develop` rulesets enforce the required merge method + status check + signed commits + -strict-off, and the repository settings (auto-merge, allowed merge methods) are in place, exiting non-zero -on any drift. A missing or incorrect configuration item is a defect (D10). Secret *values* cannot be read -back, so the audit asserts the names exist and a GitHub App is installed. The NuGet.org trusted-publishing -policy (D4.7) lives outside GitHub and cannot be checked by `gh api`; the script flags it as a manual -verification item. - -### Assessment - -Operational when every applicable 5A item passes, every applicable 5B scenario matches (corroborated by -5C where a live signal exists), and 5D configuration is in place. N/A items are excluded; a -required-but-missing construct is a FAIL. Procedure: - -1. **Audit** with 5A and **5D**; record pass/fail/N-A with `file:line` or the config item. -2. **Trace** the applicable S-scenarios with 5B; diff predicted vs expected. -3. **Probe** with 5C only for what a static trace cannot settle, without publishing; where unprobeable, - mark indeterminate. -4. **Verdict:** operational or not, with the failing guarantee(s), the triggering input for each, the - items recorded N/A or indeterminate, and (during adoption) the conformance baseline so an expected - pre-refactor failure is not read as a regression. - -## 6. Repository configuration - -The workflows depend on configuration outside the YAML: secrets, branch rulesets, and repository -settings. A misconfiguration surfaces only as a failed run (a missing secret, a merge that never -auto-completes, a tag on the wrong branch), so the configuration is part of "operational" and is testable -in its own right, not merely discoverable by failure (D10; audit 5D). - -**Secrets.** - -- `NUGET_USERNAME` - the NuGet.org profile name passed to `NuGet/login@v1` for OIDC trusted publishing - (D4.7). Actions store. **No `NUGET_API_KEY`** secret is used; publishing is keyless. -- `CODEGEN_APP_CLIENT_ID` / `CODEGEN_APP_PRIVATE_KEY` - the GitHub App credentials the merge-bot and - codegen mint the App token from. Required in **both** the Actions and Dependabot secret stores: codegen - and the publisher read them from Actions, but the merge-bot reads them from the Dependabot store when it - acts on a Dependabot PR (Dependabot-triggered runs get the Dependabot store, not Actions secrets). The - App must be installed on the repo with `contents: write` and `pull_requests: write`. -- The built-in `GITHUB_TOKEN` needs no setup. **No `PUBLISH_ON_MERGE` variable is used**; its presence is - stale configuration to remove. - -**NuGet.org trusted-publishing policy.** Publishing is keyless via OIDC (D4.7), so a trusted-publishing -policy must exist in the NuGet.org account naming Repository Owner `ptr727`, Repository `LanguageTags`, and -Workflow File `build-release-task.yml` (filename only) - the reusable task that runs `NuGet/login` and -requests the token, which the OIDC `job_workflow_ref` claim names rather than the `publish-release.yml` -entry workflow. It lives on NuGet.org, not GitHub, so `configure.sh` cannot read it - a manual checklist -item. A private-repo policy stays provisional for 7 days until the -first successful publish locks it to the repo and owner IDs. - -**Branch rulesets.** - -- `main` - merge-commit merges only; requires the aggregator status check (the ruleset-bound `context:` - `Check pull request workflow status job`); requires signed commits; "require branches up to date before - merging" is **off** (a forward-only `develop` makes every post-release `main` tip unreachable from - `develop`, so the strict check would fail every release). -- `develop` - squash merges only (keeps history linear); requires the same status check; requires signed - commits; "up to date" is **off** (so same-batch bot pull requests auto-merge in parallel without one - pushing the other `BEHIND`). -- The required check's `context:` name matches the aggregator job name verbatim (D6.2, D9.2). - -**Repository settings.** - -- Auto-merge enabled. Both squash and merge-commit methods allowed (each ruleset narrows its branch to - one). -- Actions enabled with permission to run the pinned actions. Dependabot version **and** security updates - enabled. -- The GitHub App installed with the scopes above. - -**Validation.** This configuration is codified in [`repo-config/`](./repo-config/): the branch rulesets -and repository settings as JSON, applied and audited by an idempotent `gh api` script. -`repo-config/configure.sh check` reads the live rulesets, settings, and secret names and exits non-zero -on any drift; that command **is** the 5D audit. `repo-config/configure.sh apply` configures a fresh repo -to match. Secret values cannot be read back, so the audit asserts the names exist and a GitHub App is -installed rather than checking contents. diff --git a/cspell.json b/cspell.json deleted file mode 100644 index 49903b5..0000000 --- a/cspell.json +++ /dev/null @@ -1,99 +0,0 @@ -{ - "version": "0.2", - "language": "en-US", - "words": [ - "ABNF", - "acrolanguage", - "Allman", - "alphanum", - "ANTLR", - "arevela", - "boont", - "buildmetadata", - "chamí", - "CLDR", - "codegen", - "commitish", - "cref", - "crefs", - "csdevkit", - "datebadge", - "davidanson", - "derbend", - "diffable", - "dotnettools", - "Emberá", - "extlang", - "finalizers", - "followable", - "gpgsign", - "gruntfuggly", - "idempotently", - "istorical", - "iving", - "Jernej", - "jkporter", - "langcodes", - "langtag", - "languagedata", - "languagetags", - "LINQ", - "lojban", - "macrolanguage", - "Matroska", - "mattcg", - "nbgv", - "ncient", - "ndividual", - "nedis", - "Nerdbank", - "nupkg", - "onstructed", - "oxendict", - "oxigraph", - "oxilangtag", - "paramref", - "pecial", - "Pieter", - "pipefail", - "privateuse", - "pyfisch", - "Qaaa", - "Qabx", - "reimplementation", - "reparsed", - "rhysd", - "rspeer", - "rulebook", - "Serilog", - "shellcheck", - "shellchecks", - "signingkey", - "Simoncic", - "snupkg", - "softprops", - "stefanzweifel", - "subtag", - "Subtags", - "templating", - "terminologic", - "Triaging", - "triggerbuild", - "unbuilt", - "uncoded", - "unprobeable", - "Viljoen", - "winget", - "xtinct", - "xunit" - ], - "ignorePaths": [ - "LanguageData/**", - "**/*Data.cs", - "**/*DataGen.cs", - "**/bin/**", - "**/obj/**", - ".artifacts/**", - ".git/**" - ] -} diff --git a/repo-config/README.md b/repo-config/README.md deleted file mode 100644 index a70666e..0000000 --- a/repo-config/README.md +++ /dev/null @@ -1,66 +0,0 @@ -# repo-config - -Repository configuration as code - the parts of "operational" that live in GitHub settings rather than -in workflow YAML: branch rulesets, repository settings, and the secrets the workflows read. This is the -concrete form of [`WORKFLOW.md`](../WORKFLOW.md) section 6 and guarantee **D10**, and the implementation -of its **5D configuration audit**. - -This directory is intentionally **not** under `.github/` - that path is GitHub's own (workflows, issue -templates); repository administration config-as-code is the maintainer's, so it lives here. - -## Files - -- [`configure.sh`](./configure.sh) - idempotent `gh api` script with two modes: - - `./repo-config/configure.sh check` - validate only, no writes; exits non-zero on drift (the 5D - audit). Read-only, but it reads the rulesets and secrets endpoints, so it still needs a `gh` token - with admin on the repo. - - `./repo-config/configure.sh apply` - create-or-update the rulesets and settings to match this - directory (needs admin; writes). -- [`ruleset-develop.json`](./ruleset-develop.json) - the `develop` branch ruleset (squash-only, linear - history, signed commits, the required status check, strict-status **off**). -- [`ruleset-main.json`](./ruleset-main.json) - the `main` branch ruleset (merge-commit-only, signed - commits, the same required check, strict **off**; no linear-history rule). -- [`settings.json`](./settings.json) - repository settings (auto-merge on; squash **and** merge-commit - allowed; rebase off; auto-delete-on-merge **off**). The repo-wide auto-delete **setting** is off so a - `develop -> main` promotion does not delete `develop` (GitHub's auto-delete would remove the merged head - branch). Per-merge deletion is explicit instead: the merge-bot deletes a merged bot branch with - `gh pr merge --delete-branch`, and a feature branch is deleted the same way (or via the merge UI's delete - button) - so `main`/`develop` survive while bot/feature branches are still cleaned up. - -## What it does not store - -Secret **values** are never readable through the API, so the script only asserts the required secret -**names** exist (`NUGET_USERNAME` and the App credentials `CODEGEN_APP_CLIENT_ID` / -`CODEGEN_APP_PRIVATE_KEY`), and *notes* (best-effort) whether a GitHub App is installed - a precise check -needs app-level auth, so the App-installation check does not fail the audit. Set the values in the repository (or -organization) secret store directly. Publishing is keyless via OIDC trusted publishing (WORKFLOW.md -D4.7), so there is no `NUGET_API_KEY`; the matching trusted-publishing policy lives on NuGet.org and is -verified by hand, not by this script. - -## Applying, and the required-check rename lockstep - -The live ruleset's required status check is matched by **name** to the aggregator job in -[`test-pull-request.yml`](../.github/workflows/test-pull-request.yml) (`Check pull request workflow -status job`). GitHub binds the check by that exact string, so the ruleset JSON here, the live ruleset, and -the aggregator job name must move **in lockstep** ([`WORKFLOW.md`](../WORKFLOW.md) D6.2). If they drift, a -pull request runs CI but its required check never resolves and the PR cannot merge. - -So whenever the ruleset JSON or that job name changes, run `apply` against the live repo in the same -change that ships the workflow edit, then `check`: - -```sh -REPO=ptr727/LanguageTags ./repo-config/configure.sh apply # sync live rulesets + settings + security -REPO=ptr727/LanguageTags ./repo-config/configure.sh check # confirm no drift -``` - -First-time adoption is the same step: the live ruleset predates the renamed aggregator, so the first -`apply` is what lets a pull request against the new workflows go green. Both modes need a `gh` login -with admin on the repo (the rulesets and secrets endpoints require it). `apply` writes, `check` only -reads. - -## Why both a script and JSON - -The JSON files are the unambiguous source of truth for the configuration; the script applies and audits -them idempotently. An agent can also derive the same checks on the fly from `WORKFLOW.md` section 6, but -the committed script and JSON codify the exact intended state so the configuration is reproducible and -diffable rather than tribal knowledge. diff --git a/repo-config/configure.sh b/repo-config/configure.sh deleted file mode 100755 index 2c4c22e..0000000 --- a/repo-config/configure.sh +++ /dev/null @@ -1,194 +0,0 @@ -#!/usr/bin/env bash -# Repository configuration as code - the secrets, branch rulesets, and settings the workflows assume -# (see WORKFLOW.md section 6, guarantee D10). Idempotent: `apply` configures a repo to match the JSON in -# this directory; `check` validates an existing repo and exits non-zero on drift (the 5D audit). Run from -# anywhere; the target repo is resolved from the current `gh` context unless $REPO is set (owner/name). -# -# ./repo-config/configure.sh check # validate only, no writes (the 5D audit) -# ./repo-config/configure.sh apply # create-or-update rulesets + settings (writes) -# -# Requires gh and jq. Both modes read the rulesets and secrets endpoints, which need admin on the repo, so -# gh must be authenticated with admin for `check` as well as `apply`. `check` only reads; `apply` writes. - -set -euo pipefail - -DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" -REPO="${REPO:-$(gh repo view --json nameWithOwner --jq .nameWithOwner)}" - -# Secrets by store (names only; values are never readable via the API). The App credentials must be set -# in BOTH stores: codegen and the publisher read them from Actions, but the merge-bot reads them from the -# Dependabot store when it acts on a Dependabot PR, because Dependabot-triggered runs are given the -# Dependabot secret store, not Actions secrets. NUGET_USERNAME is Actions-only (publishing is not a Dependabot -# run); publishing is keyless via OIDC trusted publishing, so there is no NUGET_API_KEY. -REQUIRED_ACTIONS_SECRETS=(NUGET_USERNAME CODEGEN_APP_CLIENT_ID CODEGEN_APP_PRIVATE_KEY) -REQUIRED_DEPENDABOT_SECRETS=(CODEGEN_APP_CLIENT_ID CODEGEN_APP_PRIVATE_KEY) -REQUIRED_CHECK="Check pull request workflow status job" - -note() { printf ' %s\n' "$*"; } -pass() { printf ' \033[32mok\033[0m %s\n' "$*"; } -fail() { printf ' \033[31mFAIL\033[0m %s\n' "$*"; FAILED=1; } -FAILED=0 - -ruleset_id() { # name -> id (empty if absent); aborts with a visible reason on an API error - local out - # An absent ruleset is a successful call with no match (empty); only a real API error fails. Let gh print its - # own error on stderr (do not suppress it); add a generic context line and return non-zero so the run stops - # (the caller's $(...) cannot print the cause itself). - # per_page=100 returns every ruleset in one array (a repo has only a handful); the default page size is 30. - if ! out="$(gh api "repos/$REPO/rulesets?per_page=100")"; then - echo "ERROR: could not list rulesets for $REPO (see gh error above)" >&2 - return 1 - fi - # shellcheck disable=SC2016 # $n is a jq variable (--arg n), not a shell expansion - # Select the first match inside jq (not `| head -1`): under pipefail, head closing the pipe early can - # SIGPIPE jq and fail the function. - jq -r --arg n "$1" '[.[] | select(.name==$n) | .id] | first // empty' <<<"$out" -} - -apply_ruleset() { - local file="$1" name id - name="$(jq -r .name "$file")" - id="$(ruleset_id "$name")" - if [[ -n "$id" ]]; then - gh api -X PUT "repos/$REPO/rulesets/$id" --input "$file" >/dev/null - note "updated ruleset '$name' (#$id)" - else - gh api -X POST "repos/$REPO/rulesets" --input "$file" >/dev/null - note "created ruleset '$name'" - fi -} - -cmd_apply() { - echo "Applying repository configuration to $REPO" - apply_ruleset "$DIR/ruleset-develop.json" - apply_ruleset "$DIR/ruleset-main.json" - gh api -X PATCH "repos/$REPO" --input "$DIR/settings.json" >/dev/null - note "patched repository settings" - gh api -X PUT "repos/$REPO/vulnerability-alerts" >/dev/null - gh api -X PUT "repos/$REPO/automated-security-fixes" >/dev/null - note "enabled Dependabot alerts + security updates" - echo "Done. Run '$0 check' to validate." -} - -# --- validation (5D) ------------------------------------------------------------------------------- - -# assert MESSAGE TEST... - run the test command; pass on success, fail on non-zero (proper if/else, not -# the A && B || C footgun). The test command may read stdin (e.g. a `<<<` heredoc on the assert call). -# Do not redirect the assert call's stdout - that would also swallow the pass/fail line; commands that -# print (jq) use `jq_has`, which silences only itself. -assert() { - local msg="$1"; shift - if "$@"; then pass "$msg"; else fail "$msg"; fi -} - -# jq_has FILTER... - true iff the jq filter selects something; jq's own output is discarded, not the -# caller's. Reads JSON from stdin. -jq_has() { jq -e "$@" >/dev/null 2>&1; } - -# jq_lacks FILTER... - true iff the jq filter yields no truthy value (selects nothing, or only false/null). -# `jq -e` exits 1 (last output false/null) or 4 (no output at all) for the "lacks" cases, 0 for a truthy -# match, and 2/3/5 for a real error (malformed filter or input), which is propagated so the calling assert -# fails loudly. The `|| rc=$?` keeps jq in a list (exempt from set -e) so a non-zero exit captures rc instead -# of aborting. Only stdout is discarded - jq's stderr is kept so a real error shows its diagnostic. -jq_lacks() { local rc=0; jq -e "$@" >/dev/null || rc=$?; case "$rc" in 0) return 1 ;; 1|4) return 0 ;; *) return "$rc" ;; esac; } - -check_ruleset() { # name expected-merge-method expect-linear(true/false) - local name="$1" method="$2" linear="$3" id rs - id="$(ruleset_id "$name")" - if [[ -z "$id" ]]; then fail "ruleset '$name' missing"; return; fi - rs="$(gh api "repos/$REPO/rulesets/$id")" - assert "ruleset '$name' active" \ - test "$(jq -r '.enforcement' <<<"$rs")" = active - assert "'$name' merge method = $method" \ - test "$(jq -r '.rules[] | select(.type=="pull_request") | .parameters.allowed_merge_methods | join(",")' <<<"$rs")" = "$method" - assert "'$name' requires signed commits" \ - jq_has '.rules[] | select(.type=="required_signatures")' <<<"$rs" - assert "'$name' strict status policy off" \ - test "$(jq -r '.rules[] | select(.type=="required_status_checks") | .parameters.strict_required_status_checks_policy' <<<"$rs")" = false - # shellcheck disable=SC2016 # $c is a jq variable (--arg c), not a shell expansion - assert "'$name' requires '$REQUIRED_CHECK'" \ - jq_has --arg c "$REQUIRED_CHECK" '.rules[] | select(.type=="required_status_checks") | .parameters.required_status_checks[] | select(.context==$c)' <<<"$rs" - if [[ "$linear" == "true" ]]; then - assert "'$name' requires linear history" \ - jq_has '.rules[] | select(.type=="required_linear_history")' <<<"$rs" - else - # main must NOT require linear history - it would block the develop -> main merge-commit promotion. - assert "'$name' does not require linear history" \ - jq_lacks '.rules[] | select(.type=="required_linear_history")' <<<"$rs" - fi -} - -# gh_ok ENDPOINT... - true iff the gh api call succeeds (2xx, including 204). Output and errors are -# discarded, so it is safe to pass to `assert`. -gh_ok() { gh api "$@" >/dev/null 2>&1; } - -check_settings() { - local s; s="$(gh api "repos/$REPO")" - # Drive every assertion from settings.json, so the check covers exactly the applied desired state and - # never drifts from the file (add a key there and it is audited here automatically). - local key want got - while IFS=$'\t' read -r key want; do - # shellcheck disable=SC2016 # $k is a jq variable (--arg k), not a shell expansion - got="$(jq -r --arg k "$key" '.[$k]' <<<"$s")" - assert "setting $key = $want" test "$got" = "$want" - done < <(jq -r 'to_entries[] | "\(.key)\t\(.value)"' "$DIR/settings.json") -} - -check_security() { - # apply enables both; audit that they are still on. vulnerability-alerts returns 204 when enabled and - # 404 when disabled; automated-security-fixes returns { "enabled": true/false }. - assert "Dependabot vulnerability alerts enabled" gh_ok "repos/$REPO/vulnerability-alerts" - assert "Dependabot automated security updates enabled" \ - jq_has '.enabled == true' < <(gh api "repos/$REPO/automated-security-fixes") -} - -check_secrets() { - # --paginate: the secrets endpoints page at 30, so without it a repo with many secrets could miss a - # required name and report a false failure. An API/auth error FAILs fast (the required secrets cannot be - # verified, so reporting "matches" would be wrong) - distinct from a genuinely missing secret, which also - # FAILs. gh prints its own error (stderr not suppressed) so the cause is actionable. - local actions deps - if ! actions="$(gh api --paginate "repos/$REPO/actions/secrets" --jq '.secrets[].name')"; then - fail "could not list Actions secrets (API error - cannot verify required secrets)"; return - fi - if ! deps="$(gh api --paginate "repos/$REPO/dependabot/secrets" --jq '.secrets[].name')"; then - fail "could not list Dependabot secrets (API error - cannot verify required secrets)"; return - fi - for s in "${REQUIRED_ACTIONS_SECRETS[@]}"; do - assert "actions secret $s present" grep -qx "$s" <<<"$actions" - done - for s in "${REQUIRED_DEPENDABOT_SECRETS[@]}"; do - assert "dependabot secret $s present" grep -qx "$s" <<<"$deps" - done -} - -check_app() { - # Best-effort: confirm a GitHub App installation backs the merge/codegen automation. A precise check - # requires app-level auth; presence of the App secrets above is the practical proxy. - if gh api "repos/$REPO/installation" >/dev/null 2>&1; then - pass "a GitHub App is installed on the repo" - else - note "could not confirm App installation via this token (verify the codegen App is installed)" - fi -} - -cmd_check() { - echo "Validating repository configuration for $REPO" - check_ruleset develop squash true - check_ruleset main merge false - check_settings - check_security - check_secrets - check_app - # External, not checkable via gh api: the NuGet.org trusted-publishing policy that makes publishing - # keyless (WORKFLOW.md D4.7). Verify it by hand in the nuget.org account. - note "verify manually: NuGet.org trusted-publishing policy (owner ptr727, repo LanguageTags, workflow build-release-task.yml)" - if [[ "$FAILED" -ne 0 ]]; then echo "Configuration drift detected."; exit 1; fi - echo "Configuration matches." -} - -case "${1:-check}" in - apply) cmd_apply ;; - check) cmd_check ;; - *) echo "usage: $0 [apply|check]" >&2; exit 2 ;; -esac diff --git a/repo-config/ruleset-develop.json b/repo-config/ruleset-develop.json deleted file mode 100644 index daf7dd4..0000000 --- a/repo-config/ruleset-develop.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "name": "develop", - "target": "branch", - "enforcement": "active", - "conditions": { - "ref_name": { - "include": ["refs/heads/develop"], - "exclude": [] - } - }, - "rules": [ - { "type": "deletion" }, - { "type": "non_fast_forward" }, - { "type": "required_linear_history" }, - { "type": "required_signatures" }, - { - "type": "pull_request", - "parameters": { - "allowed_merge_methods": ["squash"], - "dismiss_stale_reviews_on_push": true, - "require_code_owner_review": false, - "require_last_push_approval": false, - "required_approving_review_count": 0, - "required_review_thread_resolution": true - } - }, - { - "type": "required_status_checks", - "parameters": { - "do_not_enforce_on_create": false, - "strict_required_status_checks_policy": false, - "required_status_checks": [ - { "context": "Check pull request workflow status job", "integration_id": 15368 } - ] - } - }, - { - "type": "copilot_code_review", - "parameters": { - "review_draft_pull_requests": true, - "review_on_push": true - } - } - ] -} diff --git a/repo-config/ruleset-main.json b/repo-config/ruleset-main.json deleted file mode 100644 index 0864a0e..0000000 --- a/repo-config/ruleset-main.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "name": "main", - "target": "branch", - "enforcement": "active", - "conditions": { - "ref_name": { - "include": ["refs/heads/main"], - "exclude": [] - } - }, - "rules": [ - { "type": "deletion" }, - { "type": "non_fast_forward" }, - { "type": "required_signatures" }, - { - "type": "pull_request", - "parameters": { - "allowed_merge_methods": ["merge"], - "dismiss_stale_reviews_on_push": true, - "require_code_owner_review": false, - "require_last_push_approval": false, - "required_approving_review_count": 0, - "required_review_thread_resolution": true - } - }, - { - "type": "required_status_checks", - "parameters": { - "do_not_enforce_on_create": false, - "strict_required_status_checks_policy": false, - "required_status_checks": [ - { "context": "Check pull request workflow status job", "integration_id": 15368 } - ] - } - }, - { - "type": "copilot_code_review", - "parameters": { - "review_draft_pull_requests": true, - "review_on_push": true - } - } - ] -} diff --git a/repo-config/settings.json b/repo-config/settings.json deleted file mode 100644 index fc373ef..0000000 --- a/repo-config/settings.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "allow_squash_merge": true, - "allow_merge_commit": true, - "allow_rebase_merge": false, - "allow_auto_merge": true, - "delete_branch_on_merge": false -} diff --git a/shields.json b/shields.json new file mode 100644 index 0000000..66f1f38 --- /dev/null +++ b/shields.json @@ -0,0 +1 @@ +{"lastbuild":{"label":"Last Build","icon":"github","status":"Sat Jun 27 04:25:31 UTC 2026","color":"blue"}} \ No newline at end of file diff --git a/version.json b/version.json deleted file mode 100644 index ce8fb0c..0000000 --- a/version.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json", - "version": "1.5", - "publicReleaseRefSpec": [ - "^refs/heads/main$" - ], - "nugetPackageVersion": { - "semVer": 2 - } -}